* [igt-dev] [PATCH i-g-t] Added tests description
@ 2021-04-09 17:13 Arundhati Hagaragi
2021-04-09 18:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Arundhati Hagaragi @ 2021-04-09 17:13 UTC (permalink / raw)
To: igt-dev; +Cc: Gupta, Nidhi1
Added description for following kms tests:
tests/kms_color.c
tests/kms_dp_dsc.c
tests/kms_flip.c
tests/kms_flip_tiling.c
tests/kms_psr.c
Signed-off-by: Arundhati Hagaragi <arundhati.hagaragi@intel.com>
Cc: Gupta, Nidhi1 <nidhi1.gupta@intel.com>
---
tests/kms_color.c | 16 ++++++++++++++++
tests/kms_dp_dsc.c | 3 ++-
tests/kms_flip.c | 5 +++++
tests/kms_flip_tiling.c | 10 +++++++++-
tests/kms_psr.c | 12 ++++++++++++
5 files changed, 44 insertions(+), 2 deletions(-)
diff --git a/tests/kms_color.c b/tests/kms_color.c
index b1b91c74..3a42532a 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -687,6 +687,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
data->color_depth = 8;
delta = 1.0 / (1 << data->color_depth);
+ igt_describe("Check the color transformation from red to blue");
igt_subtest_f("pipe-%s-ctm-red-to-blue", kmstest_pipe_name(p)) {
color_t blue_green_blue[] = {
{ 0.0, 0.0, 1.0 },
@@ -700,6 +701,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
blue_green_blue, ctm));
}
+ igt_describe("Check the color transformation from green to red");
igt_subtest_f("pipe-%s-ctm-green-to-red", kmstest_pipe_name(p)) {
color_t red_red_blue[] = {
{ 1.0, 0.0, 0.0 },
@@ -713,6 +715,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
red_red_blue, ctm));
}
+ igt_describe("Check the color transformation from blue to red");
igt_subtest_f("pipe-%s-ctm-blue-to-red", kmstest_pipe_name(p)) {
color_t red_green_red[] = {
{ 1.0, 0.0, 0.0 },
@@ -730,6 +733,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
* the it depends on the hardware we're dealing with, we can
* either get clamped or rounded values and we also need to
* account for odd number of items in the LUTs. */
+ igt_describe("Check the color transformation for 0.25 transparency");
igt_subtest_f("pipe-%s-ctm-0-25", kmstest_pipe_name(p)) {
color_t expected_colors[] = {
{ 0.0, }, { 0.0, }, { 0.0, }
@@ -751,6 +755,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
igt_assert(success);
}
+ igt_describe("Check the color transformation for 0.5 transparency");
igt_subtest_f("pipe-%s-ctm-0-5", kmstest_pipe_name(p)) {
color_t expected_colors[] = {
{ 0.0, }, { 0.0, }, { 0.0, }
@@ -772,6 +777,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
igt_assert(success);
}
+ igt_describe("Check the color transformation for 0.75 transparency");
igt_subtest_f("pipe-%s-ctm-0-75", kmstest_pipe_name(p)) {
color_t expected_colors[] = {
{ 0.0, }, { 0.0, }, { 0.0, }
@@ -793,6 +799,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
igt_assert(success);
}
+ igt_describe("Check the color transformation for maximum transparency");
igt_subtest_f("pipe-%s-ctm-max", kmstest_pipe_name(p)) {
color_t full_rgb[] = {
{ 1.0, 0.0, 0.0 },
@@ -811,6 +818,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
full_rgb, ctm));
}
+ igt_describe("Check the color transformation for negative transparency");
igt_subtest_f("pipe-%s-ctm-negative", kmstest_pipe_name(p)) {
color_t all_black[] = {
{ 0.0, 0.0, 0.0 },
@@ -829,15 +837,20 @@ run_tests_for_pipe(data_t *data, enum pipe p)
test_pipe_limited_range_ctm(data, primary);
#endif
+ igt_describe("Verify that degamma LUT transformation works correctly");
igt_subtest_f("pipe-%s-degamma", kmstest_pipe_name(p))
test_pipe_degamma(data, primary);
+ igt_describe("Verify that gamma LUT transformation works correctly");
igt_subtest_f("pipe-%s-gamma", kmstest_pipe_name(p))
test_pipe_gamma(data, primary);
+ igt_describe("Verify that legacy gamma LUT transformation works correctly");
igt_subtest_f("pipe-%s-legacy-gamma", kmstest_pipe_name(p))
test_pipe_legacy_gamma(data, primary);
+ igt_describe("Verify that setting the legacy gamma LUT resets the gamma LUT set through "
+ "GAMMA_LUT property");
igt_subtest_f("pipe-%s-legacy-gamma-reset", kmstest_pipe_name(p))
test_pipe_legacy_gamma_reset(data, primary);
@@ -870,12 +883,15 @@ igt_main
igt_subtest_group
run_tests_for_pipe(&data, pipe);
+ igt_describe("Negative check for invalid gamma lut sizes");
igt_subtest_f("pipe-invalid-gamma-lut-sizes")
invalid_gamma_lut_sizes(&data);
+ igt_describe("Negative check for invalid degamma lut sizes");
igt_subtest_f("pipe-invalid-degamma-lut-sizes")
invalid_degamma_lut_sizes(&data);
+ igt_describe("Negative check for color tranformation matrix sizes");
igt_subtest_f("pipe-invalid-ctm-matrix-sizes")
invalid_ctm_matrix_sizes(&data);
diff --git a/tests/kms_dp_dsc.c b/tests/kms_dp_dsc.c
index e2e3aaa0..60ed3855 100644
--- a/tests/kms_dp_dsc.c
+++ b/tests/kms_dp_dsc.c
@@ -271,7 +271,8 @@ igt_main
}
for (test_cnt = 0; test_cnt < ARRAY_SIZE(tests); test_cnt++) {
-
+ igt_describe("Validate display stream compression functionality if supported on "
+ "DP/eDP connector");
igt_subtest_f("basic-dsc-enable-%s",
kmstest_connector_type_str(tests[test_cnt])) {
test_conn_cnt = 0;
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index e0d009d2..64907c2c 100755
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -1667,10 +1667,12 @@ igt_main
}
}
+ igt_describe("Tests that nonblocking reading fails correctly");
igt_subtest("nonblocking-read")
test_nonblocking_read(drm_fd);
for (i = 0; i < sizeof(tests) / sizeof (tests[0]); i++) {
+ igt_describe("Basic test for validating modeset, dpms and pageflips");
igt_subtest_with_dynamic_f("%s%s",
tests[i].flags & TEST_BASIC ? "basic-" : "",
tests[i].name)
@@ -1679,6 +1681,7 @@ igt_main
if (tests[i].flags & TEST_NO_2X_OUTPUT)
continue;
+ igt_describe("Test for validating modeset, dpms and pageflips with a pair of connected displays");
igt_subtest_with_dynamic_f("2x-%s", tests[i].name)
run_pair(tests[i].duration, tests[i].flags);
}
@@ -1705,12 +1708,14 @@ igt_main
if (tests[i].flags & (TEST_EINVAL | TEST_EBUSY | TEST_HANG))
continue;
+ igt_describe("Interrupt test for validating modeset, dpms and pageflips");
igt_subtest_with_dynamic_f("%s-interruptible", tests[i].name)
run_test(tests[i].duration, tests[i].flags);
if (tests[i].flags & TEST_NO_2X_OUTPUT)
continue;
+ igt_describe("Interrupt test for validating modeset, dpms and pageflips with pair of connected displays");
igt_subtest_with_dynamic_f("2x-%s-interruptible", tests[i].name)
run_pair(tests[i].duration, tests[i].flags);
}
diff --git a/tests/kms_flip_tiling.c b/tests/kms_flip_tiling.c
index 7a736fba..09e99580 100644
--- a/tests/kms_flip_tiling.c
+++ b/tests/kms_flip_tiling.c
@@ -173,6 +173,7 @@ igt_main
* generated and compared to the reference one.
*/
+ igt_describe("Check pageflip from tiled buffer to linear one works correctly with x tiling");
igt_subtest_with_dynamic("flip-changes-tiling") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_X_TILED,
LOCAL_DRM_FORMAT_MOD_NONE };
@@ -187,6 +188,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from tiled buffer to linear one works correctly with y tiling");
igt_subtest_with_dynamic("flip-changes-tiling-Y") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Y_TILED,
LOCAL_DRM_FORMAT_MOD_NONE };
@@ -205,7 +207,7 @@ igt_main
}
}
-
+ igt_describe("Check pageflip from tiled buffer to linear one works correctly with yf tiling");
igt_subtest_with_dynamic("flip-changes-tiling-Yf") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Yf_TILED,
LOCAL_DRM_FORMAT_MOD_NONE };
@@ -232,6 +234,7 @@ igt_main
* reference one.
*/
+ igt_describe("Check pageflip from tiled buffer to another tiled one works correctly with x tiling");
igt_subtest_with_dynamic("flip-X-tiled") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_X_TILED,
LOCAL_I915_FORMAT_MOD_X_TILED };
@@ -246,6 +249,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from tiled buffer to another tiled one works correctly with y tiling");
igt_subtest_with_dynamic("flip-Y-tiled") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Y_TILED,
LOCAL_I915_FORMAT_MOD_Y_TILED };
@@ -264,6 +268,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from tiled buffer to another tiled one works correctly with yf tiling");
igt_subtest_with_dynamic("flip-Yf-tiled") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Yf_TILED,
LOCAL_I915_FORMAT_MOD_Yf_TILED };
@@ -290,6 +295,7 @@ igt_main
* reference one.
*/
+ igt_describe("Check pageflip from linear buffer to tiled one works correctly with x tiling");
igt_subtest_with_dynamic("flip-to-X-tiled") {
uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
LOCAL_I915_FORMAT_MOD_X_TILED };
@@ -304,6 +310,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from linear buffer to tiled one works correctly with y tiling");
igt_subtest_with_dynamic("flip-to-Y-tiled") {
uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
LOCAL_I915_FORMAT_MOD_Y_TILED };
@@ -322,6 +329,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from linear buffer to tiled one works correctly with yf tiling");
igt_subtest_with_dynamic("flip-to-Yf-tiled") {
uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
LOCAL_I915_FORMAT_MOD_Yf_TILED };
diff --git a/tests/kms_psr.c b/tests/kms_psr.c
index 4b7513d7..a80abf19 100644
--- a/tests/kms_psr.c
+++ b/tests/kms_psr.c
@@ -480,12 +480,14 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
for (data.op_psr_mode = PSR_MODE_1; data.op_psr_mode <= PSR_MODE_2;
data.op_psr_mode++) {
+ igt_describe("Basic check for psr if it is detecting changes made in planes");
igt_subtest_f("%sbasic", append_subtest_name[data.op_psr_mode]) {
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
test_setup(&data);
test_cleanup(&data);
}
+ igt_describe("Check if psr is detecting changes when drrs is disabled");
igt_subtest_f("%sno_drrs", append_subtest_name[data.op_psr_mode]) {
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
test_setup(&data);
@@ -494,6 +496,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
}
for (op = PAGE_FLIP; op <= RENDER; op++) {
+ igt_describe("Check if psr is detecting page-flipping,memory mapping and "
+ "rendering operations performed on primary planes");
igt_subtest_f("%sprimary_%s",
append_subtest_name[data.op_psr_mode],
op_str(op)) {
@@ -506,6 +510,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
}
for (op = MMAP_GTT; op <= PLANE_ONOFF; op++) {
+ igt_describe("Check if psr is detecting memory mapping,rendering "
+ "and plane operations performed on sprite planes");
igt_subtest_f("%ssprite_%s",
append_subtest_name[data.op_psr_mode],
op_str(op)) {
@@ -516,6 +522,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
test_cleanup(&data);
}
+ igt_describe("Check if psr is detecting memory mapping, rendering "
+ "and plane operations performed on cursor planes");
igt_subtest_f("%scursor_%s",
append_subtest_name[data.op_psr_mode],
op_str(op)) {
@@ -527,6 +535,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
}
}
+ igt_describe("Check if psr is detecting changes when rendering operation is performed"
+ " with dpms enabled or disabled");
igt_subtest_f("%sdpms", append_subtest_name[data.op_psr_mode]) {
data.op = RENDER;
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
@@ -536,6 +546,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
test_cleanup(&data);
}
+ igt_describe("Check if psr is detecting changes when plane operation is performed "
+ "with suspend resume cycles");
igt_subtest_f("%ssuspend", append_subtest_name[data.op_psr_mode]) {
data.op = PLANE_ONOFF;
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
--
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 Added tests description
2021-04-09 17:13 [igt-dev] [PATCH i-g-t] Added tests description Arundhati Hagaragi
@ 2021-04-09 18:04 ` Patchwork
2021-04-09 19:01 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-04-09 18:04 UTC (permalink / raw)
To: Arundhati Hagaragi; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 3425 bytes --]
== Series Details ==
Series: Added tests description
URL : https://patchwork.freedesktop.org/series/88915/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9951 -> IGTPW_5726
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/index.html
Known issues
------------
Here are the changes found in IGTPW_5726 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@sync-compute0:
- fi-kbl-r: NOTRUN -> [SKIP][1] ([fdo#109271]) +21 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/fi-kbl-r/igt@amdgpu/amd_cs_nop@sync-compute0.html
* igt@gem_flink_basic@bad-open:
- fi-tgl-y: [PASS][2] -> [DMESG-WARN][3] ([i915#402])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/fi-tgl-y/igt@gem_flink_basic@bad-open.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/fi-tgl-y/igt@gem_flink_basic@bad-open.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-r: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/fi-kbl-r/igt@gem_huc_copy@huc-copy.html
* igt@kms_chamelium@hdmi-edid-read:
- fi-kbl-r: NOTRUN -> [SKIP][5] ([fdo#109271] / [fdo#111827]) +8 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/fi-kbl-r/igt@kms_chamelium@hdmi-edid-read.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
- fi-kbl-r: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#533])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/fi-kbl-r/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
* igt@runner@aborted:
- fi-bdw-5557u: NOTRUN -> [FAIL][7] ([i915#1602] / [i915#2029])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/fi-bdw-5557u/igt@runner@aborted.html
#### Possible fixes ####
* igt@fbdev@write:
- fi-tgl-y: [DMESG-WARN][8] ([i915#402]) -> [PASS][9] +1 similar issue
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/fi-tgl-y/igt@fbdev@write.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/fi-tgl-y/igt@fbdev@write.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
[i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
Participating hosts (45 -> 39)
------------------------------
Missing (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6063 -> IGTPW_5726
CI-20190529: 20190529
CI_DRM_9951: b8be3c4aea9ea5c0571c934a58869af902ac4dd0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5726: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/index.html
IGT_6063: d3b7f74ce5df6fdea03e490b7c64f0c6bfe76f03 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/index.html
[-- Attachment #1.2: Type: text/html, Size: 4440 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: success for Added tests description
2021-04-09 17:13 [igt-dev] [PATCH i-g-t] Added tests description Arundhati Hagaragi
2021-04-09 18:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-04-09 19:01 ` Patchwork
2021-04-12 2:39 ` [igt-dev] [PATCH i-g-t] " Gupta, Nidhi1
2021-04-12 2:47 ` [igt-dev] ✗ Fi.CI.BUILD: failure for Added tests description (rev2) Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-04-09 19:01 UTC (permalink / raw)
To: Arundhati Hagaragi; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 27796 bytes --]
== Series Details ==
Series: Added tests description
URL : https://patchwork.freedesktop.org/series/88915/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9951_full -> IGTPW_5726_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/index.html
Known issues
------------
Here are the changes found in IGTPW_5726_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_create@create-massive:
- shard-apl: NOTRUN -> [DMESG-WARN][1] ([i915#3002])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl6/igt@gem_create@create-massive.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1099]) +5 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-snb2/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][3] ([i915#3354])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-snb7/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-deadline:
- shard-apl: NOTRUN -> [FAIL][4] ([i915#2846])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl8/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-kbl: [PASS][5] -> [FAIL][6] ([i915#2842]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html
- shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842]) +1 similar issue
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-glk5/igt@gem_exec_fair@basic-none@vcs0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-glk2/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-tglb: [PASS][9] -> [FAIL][10] ([i915#2842])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-tglb8/igt@gem_exec_fair@basic-pace@vecs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_reloc@basic-wide-active@rcs0:
- shard-snb: NOTRUN -> [FAIL][11] ([i915#2389]) +2 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-snb7/igt@gem_exec_reloc@basic-wide-active@rcs0.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-iclb: [PASS][12] -> [FAIL][13] ([i915#307])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-iclb6/igt@gem_mmap_gtt@cpuset-big-copy.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb8/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:
- shard-kbl: NOTRUN -> [SKIP][14] ([fdo#109271]) +56 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl4/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html
* igt@gem_userptr_blits@process-exit-mmap@wb:
- shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#1699]) +7 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl6/igt@gem_userptr_blits@process-exit-mmap@wb.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-tglb: NOTRUN -> [SKIP][16] ([i915#3297])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb3/igt@gem_userptr_blits@readonly-unsync.html
- shard-iclb: NOTRUN -> [SKIP][17] ([i915#3297])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb4/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@set-cache-level:
- shard-snb: NOTRUN -> [FAIL][18] ([i915#3324])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-snb5/igt@gem_userptr_blits@set-cache-level.html
- shard-apl: NOTRUN -> [FAIL][19] ([i915#3324])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl2/igt@gem_userptr_blits@set-cache-level.html
* igt@gen7_exec_parse@basic-rejected:
- shard-tglb: NOTRUN -> [SKIP][20] ([fdo#109289])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb7/igt@gen7_exec_parse@basic-rejected.html
- shard-iclb: NOTRUN -> [SKIP][21] ([fdo#109289])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb1/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271]) +371 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-snb2/igt@gen9_exec_parse@batch-invalid-length.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][23] -> [SKIP][24] ([fdo#109271])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglb: NOTRUN -> [WARN][25] ([i915#2681])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb2/igt@i915_pm_rc6_residency@rc6-fence.html
- shard-iclb: NOTRUN -> [WARN][26] ([i915#1804] / [i915#2684])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb3/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@kms_async_flips@test-time-stamp:
- shard-tglb: [PASS][27] -> [FAIL][28] ([i915#2574])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-tglb6/igt@kms_async_flips@test-time-stamp.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb6/igt@kms_async_flips@test-time-stamp.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][29] ([fdo#110725] / [fdo#111614]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-tglb: NOTRUN -> [SKIP][30] ([fdo#111614]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][31] ([fdo#111615])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb7/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_chamelium@hdmi-edid-change-during-suspend:
- shard-apl: NOTRUN -> [SKIP][32] ([fdo#109271] / [fdo#111827]) +23 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl7/igt@kms_chamelium@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium@vga-hpd-without-ddc:
- shard-snb: NOTRUN -> [SKIP][33] ([fdo#109271] / [fdo#111827]) +21 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-snb5/igt@kms_chamelium@vga-hpd-without-ddc.html
* igt@kms_color_chamelium@pipe-b-degamma:
- shard-kbl: NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) +3 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl3/igt@kms_color_chamelium@pipe-b-degamma.html
- shard-glk: NOTRUN -> [SKIP][35] ([fdo#109271] / [fdo#111827])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-glk7/igt@kms_color_chamelium@pipe-b-degamma.html
- shard-tglb: NOTRUN -> [SKIP][36] ([fdo#109284] / [fdo#111827])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb6/igt@kms_color_chamelium@pipe-b-degamma.html
- shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109284] / [fdo#111827])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb7/igt@kms_color_chamelium@pipe-b-degamma.html
* igt@kms_content_protection@lic:
- shard-apl: NOTRUN -> [TIMEOUT][38] ([i915#1319]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl1/igt@kms_content_protection@lic.html
- shard-kbl: NOTRUN -> [TIMEOUT][39] ([i915#1319])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl6/igt@kms_content_protection@lic.html
* igt@kms_cursor_crc@pipe-a-cursor-256x85-random:
- shard-kbl: NOTRUN -> [FAIL][40] ([i915#54])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-random.html
- shard-apl: NOTRUN -> [FAIL][41] ([i915#54])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl7/igt@kms_cursor_crc@pipe-a-cursor-256x85-random.html
- shard-glk: NOTRUN -> [FAIL][42] ([i915#54])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-glk4/igt@kms_cursor_crc@pipe-a-cursor-256x85-random.html
* igt@kms_cursor_crc@pipe-b-cursor-max-size-offscreen:
- shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271]) +16 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-max-size-offscreen.html
- shard-tglb: NOTRUN -> [SKIP][44] ([i915#3359])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-max-size-offscreen.html
* igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
- shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109279] / [i915#3359])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
- shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109278] / [fdo#109279])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-256x85-onscreen:
- shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109278]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-256x85-onscreen.html
* igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled:
- shard-glk: [PASS][48] -> [FAIL][49] ([i915#52] / [i915#54]) +3 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-glk4/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
- shard-apl: [PASS][50] -> [DMESG-WARN][51] ([i915#180]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
- shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#2672])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:
- shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2642])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
- shard-kbl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#2672])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109280])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
- shard-tglb: NOTRUN -> [SKIP][56] ([fdo#111825])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-apl: NOTRUN -> [FAIL][57] ([i915#265])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl2/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][58] ([fdo#108145] / [i915#265])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-iclb: NOTRUN -> [SKIP][59] ([i915#658])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb5/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4:
- shard-apl: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#658]) +4 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2:
- shard-kbl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#658]) +2 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
* igt@kms_psr2_su@page_flip:
- shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#658]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-glk7/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: [PASS][63] -> [SKIP][64] ([fdo#109441]) +2 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb5/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_psr@psr2_primary_render:
- shard-iclb: NOTRUN -> [SKIP][65] ([fdo#109441])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb8/igt@kms_psr@psr2_primary_render.html
* igt@kms_universal_plane@disable-primary-vs-flip-pipe-b:
- shard-snb: [PASS][66] -> [SKIP][67] ([fdo#109271])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-snb6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-snb2/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html
* igt@kms_vblank@pipe-d-wait-idle:
- shard-kbl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#533]) +1 similar issue
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl4/igt@kms_vblank@pipe-d-wait-idle.html
- shard-apl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#533]) +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl7/igt@kms_vblank@pipe-d-wait-idle.html
* igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
- shard-apl: NOTRUN -> [SKIP][70] ([fdo#109271]) +247 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl7/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html
* igt@perf@polling-parameterized:
- shard-iclb: [PASS][71] -> [FAIL][72] ([i915#1542])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-iclb2/igt@perf@polling-parameterized.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb7/igt@perf@polling-parameterized.html
* igt@prime_udl:
- shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109291])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb5/igt@prime_udl.html
- shard-tglb: NOTRUN -> [SKIP][74] ([fdo#109291])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb7/igt@prime_udl.html
* igt@prime_vgem@fence-write-hang:
- shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109295])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb4/igt@prime_vgem@fence-write-hang.html
- shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109295])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb8/igt@prime_vgem@fence-write-hang.html
* igt@sysfs_clients@create:
- shard-apl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#2994]) +3 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl7/igt@sysfs_clients@create.html
- shard-kbl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2994])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl4/igt@sysfs_clients@create.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglb: [FAIL][79] ([i915#2842]) -> [PASS][80] +1 similar issue
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-tglb1/igt@gem_exec_fair@basic-none-share@rcs0.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-kbl: [FAIL][81] ([i915#2842]) -> [PASS][82] +2 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-iclb: [FAIL][83] ([i915#2842]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs0.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb6/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_workarounds@suspend-resume:
- shard-apl: [DMESG-WARN][85] ([i915#180]) -> [PASS][86] +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-apl8/igt@gem_workarounds@suspend-resume.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl2/igt@gem_workarounds@suspend-resume.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [FAIL][87] ([i915#72]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-tglb: [FAIL][89] ([i915#2346]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-tglb3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_draw_crc@draw-method-rgb565-render-untiled:
- shard-glk: [FAIL][91] ([i915#52] / [i915#54]) -> [PASS][92] +7 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-glk7/igt@kms_draw_crc@draw-method-rgb565-render-untiled.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-render-untiled.html
* igt@kms_flip@flip-vs-suspend@c-dp1:
- shard-kbl: [DMESG-WARN][93] ([i915#180]) -> [PASS][94] +3 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-kbl7/igt@kms_flip@flip-vs-suspend@c-dp1.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl4/igt@kms_flip@flip-vs-suspend@c-dp1.html
* igt@kms_plane_cursor@pipe-d-primary-size-128:
- shard-tglb: [DMESG-WARN][95] -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-tglb5/igt@kms_plane_cursor@pipe-d-primary-size-128.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-tglb3/igt@kms_plane_cursor@pipe-d-primary-size-128.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: [SKIP][97] ([fdo#109441]) -> [PASS][98] +1 similar issue
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
#### Warnings ####
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-iclb: [FAIL][99] ([i915#2842]) -> [FAIL][100] ([i915#2852])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-iclb4/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-glk: [FAIL][101] ([i915#2842]) -> [FAIL][102] ([i915#2851])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-glk6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-glk6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-iclb: [WARN][103] ([i915#2684]) -> [WARN][104] ([i915#2681] / [i915#2684])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
- shard-iclb: [SKIP][105] ([i915#658]) -> [SKIP][106] ([i915#2920]) +2 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-iclb8/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2:
- shard-iclb: [SKIP][107] ([i915#2920]) -> [SKIP][108] ([i915#658])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
* igt@runner@aborted:
- shard-kbl: ([FAIL][109], [FAIL][110], [FAIL][111], [FAIL][112], [FAIL][113]) ([i915#180] / [i915#3002]) -> ([FAIL][114], [FAIL][115]) ([i915#3002])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-kbl7/igt@runner@aborted.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-kbl7/igt@runner@aborted.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-kbl7/igt@runner@aborted.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-kbl7/igt@runner@aborted.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-kbl1/igt@runner@aborted.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl7/igt@runner@aborted.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-kbl3/igt@runner@aborted.html
- shard-apl: ([FAIL][116], [FAIL][117]) ([fdo#109271] / [i915#180]) -> ([FAIL][118], [FAIL][119]) ([i915#180] / [i915#3002])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-apl1/igt@runner@aborted.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9951/shard-apl8/igt@runner@aborted.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl6/igt@runner@aborted.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/shard-apl1/igt@runner@aborted.html
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
[i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
[i915#1699]: https://gitlab.freedesktop.org/drm/intel/issues/1699
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
[i915#2574]: https://gitlab.freedesktop.org/drm/intel/issues/2574
[i915#2642]: https://gitlab.freedesktop.org/drm/intel/issues/2642
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2851]: https://gitlab.freedesktop.org/drm/intel/issues/2851
[i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#307]: https://gitlab.freedesktop.org/drm/intel/issues/307
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3324]: https://gitlab.freedesktop.org/drm/intel/issues/3324
[i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
Participating hosts (12 -> 8)
------------------------------
Missing (4): pig-skl-6260u pig-kbl-iris pig-glk-j5005 pig-icl-1065g7
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6063 -> IGTPW_5726
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_9951: b8be3c4aea9ea5c0571c934a58869af902ac4dd0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5726: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/index.html
IGT_6063: d3b7f74ce5df6fdea03e490b7c64f0c6bfe76f03 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5726/index.html
[-- Attachment #1.2: Type: text/html, Size: 35705 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] Added tests description
2021-04-09 17:13 [igt-dev] [PATCH i-g-t] Added tests description Arundhati Hagaragi
2021-04-09 18:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-04-09 19:01 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2021-04-12 2:39 ` Gupta, Nidhi1
2021-04-12 2:47 ` [igt-dev] ✗ Fi.CI.BUILD: failure for Added tests description (rev2) Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Gupta, Nidhi1 @ 2021-04-12 2:39 UTC (permalink / raw)
To: Hagaragi, Arundhati, igt-dev@lists.freedesktop.org
-----Original Message-----
From: Hagaragi, Arundhati <arundhati.hagaragi@intel.com>
Sent: Friday, April 9, 2021 10:44 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] Added tests description
Added description for following kms tests:
tests/kms_color.c
tests/kms_dp_dsc.c
tests/kms_flip.c
tests/kms_flip_tiling.c
tests/kms_psr.c
Signed-off-by: Arundhati Hagaragi <arundhati.hagaragi@intel.com>
Cc: Gupta, Nidhi1 <nidhi1.gupta@intel.com>
The descriptions looks good to me.
Reviewed-by: Nidhi Gupta
---
tests/kms_color.c | 16 ++++++++++++++++
tests/kms_dp_dsc.c | 3 ++-
tests/kms_flip.c | 5 +++++
tests/kms_flip_tiling.c | 10 +++++++++-
tests/kms_psr.c | 12 ++++++++++++
5 files changed, 44 insertions(+), 2 deletions(-)
diff --git a/tests/kms_color.c b/tests/kms_color.c index b1b91c74..3a42532a 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -687,6 +687,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
data->color_depth = 8;
delta = 1.0 / (1 << data->color_depth);
+ igt_describe("Check the color transformation from red to blue");
igt_subtest_f("pipe-%s-ctm-red-to-blue", kmstest_pipe_name(p)) {
color_t blue_green_blue[] = {
{ 0.0, 0.0, 1.0 },
@@ -700,6 +701,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
blue_green_blue, ctm));
}
+ igt_describe("Check the color transformation from green to red");
igt_subtest_f("pipe-%s-ctm-green-to-red", kmstest_pipe_name(p)) {
color_t red_red_blue[] = {
{ 1.0, 0.0, 0.0 },
@@ -713,6 +715,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
red_red_blue, ctm));
}
+ igt_describe("Check the color transformation from blue to red");
igt_subtest_f("pipe-%s-ctm-blue-to-red", kmstest_pipe_name(p)) {
color_t red_green_red[] = {
{ 1.0, 0.0, 0.0 },
@@ -730,6 +733,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
* the it depends on the hardware we're dealing with, we can
* either get clamped or rounded values and we also need to
* account for odd number of items in the LUTs. */
+ igt_describe("Check the color transformation for 0.25 transparency");
igt_subtest_f("pipe-%s-ctm-0-25", kmstest_pipe_name(p)) {
color_t expected_colors[] = {
{ 0.0, }, { 0.0, }, { 0.0, }
@@ -751,6 +755,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
igt_assert(success);
}
+ igt_describe("Check the color transformation for 0.5 transparency");
igt_subtest_f("pipe-%s-ctm-0-5", kmstest_pipe_name(p)) {
color_t expected_colors[] = {
{ 0.0, }, { 0.0, }, { 0.0, }
@@ -772,6 +777,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
igt_assert(success);
}
+ igt_describe("Check the color transformation for 0.75 transparency");
igt_subtest_f("pipe-%s-ctm-0-75", kmstest_pipe_name(p)) {
color_t expected_colors[] = {
{ 0.0, }, { 0.0, }, { 0.0, }
@@ -793,6 +799,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
igt_assert(success);
}
+ igt_describe("Check the color transformation for maximum
+transparency");
igt_subtest_f("pipe-%s-ctm-max", kmstest_pipe_name(p)) {
color_t full_rgb[] = {
{ 1.0, 0.0, 0.0 },
@@ -811,6 +818,7 @@ run_tests_for_pipe(data_t *data, enum pipe p)
full_rgb, ctm));
}
+ igt_describe("Check the color transformation for negative
+transparency");
igt_subtest_f("pipe-%s-ctm-negative", kmstest_pipe_name(p)) {
color_t all_black[] = {
{ 0.0, 0.0, 0.0 },
@@ -829,15 +837,20 @@ run_tests_for_pipe(data_t *data, enum pipe p)
test_pipe_limited_range_ctm(data, primary); #endif
+ igt_describe("Verify that degamma LUT transformation works
+correctly");
igt_subtest_f("pipe-%s-degamma", kmstest_pipe_name(p))
test_pipe_degamma(data, primary);
+ igt_describe("Verify that gamma LUT transformation works correctly");
igt_subtest_f("pipe-%s-gamma", kmstest_pipe_name(p))
test_pipe_gamma(data, primary);
+ igt_describe("Verify that legacy gamma LUT transformation works
+correctly");
igt_subtest_f("pipe-%s-legacy-gamma", kmstest_pipe_name(p))
test_pipe_legacy_gamma(data, primary);
+ igt_describe("Verify that setting the legacy gamma LUT resets the gamma LUT set through "
+ "GAMMA_LUT property");
igt_subtest_f("pipe-%s-legacy-gamma-reset", kmstest_pipe_name(p))
test_pipe_legacy_gamma_reset(data, primary);
@@ -870,12 +883,15 @@ igt_main
igt_subtest_group
run_tests_for_pipe(&data, pipe);
+ igt_describe("Negative check for invalid gamma lut sizes");
igt_subtest_f("pipe-invalid-gamma-lut-sizes")
invalid_gamma_lut_sizes(&data);
+ igt_describe("Negative check for invalid degamma lut sizes");
igt_subtest_f("pipe-invalid-degamma-lut-sizes")
invalid_degamma_lut_sizes(&data);
+ igt_describe("Negative check for color tranformation matrix sizes");
igt_subtest_f("pipe-invalid-ctm-matrix-sizes")
invalid_ctm_matrix_sizes(&data);
diff --git a/tests/kms_dp_dsc.c b/tests/kms_dp_dsc.c index e2e3aaa0..60ed3855 100644
--- a/tests/kms_dp_dsc.c
+++ b/tests/kms_dp_dsc.c
@@ -271,7 +271,8 @@ igt_main
}
for (test_cnt = 0; test_cnt < ARRAY_SIZE(tests); test_cnt++) {
-
+ igt_describe("Validate display stream compression functionality if supported on "
+ "DP/eDP connector");
igt_subtest_f("basic-dsc-enable-%s",
kmstest_connector_type_str(tests[test_cnt])) {
test_conn_cnt = 0;
diff --git a/tests/kms_flip.c b/tests/kms_flip.c index e0d009d2..64907c2c 100755
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -1667,10 +1667,12 @@ igt_main
}
}
+ igt_describe("Tests that nonblocking reading fails correctly");
igt_subtest("nonblocking-read")
test_nonblocking_read(drm_fd);
for (i = 0; i < sizeof(tests) / sizeof (tests[0]); i++) {
+ igt_describe("Basic test for validating modeset, dpms and
+pageflips");
igt_subtest_with_dynamic_f("%s%s",
tests[i].flags & TEST_BASIC ? "basic-" : "",
tests[i].name)
@@ -1679,6 +1681,7 @@ igt_main
if (tests[i].flags & TEST_NO_2X_OUTPUT)
continue;
+ igt_describe("Test for validating modeset, dpms and pageflips with a
+pair of connected displays");
igt_subtest_with_dynamic_f("2x-%s", tests[i].name)
run_pair(tests[i].duration, tests[i].flags);
}
@@ -1705,12 +1708,14 @@ igt_main
if (tests[i].flags & (TEST_EINVAL | TEST_EBUSY | TEST_HANG))
continue;
+ igt_describe("Interrupt test for validating modeset, dpms and
+pageflips");
igt_subtest_with_dynamic_f("%s-interruptible", tests[i].name)
run_test(tests[i].duration, tests[i].flags);
if (tests[i].flags & TEST_NO_2X_OUTPUT)
continue;
+ igt_describe("Interrupt test for validating modeset, dpms and
+pageflips with pair of connected displays");
igt_subtest_with_dynamic_f("2x-%s-interruptible", tests[i].name)
run_pair(tests[i].duration, tests[i].flags);
}
diff --git a/tests/kms_flip_tiling.c b/tests/kms_flip_tiling.c index 7a736fba..09e99580 100644
--- a/tests/kms_flip_tiling.c
+++ b/tests/kms_flip_tiling.c
@@ -173,6 +173,7 @@ igt_main
* generated and compared to the reference one.
*/
+ igt_describe("Check pageflip from tiled buffer to linear one works
+correctly with x tiling");
igt_subtest_with_dynamic("flip-changes-tiling") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_X_TILED,
LOCAL_DRM_FORMAT_MOD_NONE }; @@ -187,6 +188,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from tiled buffer to linear one works
+correctly with y tiling");
igt_subtest_with_dynamic("flip-changes-tiling-Y") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Y_TILED,
LOCAL_DRM_FORMAT_MOD_NONE }; @@ -205,7 +207,7 @@ igt_main
}
}
-
+ igt_describe("Check pageflip from tiled buffer to linear one works
+correctly with yf tiling");
igt_subtest_with_dynamic("flip-changes-tiling-Yf") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Yf_TILED,
LOCAL_DRM_FORMAT_MOD_NONE }; @@ -232,6 +234,7 @@ igt_main
* reference one.
*/
+ igt_describe("Check pageflip from tiled buffer to another tiled one
+works correctly with x tiling");
igt_subtest_with_dynamic("flip-X-tiled") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_X_TILED,
LOCAL_I915_FORMAT_MOD_X_TILED }; @@ -246,6 +249,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from tiled buffer to another tiled one
+works correctly with y tiling");
igt_subtest_with_dynamic("flip-Y-tiled") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Y_TILED,
LOCAL_I915_FORMAT_MOD_Y_TILED }; @@ -264,6 +268,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from tiled buffer to another tiled one
+works correctly with yf tiling");
igt_subtest_with_dynamic("flip-Yf-tiled") {
uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Yf_TILED,
LOCAL_I915_FORMAT_MOD_Yf_TILED }; @@ -290,6 +295,7 @@ igt_main
* reference one.
*/
+ igt_describe("Check pageflip from linear buffer to tiled one works
+correctly with x tiling");
igt_subtest_with_dynamic("flip-to-X-tiled") {
uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
LOCAL_I915_FORMAT_MOD_X_TILED }; @@ -304,6 +310,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from linear buffer to tiled one works
+correctly with y tiling");
igt_subtest_with_dynamic("flip-to-Y-tiled") {
uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
LOCAL_I915_FORMAT_MOD_Y_TILED }; @@ -322,6 +329,7 @@ igt_main
}
}
+ igt_describe("Check pageflip from linear buffer to tiled one works
+correctly with yf tiling");
igt_subtest_with_dynamic("flip-to-Yf-tiled") {
uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
LOCAL_I915_FORMAT_MOD_Yf_TILED }; diff --git a/tests/kms_psr.c b/tests/kms_psr.c index 4b7513d7..a80abf19 100644
--- a/tests/kms_psr.c
+++ b/tests/kms_psr.c
@@ -480,12 +480,14 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
for (data.op_psr_mode = PSR_MODE_1; data.op_psr_mode <= PSR_MODE_2;
data.op_psr_mode++) {
+ igt_describe("Basic check for psr if it is detecting changes made in
+planes");
igt_subtest_f("%sbasic", append_subtest_name[data.op_psr_mode]) {
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
test_setup(&data);
test_cleanup(&data);
}
+ igt_describe("Check if psr is detecting changes when drrs is
+disabled");
igt_subtest_f("%sno_drrs", append_subtest_name[data.op_psr_mode]) {
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
test_setup(&data);
@@ -494,6 +496,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
}
for (op = PAGE_FLIP; op <= RENDER; op++) {
+ igt_describe("Check if psr is detecting page-flipping,memory mapping and "
+ "rendering operations performed on primary planes");
igt_subtest_f("%sprimary_%s",
append_subtest_name[data.op_psr_mode],
op_str(op)) {
@@ -506,6 +510,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
}
for (op = MMAP_GTT; op <= PLANE_ONOFF; op++) {
+ igt_describe("Check if psr is detecting memory mapping,rendering "
+ "and plane operations performed on sprite planes");
igt_subtest_f("%ssprite_%s",
append_subtest_name[data.op_psr_mode],
op_str(op)) {
@@ -516,6 +522,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
test_cleanup(&data);
}
+ igt_describe("Check if psr is detecting memory mapping, rendering "
+ "and plane operations performed on cursor planes");
igt_subtest_f("%scursor_%s",
append_subtest_name[data.op_psr_mode],
op_str(op)) {
@@ -527,6 +535,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
}
}
+ igt_describe("Check if psr is detecting changes when rendering operation is performed"
+ " with dpms enabled or disabled");
igt_subtest_f("%sdpms", append_subtest_name[data.op_psr_mode]) {
data.op = RENDER;
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY; @@ -536,6 +546,8 @@ igt_main_args("", long_options, help_str, opt_handler, &data)
test_cleanup(&data);
}
+ igt_describe("Check if psr is detecting changes when plane operation is performed "
+ "with suspend resume cycles");
igt_subtest_f("%ssuspend", append_subtest_name[data.op_psr_mode]) {
data.op = PLANE_ONOFF;
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
--
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 Added tests description (rev2)
2021-04-09 17:13 [igt-dev] [PATCH i-g-t] Added tests description Arundhati Hagaragi
` (2 preceding siblings ...)
2021-04-12 2:39 ` [igt-dev] [PATCH i-g-t] " Gupta, Nidhi1
@ 2021-04-12 2:47 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-04-12 2:47 UTC (permalink / raw)
To: Gupta, Nidhi1; +Cc: igt-dev
== Series Details ==
Series: Added tests description (rev2)
URL : https://patchwork.freedesktop.org/series/88915/
State : failure
== Summary ==
Applying: Added tests description
Patch failed at 0001 Added tests 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-04-12 2:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-09 17:13 [igt-dev] [PATCH i-g-t] Added tests description Arundhati Hagaragi
2021-04-09 18:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-04-09 19:01 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2021-04-12 2:39 ` [igt-dev] [PATCH i-g-t] " Gupta, Nidhi1
2021-04-12 2:47 ` [igt-dev] ✗ Fi.CI.BUILD: failure for Added tests description (rev2) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox