* [igt-dev] [PATCH i-g-t] runner: Fix handling of per-test-timeout
@ 2022-03-28 9:13 Petri Latvala
2022-03-28 9:52 ` Mauro Carvalho Chehab
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Petri Latvala @ 2022-03-28 9:13 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala
Instead of stopping execution on resume-init success, stop on
resume-init failure like intended.
Fixes: 4b88a9253443 ("runner: check if it has root permissions")
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
---
runner/executor.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/runner/executor.c b/runner/executor.c
index b4efc4fd..6e6ca9cc 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -2043,7 +2043,7 @@ bool execute(struct execute_state *state,
}
close(sigfd);
close(testdirfd);
- if (initialize_execute_state_from_resume(resdirfd, state, settings, job_list))
+ if (!initialize_execute_state_from_resume(resdirfd, state, settings, job_list))
return false;
state->time_left = time_left;
return execute(state, settings, job_list);
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] runner: Fix handling of per-test-timeout
2022-03-28 9:13 [igt-dev] [PATCH i-g-t] runner: Fix handling of per-test-timeout Petri Latvala
@ 2022-03-28 9:52 ` Mauro Carvalho Chehab
2022-03-28 10:02 ` Mauro Carvalho Chehab
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Mauro Carvalho Chehab @ 2022-03-28 9:52 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
On Mon, 28 Mar 2022 12:13:29 +0300
Petri Latvala <petri.latvala@intel.com> wrote:
> Instead of stopping execution on resume-init success, stop on
> resume-init failure like intended.
>
> Fixes: 4b88a9253443 ("runner: check if it has root permissions")
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
> runner/executor.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/runner/executor.c b/runner/executor.c
> index b4efc4fd..6e6ca9cc 100644
> --- a/runner/executor.c
> +++ b/runner/executor.c
> @@ -2043,7 +2043,7 @@ bool execute(struct execute_state *state,
> }
> close(sigfd);
> close(testdirfd);
> - if (initialize_execute_state_from_resume(resdirfd, state, settings, job_list))
> + if (!initialize_execute_state_from_resume(resdirfd, state, settings, job_list))
> return false;
> state->time_left = time_left;
> return execute(state, settings, job_list);
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] runner: Fix handling of per-test-timeout
2022-03-28 9:13 [igt-dev] [PATCH i-g-t] runner: Fix handling of per-test-timeout Petri Latvala
2022-03-28 9:52 ` Mauro Carvalho Chehab
@ 2022-03-28 10:02 ` Mauro Carvalho Chehab
2022-03-28 11:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2022-03-28 13:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Mauro Carvalho Chehab @ 2022-03-28 10:02 UTC (permalink / raw)
Cc: igt-dev
On Mon, 28 Mar 2022 12:13:29 +0300
Petri Latvala <petri.latvala@intel.com> wrote:
> Instead of stopping execution on resume-init success, stop on
> resume-init failure like intended.
>
> Fixes: 4b88a9253443 ("runner: check if it has root permissions")
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
> runner/executor.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/runner/executor.c b/runner/executor.c
> index b4efc4fd..6e6ca9cc 100644
> --- a/runner/executor.c
> +++ b/runner/executor.c
> @@ -2043,7 +2043,7 @@ bool execute(struct execute_state *state,
> }
> close(sigfd);
> close(testdirfd);
> - if (initialize_execute_state_from_resume(resdirfd, state, settings, job_list))
> + if (!initialize_execute_state_from_resume(resdirfd, state, settings, job_list))
> return false;
> state->time_left = time_left;
> return execute(state, settings, job_list);
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for runner: Fix handling of per-test-timeout
2022-03-28 9:13 [igt-dev] [PATCH i-g-t] runner: Fix handling of per-test-timeout Petri Latvala
2022-03-28 9:52 ` Mauro Carvalho Chehab
2022-03-28 10:02 ` Mauro Carvalho Chehab
@ 2022-03-28 11:24 ` Patchwork
2022-03-28 13:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2022-03-28 11:24 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 13931 bytes --]
== Series Details ==
Series: runner: Fix handling of per-test-timeout
URL : https://patchwork.freedesktop.org/series/101861/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11409 -> IGTPW_6836
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/index.html
Participating hosts (42 -> 33)
------------------------------
Additional (1): fi-kbl-soraka
Missing (10): fi-bdw-samus bat-dg1-6 bat-dg2-9 fi-bsw-cyan bat-adlp-6 bat-adlp-4 bat-rpls-1 bat-rpls-2 bat-jsl-2 bat-jsl-1
Known issues
------------
Here are the changes found in IGTPW_6836 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_basic@query-info:
- fi-glk-dsi: NOTRUN -> [SKIP][1] ([fdo#109271]) +17 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-glk-dsi/igt@amdgpu/amd_basic@query-info.html
* igt@core_hotunplug@unbind-rebind:
- fi-snb-2520m: NOTRUN -> [INCOMPLETE][2] ([i915#5441])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-snb-2520m/igt@core_hotunplug@unbind-rebind.html
- fi-bsw-nick: NOTRUN -> [INCOMPLETE][3] ([i915#5441])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-bsw-nick/igt@core_hotunplug@unbind-rebind.html
- fi-cfl-8109u: NOTRUN -> [INCOMPLETE][4] ([i915#5441])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
* igt@gem_exec_fence@basic-busy@bcs0:
- fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271]) +3 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#4613]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@gem_render_tiled_blits@basic:
- fi-kbl-soraka: NOTRUN -> [INCOMPLETE][8] ([i915#5441])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-kbl-soraka/igt@gem_render_tiled_blits@basic.html
- fi-pnv-d510: NOTRUN -> [INCOMPLETE][9] ([i915#5441])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-pnv-d510/igt@gem_render_tiled_blits@basic.html
- fi-rkl-guc: [PASS][10] -> [INCOMPLETE][11] ([i915#5441])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-rkl-guc/igt@gem_render_tiled_blits@basic.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-rkl-guc/igt@gem_render_tiled_blits@basic.html
* igt@gem_softpin@allocator-basic-reserve:
- fi-elk-e7500: NOTRUN -> [SKIP][12] ([fdo#109271]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-elk-e7500/igt@gem_softpin@allocator-basic-reserve.html
* igt@gem_tiled_blits@basic:
- fi-elk-e7500: NOTRUN -> [INCOMPLETE][13] ([i915#5441])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-elk-e7500/igt@gem_tiled_blits@basic.html
- fi-hsw-4770: [PASS][14] -> [INCOMPLETE][15] ([i915#5441])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-hsw-4770/igt@gem_tiled_blits@basic.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-hsw-4770/igt@gem_tiled_blits@basic.html
- fi-ilk-650: [PASS][16] -> [INCOMPLETE][17] ([i915#5441])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-ilk-650/igt@gem_tiled_blits@basic.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-ilk-650/igt@gem_tiled_blits@basic.html
- fi-kbl-7567u: [PASS][18] -> [INCOMPLETE][19] ([i915#5441])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-kbl-7567u/igt@gem_tiled_blits@basic.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-kbl-7567u/igt@gem_tiled_blits@basic.html
- fi-blb-e6850: [PASS][20] -> [INCOMPLETE][21] ([i915#5441])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-blb-e6850/igt@gem_tiled_blits@basic.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-blb-e6850/igt@gem_tiled_blits@basic.html
* igt@kms_chamelium@dp-crc-fast:
- fi-bsw-nick: NOTRUN -> [SKIP][22] ([fdo#109271] / [fdo#111827]) +8 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-bsw-nick/igt@kms_chamelium@dp-crc-fast.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-snb-2520m: NOTRUN -> [SKIP][23] ([fdo#109271] / [fdo#111827]) +8 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-snb-2520m/igt@kms_chamelium@hdmi-hpd-fast.html
- fi-cfl-8109u: NOTRUN -> [SKIP][24] ([fdo#109271] / [fdo#111827]) +8 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-cfl-8109u/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b:
- fi-cfl-8109u: NOTRUN -> [DMESG-WARN][25] ([i915#295]) +11 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c:
- fi-snb-2520m: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#5341])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-snb-2520m/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
- fi-cfl-8109u: NOTRUN -> [DMESG-WARN][27] ([i915#295] / [i915#5341])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
- fi-bsw-nick: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#5341])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-bsw-nick/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
- fi-cfl-8109u: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#533])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
* igt@kms_psr@primary_mmap_gtt:
- fi-cfl-8109u: NOTRUN -> [SKIP][30] ([fdo#109271]) +9 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-cfl-8109u/igt@kms_psr@primary_mmap_gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-snb-2520m: NOTRUN -> [SKIP][31] ([fdo#109271]) +13 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-snb-2520m/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- fi-bsw-nick: NOTRUN -> [SKIP][32] ([fdo#109271]) +37 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-bsw-nick/igt@prime_vgem@basic-fence-flip.html
* igt@runner@aborted:
- fi-kbl-soraka: NOTRUN -> [FAIL][33] ([i915#4312])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-kbl-soraka/igt@runner@aborted.html
- fi-rkl-guc: NOTRUN -> [FAIL][34] ([i915#4312])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-rkl-guc/igt@runner@aborted.html
- fi-blb-e6850: NOTRUN -> [FAIL][35] ([i915#2403] / [i915#4312])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-blb-e6850/igt@runner@aborted.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- {fi-ehl-2}: [INCOMPLETE][36] ([i915#5441]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-ehl-2/igt@core_hotunplug@unbind-rebind.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-ehl-2/igt@core_hotunplug@unbind-rebind.html
- {fi-jsl-1}: [INCOMPLETE][38] ([i915#1373] / [i915#5441]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-jsl-1/igt@core_hotunplug@unbind-rebind.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-jsl-1/igt@core_hotunplug@unbind-rebind.html
- {fi-hsw-g3258}: [INCOMPLETE][40] ([i915#5441]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-hsw-g3258/igt@core_hotunplug@unbind-rebind.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-hsw-g3258/igt@core_hotunplug@unbind-rebind.html
- fi-glk-dsi: [INCOMPLETE][42] ([i915#5441]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-glk-dsi/igt@core_hotunplug@unbind-rebind.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-glk-dsi/igt@core_hotunplug@unbind-rebind.html
* igt@gem_render_linear_blits@basic:
- fi-bsw-nick: [INCOMPLETE][44] ([i915#5441]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-bsw-nick/igt@gem_render_linear_blits@basic.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-bsw-nick/igt@gem_render_linear_blits@basic.html
- fi-elk-e7500: [INCOMPLETE][46] ([i915#5441]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-elk-e7500/igt@gem_render_linear_blits@basic.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-elk-e7500/igt@gem_render_linear_blits@basic.html
- fi-pnv-d510: [INCOMPLETE][48] ([i915#5441]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-pnv-d510/igt@gem_render_linear_blits@basic.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-pnv-d510/igt@gem_render_linear_blits@basic.html
- fi-snb-2520m: [INCOMPLETE][50] ([i915#5441]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-snb-2520m/igt@gem_render_linear_blits@basic.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-snb-2520m/igt@gem_render_linear_blits@basic.html
* igt@gem_render_tiled_blits@basic:
- fi-cfl-8109u: [INCOMPLETE][52] ([i915#5441]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-cfl-8109u/igt@gem_render_tiled_blits@basic.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-cfl-8109u/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- {fi-adl-ddr5}: [INCOMPLETE][54] ([i915#5441]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-adl-ddr5/igt@gem_tiled_blits@basic.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-adl-ddr5/igt@gem_tiled_blits@basic.html
#### Warnings ####
* igt@core_hotunplug@unbind-rebind:
- fi-cfl-8700k: [INCOMPLETE][56] ([i915#5441]) -> [INCOMPLETE][57] ([i915#1982] / [i915#5441])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html
* igt@runner@aborted:
- fi-hsw-4770: [FAIL][58] ([fdo#109271] / [i915#1436] / [i915#2722] / [i915#4312]) -> [FAIL][59] ([i915#4312])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-hsw-4770/igt@runner@aborted.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/fi-hsw-4770/igt@runner@aborted.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#1373]: https://gitlab.freedesktop.org/drm/intel/issues/1373
[i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
[i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5341]: https://gitlab.freedesktop.org/drm/intel/issues/5341
[i915#5441]: https://gitlab.freedesktop.org/drm/intel/issues/5441
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6395 -> IGTPW_6836
CI-20190529: 20190529
CI_DRM_11409: 1445e850bf64ad27709fe64cde9e549149227534 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_6836: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/index.html
IGT_6395: 9cba01635ccbce91e9205f68b8d540805d45c11f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/index.html
[-- Attachment #2: Type: text/html, Size: 17581 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for runner: Fix handling of per-test-timeout
2022-03-28 9:13 [igt-dev] [PATCH i-g-t] runner: Fix handling of per-test-timeout Petri Latvala
` (2 preceding siblings ...)
2022-03-28 11:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2022-03-28 13:07 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2022-03-28 13:07 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30259 bytes --]
== Series Details ==
Series: runner: Fix handling of per-test-timeout
URL : https://patchwork.freedesktop.org/series/101861/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11409_full -> IGTPW_6836_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/index.html
Participating hosts (12 -> 7)
------------------------------
Missing (5): shard-skl pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_6836_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_exec_balancer@smoke:
- {shard-tglu}: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglu-7/igt@gem_exec_balancer@smoke.html
Known issues
------------
Here are the changes found in IGTPW_6836_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-noreloc-purge-cache:
- shard-apl: NOTRUN -> [INCOMPLETE][2] ([i915#1982] / [i915#5441])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl4/igt@api_intel_bb@blit-noreloc-purge-cache.html
* igt@feature_discovery@chamelium:
- shard-tglb: NOTRUN -> [SKIP][3] ([fdo#111827])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb6/igt@feature_discovery@chamelium.html
- shard-iclb: NOTRUN -> [SKIP][4] ([fdo#111827])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb5/igt@feature_discovery@chamelium.html
* igt@feature_discovery@display-2x:
- shard-tglb: NOTRUN -> [SKIP][5] ([i915#1839])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@feature_discovery@display-2x.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-glk: NOTRUN -> [SKIP][6] ([fdo#109271]) +239 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-iclb: NOTRUN -> [SKIP][7] ([i915#5327])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-tglb: NOTRUN -> [SKIP][8] ([i915#5325])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-massive:
- shard-iclb: NOTRUN -> [DMESG-WARN][9] ([i915#4991])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb5/igt@gem_create@create-massive.html
- shard-snb: NOTRUN -> [DMESG-WARN][10] ([i915#4991]) +1 similar issue
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-snb7/igt@gem_create@create-massive.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-tglb: NOTRUN -> [SKIP][11] ([fdo#109314])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb2/igt@gem_ctx_param@set-priority-not-supported.html
- shard-iclb: NOTRUN -> [SKIP][12] ([fdo#109314])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb2/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@legacy-engines-mixed:
- shard-snb: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#1099]) +8 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglb: NOTRUN -> [SKIP][14] ([i915#280]) +1 similar issue
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglb: NOTRUN -> [DMESG-WARN][15] ([i915#5076])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
- shard-kbl: NOTRUN -> [DMESG-WARN][16] ([i915#5076])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl4/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-iclb: NOTRUN -> [SKIP][17] ([i915#4525])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html
- shard-tglb: NOTRUN -> [DMESG-FAIL][18] ([i915#5076])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb2/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][19] -> [FAIL][20] ([i915#2846])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-glk9/igt@gem_exec_fair@basic-deadline.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-iclb: NOTRUN -> [FAIL][21] ([i915#2842]) +2 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
- shard-tglb: NOTRUN -> [FAIL][22] ([i915#2842]) +1 similar issue
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-iclb: NOTRUN -> [SKIP][23] ([fdo#109313])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-tglb: NOTRUN -> [SKIP][24] ([fdo#109313])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@no-blt:
- shard-tglb: NOTRUN -> [SKIP][25] ([fdo#109283])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb2/igt@gem_exec_params@no-blt.html
* igt@gem_exec_params@no-vebox:
- shard-iclb: NOTRUN -> [SKIP][26] ([fdo#109283])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb4/igt@gem_exec_params@no-vebox.html
* igt@gem_exec_params@secure-non-master:
- shard-iclb: NOTRUN -> [SKIP][27] ([fdo#112283])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb4/igt@gem_exec_params@secure-non-master.html
* igt@gem_lmem_swapping@basic:
- shard-iclb: NOTRUN -> [SKIP][28] ([i915#4613]) +3 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb2/igt@gem_lmem_swapping@basic.html
- shard-apl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl8/igt@gem_lmem_swapping@basic.html
- shard-kbl: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613]) +2 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl6/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-glk: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) +2 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglb: NOTRUN -> [SKIP][32] ([i915#4613]) +1 similar issue
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_pipe_control_store_loop@reused-buffer:
- shard-glk: NOTRUN -> [INCOMPLETE][33] ([i915#5441])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk1/igt@gem_pipe_control_store_loop@reused-buffer.html
* igt@gem_ppgtt@blt-vs-render-ctx0:
- shard-kbl: NOTRUN -> [DMESG-FAIL][34] ([i915#5441]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl7/igt@gem_ppgtt@blt-vs-render-ctx0.html
* igt@gem_ppgtt@blt-vs-render-ctxn:
- shard-tglb: NOTRUN -> [DMESG-FAIL][35] ([i915#5441])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@gem_ppgtt@blt-vs-render-ctxn.html
* igt@gem_pread@exhaustion:
- shard-iclb: NOTRUN -> [WARN][36] ([i915#2658])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb7/igt@gem_pread@exhaustion.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglb: NOTRUN -> [SKIP][37] ([i915#4270]) +5 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-iclb: NOTRUN -> [SKIP][38] ([i915#4270]) +3 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb5/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-kbl: NOTRUN -> [SKIP][39] ([fdo#109271]) +232 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl4/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
- shard-iclb: NOTRUN -> [SKIP][40] ([i915#768]) +8 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109312])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb8/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-apl: NOTRUN -> [INCOMPLETE][42] ([i915#5441]) +5 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl3/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-kbl: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3323])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html
- shard-tglb: NOTRUN -> [SKIP][44] ([i915#3323])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglb: NOTRUN -> [SKIP][45] ([i915#3297]) +1 similar issue
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-iclb: NOTRUN -> [SKIP][46] ([i915#3297]) +2 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb6/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen3_render_tiledx_blits:
- shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109289]) +4 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb6/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-iclb: NOTRUN -> [SKIP][48] ([i915#2856]) +7 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb1/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglb: NOTRUN -> [SKIP][49] ([i915#2527] / [i915#2856]) +4 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#658]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk6/igt@i915_pm_dc@dc3co-vpb-simulation.html
- shard-iclb: NOTRUN -> [SKIP][51] ([i915#658])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_dc@dc6-psr:
- shard-tglb: NOTRUN -> [FAIL][52] ([i915#454])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
- shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#1937])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-glk: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#1937])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_lpsp@screens-disabled:
- shard-iclb: NOTRUN -> [SKIP][55] ([i915#1902])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb2/igt@i915_pm_lpsp@screens-disabled.html
* igt@i915_pm_rpm@pc8-residency:
- shard-tglb: NOTRUN -> [SKIP][56] ([fdo#109506] / [i915#2411])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@i915_pm_rpm@pc8-residency.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109303])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb4/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109302])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb5/igt@i915_query@query-topology-unsupported.html
- shard-tglb: NOTRUN -> [SKIP][59] ([fdo#109302])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@i915_query@query-topology-unsupported.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-iclb: NOTRUN -> [SKIP][60] ([i915#1769])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][61] ([i915#5286]) +6 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][62] ([i915#5286]) +9 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][63] ([fdo#111614]) +4 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb1/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-0:
- shard-iclb: NOTRUN -> [INCOMPLETE][64] ([i915#5441]) +11 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb6/igt@kms_big_fb@linear-32bpp-rotate-0.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0:
- shard-snb: NOTRUN -> [INCOMPLETE][65] ([i915#5441]) +5 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-snb4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-180:
- shard-tglb: NOTRUN -> [INCOMPLETE][66] ([i915#1373] / [i915#5441])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][67] ([fdo#110725] / [fdo#111614]) +4 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
- shard-glk: [PASS][68] -> [DMESG-WARN][69] ([i915#118])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-glk1/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk6/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-0:
- shard-snb: [PASS][70] -> [INCOMPLETE][71] ([i915#5441])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-snb7/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-snb2/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-kbl: NOTRUN -> [INCOMPLETE][72] ([i915#2828] / [i915#5441])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl6/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
- shard-apl: [PASS][73] -> [INCOMPLETE][74] ([i915#1982] / [i915#2828] / [i915#5441])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-apl3/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl1/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-glk: [PASS][75] -> [INCOMPLETE][76] ([i915#5441]) +3 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-glk1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk8/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
- shard-kbl: NOTRUN -> [INCOMPLETE][77] ([i915#1373] / [i915#5441])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-glk: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#3777]) +3 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#3777]) +5 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
- shard-kbl: NOTRUN -> [INCOMPLETE][80] ([i915#5441]) +8 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-kbl: [PASS][81] -> [INCOMPLETE][82] ([i915#5441]) +1 similar issue
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-kbl3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-kbl: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#3777]) +5 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-tglb: NOTRUN -> [INCOMPLETE][84] ([i915#5441]) +8 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-iclb: [PASS][85] -> [INCOMPLETE][86] ([i915#5441]) +2 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-iclb7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglb: [PASS][87] -> [INCOMPLETE][88] ([i915#5441]) +1 similar issue
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-tglb7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][89] ([fdo#111615]) +11 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-apl: NOTRUN -> [SKIP][90] ([fdo#109271]) +286 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
- shard-iclb: NOTRUN -> [SKIP][91] ([fdo#110723]) +4 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#3886]) +14 similar issues
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][93] ([i915#3689] / [i915#3886]) +6 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb1/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-kbl: NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#3886]) +10 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][95] ([fdo#109278] / [i915#3886]) +15 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb7/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
- shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#3886]) +6 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][97] ([fdo#111615] / [i915#3689]) +11 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][98] ([i915#3689]) +13 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-iclb: NOTRUN -> [SKIP][99] ([i915#3742])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium@dp-frame-dump:
- shard-glk: NOTRUN -> [SKIP][100] ([fdo#109271] / [fdo#111827]) +18 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-glk9/igt@kms_chamelium@dp-frame-dump.html
* igt@kms_chamelium@hdmi-hpd-storm:
- shard-kbl: NOTRUN -> [SKIP][101] ([fdo#109271] / [fdo#111827]) +16 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl7/igt@kms_chamelium@hdmi-hpd-storm.html
* igt@kms_chamelium@vga-hpd-with-enabled-mode:
- shard-iclb: NOTRUN -> [SKIP][102] ([fdo#109284] / [fdo#111827]) +23 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb5/igt@kms_chamelium@vga-hpd-with-enabled-mode.html
* igt@kms_chamelium@vga-hpd-without-ddc:
- shard-snb: NOTRUN -> [SKIP][103] ([fdo#109271] / [fdo#111827]) +29 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-snb7/igt@kms_chamelium@vga-hpd-without-ddc.html
* igt@kms_color@pipe-b-deep-color:
- shard-iclb: NOTRUN -> [SKIP][104] ([fdo#109278] / [i915#3555])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb5/igt@kms_color@pipe-b-deep-color.html
* igt@kms_color@pipe-d-ctm-negative:
- shard-iclb: NOTRUN -> [SKIP][105] ([fdo#109278] / [i915#1149]) +2 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb1/igt@kms_color@pipe-d-ctm-negative.html
* igt@kms_color_chamelium@pipe-a-ctm-limited-range:
- shard-apl: NOTRUN -> [SKIP][106] ([fdo#109271] / [fdo#111827]) +20 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl8/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
* igt@kms_color_chamelium@pipe-b-ctm-0-75:
- shard-tglb: NOTRUN -> [SKIP][107] ([fdo#109284] / [fdo#111827]) +26 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html
* igt@kms_color_chamelium@pipe-d-ctm-0-25:
- shard-iclb: NOTRUN -> [SKIP][108] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb2/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
* igt@kms_content_protection@content_type_change:
- shard-tglb: NOTRUN -> [SKIP][109] ([i915#1063])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb3/igt@kms_content_protection@content_type_change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglb: NOTRUN -> [SKIP][110] ([i915#3116] / [i915#3299])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-iclb: NOTRUN -> [SKIP][111] ([fdo#109300] / [fdo#111066]) +3 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb2/igt@kms_content_protection@legacy.html
- shard-kbl: NOTRUN -> [TIMEOUT][112] ([i915#1319]) +1 similar issue
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-kbl6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic:
- shard-apl: NOTRUN -> [TIMEOUT][113] ([i915#1319]) +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-apl2/igt@kms_content_protection@lic.html
* igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement:
- shard-iclb: NOTRUN -> [SKIP][114] ([fdo#109278] / [fdo#109279]) +7 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html
* igt@kms_cursor_crc@pipe-c-cursor-32x32-random:
- shard-tglb: NOTRUN -> [SKIP][115] ([i915#3319]) +4 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-32x32-random.html
* igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][116] ([i915#3359]) +10 similar issues
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html
* igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][117] ([fdo#109279] / [i915#3359]) +6 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x512-rapid-movement.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
- shard-snb: NOTRUN -> [SKIP][118] ([fdo#109271]) +636 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html
* igt@kms_cursor_edge_walk@pipe-d-256x256-left-edge:
- shard-iclb: NOTRUN -> [SKIP][119] ([fdo#109278]) +86 similar issues
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb4/igt@kms_cursor_edge_walk@pipe-d-256x256-left-edge.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-iclb: NOTRUN -> [SKIP][120] ([fdo#109274] / [fdo#109278]) +4 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglb: NOTRUN -> [SKIP][121] ([i915#4103]) +1 similar issue
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-iclb: NOTRUN -> [SKIP][122] ([i915#426])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb8/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
- shard-iclb: NOTRUN -> [SKIP][123] ([i915#3528])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb1/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled:
- shard-tglb: NOTRUN -> [SKIP][124] ([i915#5287]) +3 similar issues
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-tglb6/igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled.html
* igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled:
- shard-iclb: NOTRUN -> [SKIP][125] ([i915#5287]) +4 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/shard-iclb2/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled.html
* igt@kms_dsc@xrgb8888-dsc-compression:
- shard-tglb: NOTRUN -> [SKIP][126] ([i915#
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6836/index.html
[-- Attachment #2: Type: text/html, Size: 34039 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-03-28 13:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-28 9:13 [igt-dev] [PATCH i-g-t] runner: Fix handling of per-test-timeout Petri Latvala
2022-03-28 9:52 ` Mauro Carvalho Chehab
2022-03-28 10:02 ` Mauro Carvalho Chehab
2022-03-28 11:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2022-03-28 13:07 ` [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