* [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description
@ 2021-02-19 9:00 Arundhati Hagaragi
2021-02-19 10:20 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic_transition:Add subtest description (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Arundhati Hagaragi @ 2021-02-19 9:00 UTC (permalink / raw)
To: igt-dev; +Cc: Gupta, Nidhi1
Added description for all subtests
Signed-off-by: Arundhati Hagaragi <arundhati.hagaragi@intel.com>
Cc: Gupta, Nidhi1 <nidhi1.gupta@intel.com>
---
tests/kms_atomic_transition.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c
index e75cc637..9689bf4d 100644
--- a/tests/kms_atomic_transition.c
+++ b/tests/kms_atomic_transition.c
@@ -993,6 +993,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
count++;
}
+ igt_describe("Check toggling of primary plane with vblank");
igt_subtest("plane-primary-toggle-with-vblank-wait")
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1002,6 +1003,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
+ igt_describe("Transition test for all plane combinations");
igt_subtest_with_dynamic("plane-all-transition") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1012,6 +1014,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test for all plane combinations with fencing commit");
igt_subtest_with_dynamic("plane-all-transition-fencing") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1022,6 +1025,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test for all plane combinations with nonblocking commit");
igt_subtest_with_dynamic("plane-all-transition-nonblocking") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1032,6 +1036,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test for all plane combinations with nonblocking and fencing commit");
igt_subtest_with_dynamic("plane-all-transition-nonblocking-fencing") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1042,6 +1047,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test with non blocking commit and make sure commit of disabled plane has "
+ "to complete before atomic commit on that plane");
igt_subtest_with_dynamic("plane-use-after-nonblocking-unbind") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1052,6 +1059,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test with non blocking and fencing commit and make sure commit of "
+ "disabled plane has to complete before atomic commit on that plane");
igt_subtest_with_dynamic("plane-use-after-nonblocking-unbind-fencing") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1067,6 +1076,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
* number of combinations, to avoid long runtimes due to modesets on
* panels with long power cycle delays.
*/
+ igt_describe("Modeset test for all plane combinations");
igt_subtest_with_dynamic("plane-all-modeset-transition")
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1079,6 +1089,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
run_transition_test(&data, pipe, output, TRANSITION_MODESET, false, false);
}
+ igt_describe("Modeset test for all plane combinations with fencing commit");
igt_subtest_with_dynamic("plane-all-modeset-transition-fencing")
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1091,6 +1102,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
run_transition_test(&data, pipe, output, TRANSITION_MODESET, false, true);
}
+ igt_describe("Modeset test for all plane combinations on internal panels");
igt_subtest_with_dynamic("plane-all-modeset-transition-internal-panels") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1104,6 +1116,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Modeset test for all plane combinations on internal panels with fencing commit");
igt_subtest_with_dynamic("plane-all-modeset-transition-fencing-internal-panels") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1117,6 +1130,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Check toggling and modeset transition on plane");
igt_subtest("plane-toggle-modeset-transition")
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended)
@@ -1125,6 +1139,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
run_transition_test(&data, pipe, output, TRANSITION_MODESET_DISABLE, false, false);
}
+ igt_describe("Modeset transition tests for combinations of crtc enabled");
igt_subtest_with_dynamic("modeset-transition") {
for (i = 1; i <= count; i++) {
igt_dynamic_f("%ix-outputs", i)
@@ -1132,6 +1147,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Modeset transition tests for combinations of crtc enabled with nonblocking commit");
igt_subtest_with_dynamic("modeset-transition-nonblocking") {
for (i = 1; i <= count; i++) {
igt_dynamic_f("%ix-outputs", i)
@@ -1139,6 +1155,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Modeset transition tests for combinations of crtc enabled with fencing commit");
igt_subtest_with_dynamic("modeset-transition-fencing") {
for (i = 1; i <= count; i++) {
igt_dynamic_f("%ix-outputs", i)
@@ -1146,6 +1163,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Modeset transition tests for combinations of crtc enabled with nonblocking &"
+ " fencing commit");
igt_subtest_with_dynamic("modeset-transition-nonblocking-fencing") {
for (i = 1; i <= count; i++) {
igt_dynamic_f("%ix-outputs", i)
--
2.25.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic_transition:Add subtest description (rev2)
2021-02-19 9:00 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description Arundhati Hagaragi
@ 2021-02-19 10:20 ` Patchwork
2021-02-19 14:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-02-19 10:20 UTC (permalink / raw)
To: Arundhati Hagaragi; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 3306 bytes --]
== Series Details ==
Series: tests/kms_atomic_transition:Add subtest description (rev2)
URL : https://patchwork.freedesktop.org/series/86153/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9789 -> IGTPW_5536
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/index.html
Known issues
------------
Here are the changes found in IGTPW_5536 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_basic@userptr:
- fi-byt-j1900: NOTRUN -> [SKIP][1] ([fdo#109271]) +17 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/fi-byt-j1900/igt@amdgpu/amd_basic@userptr.html
* igt@gem_sync@basic-all:
- fi-tgl-y: [PASS][2] -> [DMESG-WARN][3] ([i915#402]) +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/fi-tgl-y/igt@gem_sync@basic-all.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/fi-tgl-y/igt@gem_sync@basic-all.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- fi-snb-2600: NOTRUN -> [SKIP][4] ([fdo#109271]) +34 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/fi-snb-2600/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_chamelium@hdmi-crc-fast:
- fi-snb-2600: NOTRUN -> [SKIP][5] ([fdo#109271] / [fdo#111827]) +8 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/fi-snb-2600/igt@kms_chamelium@hdmi-crc-fast.html
#### Possible fixes ####
* igt@gem_mmap_gtt@basic:
- fi-tgl-y: [DMESG-WARN][6] ([i915#402]) -> [PASS][7] +1 similar issue
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/fi-tgl-y/igt@gem_mmap_gtt@basic.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/fi-tgl-y/igt@gem_mmap_gtt@basic.html
* igt@i915_pm_rpm@module-reload:
- fi-byt-j1900: [INCOMPLETE][8] ([i915#142] / [i915#2405]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#142]: https://gitlab.freedesktop.org/drm/intel/issues/142
[i915#2405]: https://gitlab.freedesktop.org/drm/intel/issues/2405
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
Participating hosts (45 -> 39)
------------------------------
Additional (1): fi-snb-2600
Missing (7): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-ehl-2 fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6009 -> IGTPW_5536
CI-20190529: 20190529
CI_DRM_9789: 0cde40e2430f7995d97d15c35092bc6d2ffc6a48 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5536: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/index.html
IGT_6009: a4dccf189b34a55338feec9927dac57c467c4100 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/index.html
[-- Attachment #1.2: Type: text/html, Size: 4248 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_atomic_transition:Add subtest description (rev2)
2021-02-19 9:00 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description Arundhati Hagaragi
2021-02-19 10:20 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic_transition:Add subtest description (rev2) Patchwork
@ 2021-02-19 14:04 ` Patchwork
2021-02-26 2:52 ` [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description Gupta, Nidhi1
2021-02-26 3:19 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/kms_atomic_transition:Add subtest description (rev3) Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-02-19 14:04 UTC (permalink / raw)
To: Arundhati Hagaragi; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 30276 bytes --]
== Series Details ==
Series: tests/kms_atomic_transition:Add subtest description (rev2)
URL : https://patchwork.freedesktop.org/series/86153/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_9789_full -> IGTPW_5536_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_5536_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5536_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_5536_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_busy@close-race:
- shard-hsw: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-hsw2/igt@gem_busy@close-race.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-hsw4/igt@gem_busy@close-race.html
* igt@sysfs_clients@fair-1@vcs:
- shard-kbl: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl1/igt@sysfs_clients@fair-1@vcs.html
#### Warnings ####
* igt@runner@aborted:
- shard-kbl: ([FAIL][4], [FAIL][5], [FAIL][6], [FAIL][7], [FAIL][8], [FAIL][9]) ([i915#1814] / [i915#2505] / [i915#602] / [i915#92]) -> ([FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13], [FAIL][14]) ([i915#2292] / [i915#2505] / [i915#3002])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-kbl7/igt@runner@aborted.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-kbl1/igt@runner@aborted.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-kbl7/igt@runner@aborted.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-kbl7/igt@runner@aborted.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-kbl6/igt@runner@aborted.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-kbl7/igt@runner@aborted.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl7/igt@runner@aborted.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl4/igt@runner@aborted.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl6/igt@runner@aborted.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl6/igt@runner@aborted.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl7/igt@runner@aborted.html
- shard-apl: ([FAIL][15], [FAIL][16], [FAIL][17]) ([i915#1814] / [i915#3002]) -> ([FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21]) ([i915#3002])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-apl1/igt@runner@aborted.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-apl6/igt@runner@aborted.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-apl8/igt@runner@aborted.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl7/igt@runner@aborted.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl7/igt@runner@aborted.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl3/igt@runner@aborted.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl6/igt@runner@aborted.html
Known issues
------------
Here are the changes found in IGTPW_5536_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_create@create-massive:
- shard-kbl: NOTRUN -> [DMESG-WARN][22] ([i915#3002]) +1 similar issue
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl6/igt@gem_create@create-massive.html
* igt@gem_ctx_persistence@close-replace-race:
- shard-glk: [PASS][23] -> [TIMEOUT][24] ([i915#2918])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-glk8/igt@gem_ctx_persistence@close-replace-race.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk1/igt@gem_ctx_persistence@close-replace-race.html
* igt@gem_ctx_persistence@hostile:
- shard-hsw: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1099]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-hsw4/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1099]) +5 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-snb2/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglb: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_fair@basic-deadline:
- shard-apl: NOTRUN -> [FAIL][28] ([i915#2846])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: [PASS][29] -> [FAIL][30] ([i915#2842])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-kbl: NOTRUN -> [FAIL][31] ([i915#2842]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl1/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-kbl: [PASS][32] -> [FAIL][33] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-kbl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglb: NOTRUN -> [FAIL][34] ([i915#2842]) +4 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb3/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-iclb: NOTRUN -> [FAIL][35] ([i915#2842]) +4 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-kbl: [PASS][36] -> [SKIP][37] ([fdo#109271])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_reloc@basic-parallel:
- shard-kbl: NOTRUN -> [TIMEOUT][38] ([i915#1729])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl2/igt@gem_exec_reloc@basic-parallel.html
- shard-apl: NOTRUN -> [TIMEOUT][39] ([i915#1729])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl1/igt@gem_exec_reloc@basic-parallel.html
* igt@gem_exec_reloc@basic-wide-active@bcs0:
- shard-apl: NOTRUN -> [FAIL][40] ([i915#2389]) +3 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl1/igt@gem_exec_reloc@basic-wide-active@bcs0.html
- shard-glk: NOTRUN -> [FAIL][41] ([i915#2389]) +3 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk3/igt@gem_exec_reloc@basic-wide-active@bcs0.html
* igt@gem_exec_reloc@basic-wide-active@vecs0:
- shard-iclb: NOTRUN -> [FAIL][42] ([i915#2389]) +2 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb7/igt@gem_exec_reloc@basic-wide-active@vecs0.html
* igt@gem_huc_copy@huc-copy:
- shard-kbl: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#2190])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl1/igt@gem_huc_copy@huc-copy.html
* igt@gem_pread@exhaustion:
- shard-apl: NOTRUN -> [WARN][44] ([i915#2658])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl6/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][45] ([i915#2658])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-snb6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-iclb: NOTRUN -> [SKIP][46] ([i915#768])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb6/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_userptr_blits@input-checking:
- shard-apl: NOTRUN -> [DMESG-WARN][47] ([i915#3002])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl7/igt@gem_userptr_blits@input-checking.html
- shard-glk: NOTRUN -> [DMESG-WARN][48] ([i915#3002])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk5/igt@gem_userptr_blits@input-checking.html
- shard-iclb: NOTRUN -> [DMESG-WARN][49] ([i915#3002])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb8/igt@gem_userptr_blits@input-checking.html
* igt@gem_userptr_blits@process-exit-mmap-busy@uc:
- shard-kbl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#1699]) +3 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl6/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html
* igt@gem_userptr_blits@vma-merge:
- shard-apl: NOTRUN -> [INCOMPLETE][51] ([i915#2502] / [i915#2667])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl6/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@basic-offset:
- shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271]) +157 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl3/igt@gen7_exec_parse@basic-offset.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglb: NOTRUN -> [SKIP][53] ([fdo#112306])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb2/igt@gen9_exec_parse@bb-secure.html
- shard-iclb: NOTRUN -> [SKIP][54] ([fdo#112306])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb4/igt@gen9_exec_parse@bb-secure.html
* igt@i915_pm_dc@dc6-psr:
- shard-iclb: [PASS][55] -> [FAIL][56] ([i915#454])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-iclb2/igt@i915_pm_dc@dc6-psr.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb2/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-tglb: NOTRUN -> [SKIP][57] ([fdo#111644] / [i915#1397] / [i915#2411])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb8/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
- shard-iclb: NOTRUN -> [SKIP][58] ([fdo#110892])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_query@query-topology-unsupported:
- shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109302])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb7/igt@i915_query@query-topology-unsupported.html
- shard-tglb: NOTRUN -> [SKIP][60] ([fdo#109302])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb2/igt@i915_query@query-topology-unsupported.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-tglb: NOTRUN -> [SKIP][61] ([fdo#111614])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-iclb: NOTRUN -> [SKIP][62] ([fdo#110725] / [fdo#111614]) +2 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb8/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][63] ([fdo#111615])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb3/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_joiner@basic:
- shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#2705])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl8/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo:
- shard-hsw: NOTRUN -> [SKIP][65] ([fdo#109271]) +31 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-hsw1/igt@kms_ccs@pipe-b-ccs-on-another-bo.html
* igt@kms_chamelium@common-hpd-after-suspend:
- shard-hsw: NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +3 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-hsw2/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@hdmi-hpd-enable-disable-mode:
- shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) +6 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb5/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html
- shard-snb: NOTRUN -> [SKIP][68] ([fdo#109271] / [fdo#111827]) +20 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-snb7/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium@vga-hpd-for-each-pipe:
- shard-kbl: NOTRUN -> [SKIP][69] ([fdo#109271] / [fdo#111827]) +23 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl4/igt@kms_chamelium@vga-hpd-for-each-pipe.html
* igt@kms_color@pipe-c-ctm-0-25:
- shard-iclb: NOTRUN -> [FAIL][70] ([i915#1149] / [i915#315])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb1/igt@kms_color@pipe-c-ctm-0-25.html
- shard-tglb: NOTRUN -> [FAIL][71] ([i915#1149] / [i915#315])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb6/igt@kms_color@pipe-c-ctm-0-25.html
* igt@kms_color@pipe-d-ctm-green-to-red:
- shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109278] / [i915#1149])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb4/igt@kms_color@pipe-d-ctm-green-to-red.html
* igt@kms_color_chamelium@pipe-a-ctm-limited-range:
- shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [fdo#111827]) +18 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
* igt@kms_color_chamelium@pipe-b-ctm-0-5:
- shard-glk: NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +8 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk1/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
- shard-tglb: NOTRUN -> [SKIP][75] ([fdo#109284] / [fdo#111827]) +5 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb3/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
* igt@kms_content_protection@legacy:
- shard-kbl: NOTRUN -> [TIMEOUT][76] ([i915#1319])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-apl: NOTRUN -> [TIMEOUT][77] ([i915#1319])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl3/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement:
- shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109278] / [fdo#109279])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb2/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html
- shard-tglb: NOTRUN -> [SKIP][79] ([fdo#109279])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html
* igt@kms_cursor_crc@pipe-b-cursor-64x64-rapid-movement:
- shard-snb: [PASS][80] -> [SKIP][81] ([fdo#109271])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-snb7/igt@kms_cursor_crc@pipe-b-cursor-64x64-rapid-movement.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-snb2/igt@kms_cursor_crc@pipe-b-cursor-64x64-rapid-movement.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
- shard-snb: NOTRUN -> [SKIP][82] ([fdo#109271]) +298 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-hsw: [PASS][83] -> [FAIL][84] ([i915#2370])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-hsw2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109274]) +2 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][86] -> [FAIL][87] ([i915#2122])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-glk9/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
- shard-kbl: NOTRUN -> [DMESG-WARN][88] ([i915#180]) +2 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
* igt@kms_flip@flip-vs-suspend@a-dp1:
- shard-apl: [PASS][89] -> [DMESG-WARN][90] ([i915#180])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-apl6/igt@kms_flip@flip-vs-suspend@a-dp1.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl3/igt@kms_flip@flip-vs-suspend@a-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
- shard-kbl: NOTRUN -> [FAIL][91] ([i915#2641]) +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
- shard-kbl: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#2672]) +1 similar issue
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
- shard-apl: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#2642])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109280]) +9 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-glk: NOTRUN -> [SKIP][95] ([fdo#109271]) +47 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-tglb: NOTRUN -> [SKIP][96] ([fdo#111825]) +12 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
- shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#533])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
* igt@kms_pipe_crc_basic@read-crc-pipe-d:
- shard-kbl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#533]) +1 similar issue
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl1/igt@kms_pipe_crc_basic@read-crc-pipe-d.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][99] ([i915#265])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk5/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
- shard-apl: NOTRUN -> [FAIL][100] ([fdo#108145] / [i915#265]) +3 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
- shard-kbl: NOTRUN -> [FAIL][101] ([i915#265]) +1 similar issue
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
* igt@kms_plane_cursor@pipe-d-overlay-size-256:
- shard-hsw: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#533]) +6 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-hsw2/igt@kms_plane_cursor@pipe-d-overlay-size-256.html
* igt@kms_plane_lowres@pipe-c-tiling-none:
- shard-kbl: [PASS][103] -> [DMESG-WARN][104] ([i915#165] / [i915#180] / [i915#78])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-kbl7/igt@kms_plane_lowres@pipe-c-tiling-none.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl2/igt@kms_plane_lowres@pipe-c-tiling-none.html
* igt@kms_plane_lowres@pipe-d-tiling-none:
- shard-iclb: NOTRUN -> [SKIP][105] ([fdo#109278]) +3 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb5/igt@kms_plane_lowres@pipe-d-tiling-none.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
- shard-kbl: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#658]) +2 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
- shard-apl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#658]) +3 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
- shard-tglb: NOTRUN -> [SKIP][108] ([i915#2920])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html
- shard-glk: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#658])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk4/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html
- shard-iclb: NOTRUN -> [SKIP][110] ([i915#658])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb7/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html
* igt@kms_psr@primary_blt:
- shard-hsw: NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#1072]) +2 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-hsw2/igt@kms_psr@primary_blt.html
* igt@kms_psr@psr2_cursor_render:
- shard-iclb: [PASS][112] -> [SKIP][113] ([fdo#109441]) +1 similar issue
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb8/igt@kms_psr@psr2_cursor_render.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-iclb: NOTRUN -> [SKIP][114] ([fdo#109441]) +2 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb1/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][115] ([i915#31])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-snb7/igt@kms_setmode@basic.html
* igt@kms_sysfs_edid_timing:
- shard-kbl: NOTRUN -> [FAIL][116] ([IGT#2])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl6/igt@kms_sysfs_edid_timing.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2437]) +2 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl8/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#2437])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk6/igt@kms_writeback@writeback-pixel-formats.html
- shard-kbl: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2437]) +1 similar issue
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl4/igt@kms_writeback@writeback-pixel-formats.html
- shard-iclb: NOTRUN -> [SKIP][120] ([i915#2437])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb6/igt@kms_writeback@writeback-pixel-formats.html
- shard-tglb: NOTRUN -> [SKIP][121] ([i915#2437])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb1/igt@kms_writeback@writeback-pixel-formats.html
* igt@prime_nv_api@i915_nv_import_twice_check_flink_name:
- shard-iclb: NOTRUN -> [SKIP][122] ([fdo#109291]) +1 similar issue
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb8/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html
- shard-tglb: NOTRUN -> [SKIP][123] ([fdo#109291]) +1 similar issue
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb5/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html
* igt@prime_nv_pcopy@test2:
- shard-kbl: NOTRUN -> [SKIP][124] ([fdo#109271]) +228 similar issues
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl4/igt@prime_nv_pcopy@test2.html
* igt@sysfs_clients@recycle:
- shard-snb: NOTRUN -> [FAIL][125] ([i915#3028])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-snb7/igt@sysfs_clients@recycle.html
* igt@sysfs_clients@split-10@bcs0:
- shard-apl: NOTRUN -> [SKIP][126] ([fdo#109271] / [i915#3026])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl3/igt@sysfs_clients@split-10@bcs0.html
- shard-kbl: NOTRUN -> [SKIP][127] ([fdo#109271] / [i915#3026])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-kbl4/igt@sysfs_clients@split-10@bcs0.html
#### Possible fixes ####
* igt@gem_eio@unwedge-stress:
- shard-tglb: [TIMEOUT][128] ([i915#3063]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-tglb2/igt@gem_eio@unwedge-stress.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-tglb2/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@hang:
- shard-iclb: [INCOMPLETE][130] ([i915#1895] / [i915#3031]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-iclb4/igt@gem_exec_balancer@hang.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb8/igt@gem_exec_balancer@hang.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-iclb: [FAIL][132] ([i915#2842]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-iclb6/igt@gem_exec_fair@basic-none-share@rcs0.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-glk: [FAIL][134] ([i915#2842]) -> [PASS][135] +2 similar issues
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-iclb: [FAIL][136] ([i915#2849]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_whisper@basic-forked:
- shard-glk: [DMESG-WARN][138] ([i915#118] / [i915#95]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-glk9/igt@gem_exec_whisper@basic-forked.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-glk1/igt@gem_exec_whisper@basic-forked.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-hsw: [WARN][140] ([i915#1519]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-hsw2/igt@i915_pm_rc6_residency@rc6-fence.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-hsw1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-apl: [DMESG-WARN][142] ([i915#180]) -> [PASS][143] +1 similar issue
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-hsw: [FAIL][144] ([i915#96]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9789/shard-hsw1/igt@kms_cursor_legacy@2x-long-cursor-vs-fli
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5536/index.html
[-- Attachment #1.2: Type: text/html, Size: 34399 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description
2021-02-19 9:00 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description Arundhati Hagaragi
2021-02-19 10:20 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic_transition:Add subtest description (rev2) Patchwork
2021-02-19 14:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-02-26 2:52 ` Gupta, Nidhi1
2021-02-26 3:19 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/kms_atomic_transition:Add subtest description (rev3) Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Gupta, Nidhi1 @ 2021-02-26 2:52 UTC (permalink / raw)
To: Hagaragi, Arundhati, igt-dev@lists.freedesktop.org
LGTM
Reviewed-by: Nidhi Gupta
-----Original Message-----
From: Arundhati Hagaragi <arundhati.hagaragi@intel.com>
Sent: Friday, February 19, 2021 2:31 PM
To: igt-dev@lists.freedesktop.org
Cc: Hagaragi, Arundhati <arundhati.hagaragi@intel.com>; Gupta; Gupta, Nidhi1 <nidhi1.gupta@intel.com>
Subject: [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description
Added description for all subtests
Signed-off-by: Arundhati Hagaragi <arundhati.hagaragi@intel.com>
Cc: Gupta, Nidhi1 <nidhi1.gupta@intel.com>
---
tests/kms_atomic_transition.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c index e75cc637..9689bf4d 100644
--- a/tests/kms_atomic_transition.c
+++ b/tests/kms_atomic_transition.c
@@ -993,6 +993,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
count++;
}
+ igt_describe("Check toggling of primary plane with vblank");
igt_subtest("plane-primary-toggle-with-vblank-wait")
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1002,6 +1003,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
+ igt_describe("Transition test for all plane combinations");
igt_subtest_with_dynamic("plane-all-transition") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1012,6 +1014,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test for all plane combinations with fencing
+commit");
igt_subtest_with_dynamic("plane-all-transition-fencing") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1022,6 +1025,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test for all plane combinations with
+nonblocking commit");
igt_subtest_with_dynamic("plane-all-transition-nonblocking") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1032,6 +1036,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test for all plane combinations with
+nonblocking and fencing commit");
igt_subtest_with_dynamic("plane-all-transition-nonblocking-fencing") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1042,6 +1047,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test with non blocking commit and make sure commit of disabled plane has "
+ "to complete before atomic commit on that plane");
igt_subtest_with_dynamic("plane-use-after-nonblocking-unbind") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1052,6 +1059,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Transition test with non blocking and fencing commit and make sure commit of "
+ "disabled plane has to complete before atomic commit on that
+plane");
igt_subtest_with_dynamic("plane-use-after-nonblocking-unbind-fencing") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1067,6 +1076,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
* number of combinations, to avoid long runtimes due to modesets on
* panels with long power cycle delays.
*/
+ igt_describe("Modeset test for all plane combinations");
igt_subtest_with_dynamic("plane-all-modeset-transition")
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1079,6 +1089,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
run_transition_test(&data, pipe, output, TRANSITION_MODESET, false, false);
}
+ igt_describe("Modeset test for all plane combinations with fencing
+commit");
igt_subtest_with_dynamic("plane-all-modeset-transition-fencing")
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1091,6 +1102,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
run_transition_test(&data, pipe, output, TRANSITION_MODESET, false, true);
}
+ igt_describe("Modeset test for all plane combinations on internal
+panels");
igt_subtest_with_dynamic("plane-all-modeset-transition-internal-panels") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1104,6 +1116,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Modeset test for all plane combinations on internal
+panels with fencing commit");
igt_subtest_with_dynamic("plane-all-modeset-transition-fencing-internal-panels") {
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1117,6 +1130,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Check toggling and modeset transition on plane");
igt_subtest("plane-toggle-modeset-transition")
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (pipe_count == 2 * count && !data.extended) @@ -1125,6 +1139,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
run_transition_test(&data, pipe, output, TRANSITION_MODESET_DISABLE, false, false);
}
+ igt_describe("Modeset transition tests for combinations of crtc
+enabled");
igt_subtest_with_dynamic("modeset-transition") {
for (i = 1; i <= count; i++) {
igt_dynamic_f("%ix-outputs", i)
@@ -1132,6 +1147,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Modeset transition tests for combinations of crtc
+enabled with nonblocking commit");
igt_subtest_with_dynamic("modeset-transition-nonblocking") {
for (i = 1; i <= count; i++) {
igt_dynamic_f("%ix-outputs", i)
@@ -1139,6 +1155,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Modeset transition tests for combinations of crtc
+enabled with fencing commit");
igt_subtest_with_dynamic("modeset-transition-fencing") {
for (i = 1; i <= count; i++) {
igt_dynamic_f("%ix-outputs", i)
@@ -1146,6 +1163,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_describe("Modeset transition tests for combinations of crtc enabled with nonblocking &"
+ " fencing commit");
igt_subtest_with_dynamic("modeset-transition-nonblocking-fencing") {
for (i = 1; i <= count; i++) {
igt_dynamic_f("%ix-outputs", i)
--
2.25.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.BUILD: failure for tests/kms_atomic_transition:Add subtest description (rev3)
2021-02-19 9:00 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description Arundhati Hagaragi
` (2 preceding siblings ...)
2021-02-26 2:52 ` [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description Gupta, Nidhi1
@ 2021-02-26 3:19 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-02-26 3:19 UTC (permalink / raw)
To: Gupta, Nidhi1; +Cc: igt-dev
== Series Details ==
Series: tests/kms_atomic_transition:Add subtest description (rev3)
URL : https://patchwork.freedesktop.org/series/86153/
State : failure
== Summary ==
Applying: tests/kms_atomic_transition:Add subtest description
Patch failed at 0001 tests/kms_atomic_transition:Add subtest description
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-02-26 3:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-19 9:00 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description Arundhati Hagaragi
2021-02-19 10:20 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic_transition:Add subtest description (rev2) Patchwork
2021-02-19 14:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-02-26 2:52 ` [igt-dev] [PATCH i-g-t v2] tests/kms_atomic_transition:Add subtest description Gupta, Nidhi1
2021-02-26 3:19 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/kms_atomic_transition:Add subtest description (rev3) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox