* [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition
@ 2022-08-31 10:11 Melissa Wen
2022-08-31 11:03 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 13+ messages in thread
From: Melissa Wen @ 2022-08-31 10:11 UTC (permalink / raw)
To: igt-dev; +Cc: petri.latvala
In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by
ret = !igt_skip_crc_compare || igt_check_crc_equal()
and then igt_assert(ret)
where igt_check_crc_equal returns !mismatch, and therefore we can
translate as:
ret = !igt_skip_crc_compare || !mismatch
However, the original igt_assert_crc_equal() assertion does:
igt_assert(!mismatch || igt_skip_crc_compare)
That means, the replacement changes the original assertion. Moreover,
negating `igt_skip_crc_compare` makes the test assertion to be always
true (sucessful) by default and reverses the logic of
--skip-crc-compare.
Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic")
Signed-off-by: Melissa Wen <mwen@igalia.com>
---
tests/kms_color.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/kms_color.c b/tests/kms_color.c
index c202547e..ab285af8 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -99,7 +99,7 @@ static bool test_pipe_degamma(data_t *data,
* Verify that the CRC of the software computed output is
* equal to the CRC of the degamma LUT transformation output.
*/
- ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors);
+ ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors);
disable_degamma(primary->pipe);
igt_plane_set_fb(primary, NULL);
@@ -188,7 +188,7 @@ static bool test_pipe_gamma(data_t *data,
* Verify that the CRC of the software computed output is
* equal to the CRC of the gamma LUT transformation output.
*/
- ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors);
+ ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors);
disable_gamma(primary->pipe);
igt_plane_set_fb(primary, NULL);
@@ -289,7 +289,7 @@ static bool test_pipe_legacy_gamma(data_t *data,
* Verify that the CRC of the software computed output is
* equal to the CRC of the gamma LUT transformation output.
*/
- ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors);
+ ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors);
/* Reset output. */
for (i = 1; i < legacy_lut_size; i++)
@@ -534,7 +534,7 @@ static bool test_pipe_ctm(data_t *data,
* Verify that the CRC of the software computed output is
* equal to the CRC of the CTM matrix transformation output.
*/
- ret &= !igt_skip_crc_compare || igt_check_crc_equal(&crc_software, &crc_hardware);
+ ret &= igt_skip_crc_compare || igt_check_crc_equal(&crc_software, &crc_hardware);
igt_plane_set_fb(primary, NULL);
igt_output_set_pipe(output, PIPE_NONE);
--
2.35.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_color: fix crc assert condition 2022-08-31 10:11 [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition Melissa Wen @ 2022-08-31 11:03 ` Patchwork 2022-08-31 17:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-09-01 9:15 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash 2 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2022-08-31 11:03 UTC (permalink / raw) To: Melissa Wen; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11511 bytes --] == Series Details == Series: tests/kms_color: fix crc assert condition URL : https://patchwork.freedesktop.org/series/107964/ State : success == Summary == CI Bug Log - changes from CI_DRM_12052 -> IGTPW_7707 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/index.html Participating hosts (37 -> 36) ------------------------------ Additional (2): bat-dg2-8 bat-dg1-5 Missing (3): fi-ctg-p8600 bat-rpls-2 fi-hsw-4200u Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7707: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_suspend@basic-s2idle-without-i915: - {bat-adln-1}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/bat-adln-1/igt@i915_suspend@basic-s2idle-without-i915.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-adln-1/igt@i915_suspend@basic-s2idle-without-i915.html Known issues ------------ Here are the changes found in IGTPW_7707 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@read: - bat-dg1-5: NOTRUN -> [SKIP][3] ([i915#2582]) +4 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@fbdev@read.html * igt@gem_mmap@basic: - bat-dg1-5: NOTRUN -> [SKIP][4] ([i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@gem_mmap@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-5: NOTRUN -> [SKIP][5] ([i915#4077]) +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-5: NOTRUN -> [SKIP][6] ([i915#4079]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - bat-dg1-5: NOTRUN -> [SKIP][7] ([i915#1155]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rps@basic-api: - bat-dg1-5: NOTRUN -> [SKIP][8] ([i915#6621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [PASS][9] -> [INCOMPLETE][10] ([i915#4785]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html - bat-dg1-5: NOTRUN -> [DMESG-FAIL][11] ([i915#4494] / [i915#4957]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-dg1-5: NOTRUN -> [INCOMPLETE][12] ([i915#6011]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][13] ([i915#4212]) +7 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][14] ([i915#4215]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_busy@basic: - bat-dg1-5: NOTRUN -> [SKIP][15] ([i915#1845] / [i915#4303]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@kms_busy@basic.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-cfl-8109u: NOTRUN -> [SKIP][16] ([fdo#109271] / [fdo#111827]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/fi-cfl-8109u/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@hdmi-hpd-fast: - bat-dg1-5: NOTRUN -> [SKIP][17] ([fdo#111827]) +7 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg1-5: NOTRUN -> [SKIP][18] ([fdo#109285]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-dg1-5: NOTRUN -> [SKIP][19] ([i915#4078]) +13 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_psr@sprite_plane_onoff: - bat-dg1-5: NOTRUN -> [SKIP][20] ([i915#1072] / [i915#4078]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-5: NOTRUN -> [SKIP][21] ([i915#3555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg1-5: NOTRUN -> [SKIP][22] ([i915#1845] / [i915#3708]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - bat-dg1-5: NOTRUN -> [SKIP][23] ([i915#3708]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-dg1-5: NOTRUN -> [SKIP][24] ([i915#3708] / [i915#4077]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-userptr: - bat-dg1-5: NOTRUN -> [SKIP][25] ([i915#3708] / [i915#4873]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-hsw-4770: NOTRUN -> [FAIL][26] ([fdo#109271] / [i915#4312] / [i915#5594] / [i915#6246]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/fi-hsw-4770/igt@runner@aborted.html - bat-dg1-5: NOTRUN -> [FAIL][27] ([i915#4312] / [i915#5257]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-dg1-5/igt@runner@aborted.html - fi-bdw-5557u: NOTRUN -> [FAIL][28] ([i915#4312]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/fi-bdw-5557u/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3@smem: - {bat-rplp-1}: [DMESG-WARN][29] ([i915#2867]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/bat-rplp-1/igt@gem_exec_suspend@basic-s3@smem.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/bat-rplp-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@mman: - fi-rkl-guc: [INCOMPLETE][31] ([i915#6637]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/fi-rkl-guc/igt@i915_selftest@live@mman.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/fi-rkl-guc/igt@i915_selftest@live@mman.html * igt@kms_frontbuffer_tracking@basic: - fi-cfl-8109u: [DMESG-FAIL][33] ([i915#62]) -> [PASS][34] +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/fi-cfl-8109u/igt@kms_frontbuffer_tracking@basic.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/fi-cfl-8109u/igt@kms_frontbuffer_tracking@basic.html * igt@prime_vgem@basic-fence-flip: - fi-cfl-8109u: [DMESG-WARN][35] ([i915#62]) -> [PASS][36] +10 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/fi-cfl-8109u/igt@prime_vgem@basic-fence-flip.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/fi-cfl-8109u/igt@prime_vgem@basic-fence-flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4303]: https://gitlab.freedesktop.org/drm/intel/issues/4303 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594 [i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 [i915#6246]: https://gitlab.freedesktop.org/drm/intel/issues/6246 [i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257 [i915#6380]: https://gitlab.freedesktop.org/drm/intel/issues/6380 [i915#6580]: https://gitlab.freedesktop.org/drm/intel/issues/6580 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6637]: https://gitlab.freedesktop.org/drm/intel/issues/6637 [i915#6670]: https://gitlab.freedesktop.org/drm/intel/issues/6670 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6638 -> IGTPW_7707 CI-20190529: 20190529 CI_DRM_12052: 26d0accb27eaa4bd9bde598521a4e72d6a0f006e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7707: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/index.html IGT_6638: 9338ab3ec085292817ab1e74d1f2fb90b6a98332 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/index.html [-- Attachment #2: Type: text/html, Size: 12896 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_color: fix crc assert condition 2022-08-31 10:11 [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition Melissa Wen 2022-08-31 11:03 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2022-08-31 17:36 ` Patchwork 2022-09-01 9:15 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash 2 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2022-08-31 17:36 UTC (permalink / raw) To: Melissa Wen; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 42472 bytes --] == Series Details == Series: tests/kms_color: fix crc assert condition URL : https://patchwork.freedesktop.org/series/107964/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12052_full -> IGTPW_7707_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_7707_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7707_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_7707/index.html Participating hosts (13 -> 9) ------------------------------ Missing (4): pig-skl-6260u pig-kbl-iris shard-rkl pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7707_full: ### IGT changes ### #### Possible regressions #### * igt@kms_color@ctm-0-25@pipe-b-dp-1: - shard-apl: [PASS][1] -> [FAIL][2] +5 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-apl3/igt@kms_color@ctm-0-25@pipe-b-dp-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl3/igt@kms_color@ctm-0-25@pipe-b-dp-1.html * igt@kms_color@ctm-0-25@pipe-b-hdmi-a-2: - shard-glk: [PASS][3] -> [FAIL][4] +5 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-glk6/igt@kms_color@ctm-0-25@pipe-b-hdmi-a-2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk9/igt@kms_color@ctm-0-25@pipe-b-hdmi-a-2.html * igt@kms_color@ctm-0-25@pipe-c-edp-1: - shard-tglb: [PASS][5] -> [FAIL][6] +7 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglb5/igt@kms_color@ctm-0-25@pipe-c-edp-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb5/igt@kms_color@ctm-0-25@pipe-c-edp-1.html * igt@kms_color@ctm-0-75@pipe-a-edp-1: - shard-iclb: [PASS][7] -> [FAIL][8] +5 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb5/igt@kms_color@ctm-0-75@pipe-a-edp-1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb5/igt@kms_color@ctm-0-75@pipe-a-edp-1.html * igt@kms_color@ctm-0-75@pipe-b-dp-1: - shard-kbl: [PASS][9] -> [FAIL][10] +5 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-kbl7/igt@kms_color@ctm-0-75@pipe-b-dp-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl7/igt@kms_color@ctm-0-75@pipe-b-dp-1.html * igt@kms_vblank@pipe-b-wait-forked-busy-hang: - shard-tglb: [PASS][11] -> [INCOMPLETE][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglb5/igt@kms_vblank@pipe-b-wait-forked-busy-hang.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb6/igt@kms_vblank@pipe-b-wait-forked-busy-hang.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_color@ctm-0-25@pipe-b-hdmi-a-1: - {shard-tglu}: [PASS][13] -> [FAIL][14] +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglu-4/igt@kms_color@ctm-0-25@pipe-b-hdmi-a-1.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglu-1/igt@kms_color@ctm-0-25@pipe-b-hdmi-a-1.html Known issues ------------ Here are the changes found in IGTPW_7707_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_eio@in-flight-contexts-immediate: - shard-tglb: [PASS][15] -> [TIMEOUT][16] ([i915#3063]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb5/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@kms: - shard-tglb: [PASS][17] -> [FAIL][18] ([i915#5784]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglb7/igt@gem_eio@kms.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb3/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-bb-first: - shard-iclb: [PASS][19] -> [SKIP][20] ([i915#4525]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb5/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][21] -> [FAIL][22] ([i915#2846]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-glk2/igt@gem_exec_fair@basic-deadline.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][23] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html - shard-iclb: NOTRUN -> [FAIL][24] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][25] -> [FAIL][26] ([i915#2842]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-apl8/igt@gem_exec_fair@basic-none-solo@rcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-kbl: [PASS][27] -> [FAIL][28] ([i915#2842]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-kbl7/igt@gem_exec_fair@basic-none@vcs1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl1/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-iclb: [PASS][29] -> [FAIL][30] ([i915#2842]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb3/igt@gem_exec_fair@basic-pace@bcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb6/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#2842]) +4 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk9/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-apl: NOTRUN -> [DMESG-WARN][33] ([i915#62]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl8/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_lmem_swapping@parallel-multi: - shard-apl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#4613]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl6/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-iclb: NOTRUN -> [SKIP][35] ([i915#4613]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb3/igt@gem_lmem_swapping@parallel-random-engines.html - shard-kbl: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#4613]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl1/igt@gem_lmem_swapping@parallel-random-engines.html - shard-tglb: NOTRUN -> [SKIP][37] ([i915#4613]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb3/igt@gem_lmem_swapping@parallel-random-engines.html - shard-glk: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#4613]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#4270]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb7/igt@gem_pxp@fail-invalid-protected-context.html - shard-iclb: NOTRUN -> [SKIP][40] ([i915#4270]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb6/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-iclb: NOTRUN -> [SKIP][41] ([i915#768]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb8/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gen9_exec_parse@allowed-single: - shard-kbl: [PASS][42] -> [DMESG-WARN][43] ([i915#5566] / [i915#716]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-kbl7/igt@gen9_exec_parse@allowed-single.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl4/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-cmd: - shard-apl: [PASS][44] -> [DMESG-WARN][45] ([i915#62]) +6 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-apl2/igt@gen9_exec_parse@bb-start-cmd.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl8/igt@gen9_exec_parse@bb-start-cmd.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][46] -> [SKIP][47] ([fdo#109271]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-apl6/igt@i915_pm_dc@dc9-dpms.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-iclb: NOTRUN -> [SKIP][48] ([i915#5286]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb8/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html - shard-tglb: NOTRUN -> [SKIP][49] ([i915#5286]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271]) +66 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#110725] / [fdo#111614]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html - shard-tglb: NOTRUN -> [SKIP][52] ([fdo#111614]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][53] ([fdo#109271]) +43 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#6095]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb7/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][55] ([fdo#109271]) +71 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-snb4/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs.html - shard-tglb: NOTRUN -> [SKIP][56] ([i915#3689]) +3 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#3689] / [i915#6095]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb5/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][58] ([fdo#111615] / [i915#3689]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb7/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109278]) +6 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb3/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_chamelium@common-hpd-after-suspend: - shard-apl: NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +3 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl2/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-edid-read: - shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +2 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk8/igt@kms_chamelium@dp-edid-read.html - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109284] / [fdo#111827]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb8/igt@kms_chamelium@dp-edid-read.html * igt@kms_chamelium@hdmi-mode-timings: - shard-kbl: NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl7/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_chamelium@vga-hpd-without-ddc: - shard-snb: NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +2 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-snb4/igt@kms_chamelium@vga-hpd-without-ddc.html - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109284] / [fdo#111827]) +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb5/igt@kms_chamelium@vga-hpd-without-ddc.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-tglb: NOTRUN -> [SKIP][66] ([fdo#109274] / [fdo#111825]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursor-vs-flip@varying-size: - shard-iclb: [PASS][67] -> [FAIL][68] ([i915#5072]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb8/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled: - shard-iclb: NOTRUN -> [SKIP][69] ([i915#5287]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb5/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled.html - shard-tglb: NOTRUN -> [SKIP][70] ([i915#5287]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][71] -> [FAIL][72] ([i915#79]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html - shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109274]) +3 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][75] -> [DMESG-WARN][76] ([i915#180]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-apl7/igt@kms_flip@flip-vs-suspend@c-dp1.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1: - shard-glk: [PASS][77] -> [FAIL][78] ([i915#2122]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-glk8/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk1/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglb: NOTRUN -> [SKIP][79] ([i915#2672]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][80] ([i915#2672] / [i915#3555]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][81] ([i915#3555]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][82] ([i915#2672]) +5 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][83] ([i915#6497]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-iclb: NOTRUN -> [SKIP][84] ([fdo#109280]) +8 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: - shard-tglb: NOTRUN -> [SKIP][85] ([fdo#109280] / [fdo#111825]) +8 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-iclb: NOTRUN -> [SKIP][86] ([i915#1839]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglb: NOTRUN -> [SKIP][87] ([i915#1839]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-kbl: [PASS][88] -> [INCOMPLETE][89] ([i915#6520] / [i915#6598]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][90] ([fdo#108145] / [i915#265]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk1/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html - shard-kbl: NOTRUN -> [FAIL][91] ([fdo#108145] / [i915#265]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html - shard-apl: NOTRUN -> [FAIL][92] ([fdo#108145] / [i915#265]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl1/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html * igt@kms_plane_multiple@atomic-pipe-c-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][93] ([fdo#111615]) +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb5/igt@kms_plane_multiple@atomic-pipe-c-tiling-yf.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-iclb: [PASS][94] -> [SKIP][95] ([i915#5176]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#658]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [PASS][97] -> [SKIP][98] ([fdo#109441]) +4 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb6/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][99] -> [SKIP][100] ([i915#5519]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#2437]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl8/igt@kms_writeback@writeback-invalid-parameters.html - shard-tglb: NOTRUN -> [SKIP][102] ([i915#2437]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb2/igt@kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2437]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk3/igt@kms_writeback@writeback-invalid-parameters.html - shard-iclb: NOTRUN -> [SKIP][104] ([i915#2437]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb1/igt@kms_writeback@writeback-invalid-parameters.html - shard-kbl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2437]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@per-context-mode-unprivileged: - shard-tglb: NOTRUN -> [SKIP][106] ([fdo#109289]) +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb6/igt@perf@per-context-mode-unprivileged.html - shard-iclb: NOTRUN -> [SKIP][107] ([fdo#109289]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb5/igt@perf@per-context-mode-unprivileged.html * igt@prime_nv_pcopy@test3_2: - shard-glk: NOTRUN -> [SKIP][108] ([fdo#109271]) +60 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk7/igt@prime_nv_pcopy@test3_2.html - shard-iclb: NOTRUN -> [SKIP][109] ([fdo#109291]) +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb2/igt@prime_nv_pcopy@test3_2.html * igt@sysfs_clients@fair-7: - shard-kbl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#2994]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl4/igt@sysfs_clients@fair-7.html - shard-tglb: NOTRUN -> [SKIP][111] ([i915#2994]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb3/igt@sysfs_clients@fair-7.html - shard-iclb: NOTRUN -> [SKIP][112] ([i915#2994]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb8/igt@sysfs_clients@fair-7.html * igt@sysfs_clients@sema-25: - shard-apl: NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#2994]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl1/igt@sysfs_clients@sema-25.html * igt@sysfs_clients@sema-50: - shard-glk: NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#2994]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk1/igt@sysfs_clients@sema-50.html #### Possible fixes #### * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [FAIL][115] ([i915#2842]) -> [PASS][116] +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][117] ([i915#2842]) -> [PASS][118] +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html - {shard-tglu}: [FAIL][119] ([i915#2842]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][121] ([i915#2842]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][123] ([i915#2190]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglb6/igt@gem_huc_copy@huc-copy.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb3/igt@gem_huc_copy@huc-copy.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [DMESG-WARN][125] ([i915#5566] / [i915#716]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-glk8/igt@gen9_exec_parse@allowed-all.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk1/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [SKIP][127] ([i915#4281]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb6/igt@i915_pm_dc@dc9-dpms.html - {shard-tglu}: [SKIP][129] ([i915#4281]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglu-1/igt@i915_pm_dc@dc9-dpms.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglu-4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_suspend@debugfs-reader: - shard-apl: [DMESG-WARN][131] ([i915#180]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-apl8/igt@i915_suspend@debugfs-reader.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-apl6/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [FAIL][133] ([i915#2346]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_hdr@bpc-switch@pipe-a-dp-1: - shard-kbl: [FAIL][135] ([i915#1188]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-kbl1/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl1/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: - shard-iclb: [SKIP][137] ([i915#5235]) -> [PASS][138] +2 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-iclb: [SKIP][139] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb1/igt@kms_psr2_su@page_flip-xrgb8888.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_primary_blt: - shard-iclb: [SKIP][141] ([fdo#109441]) -> [PASS][142] +1 similar issue [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb8/igt@kms_psr@psr2_primary_blt.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb2/igt@kms_psr@psr2_primary_blt.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - {shard-dg1}: [FAIL][143] ([i915#5234]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-iclb: [FAIL][145] ([i915#2684]) -> [WARN][146] ([i915#2684]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@kms_content_protection@mei_interface: - shard-tglb: [SKIP][147] ([fdo#109300]) -> [SKIP][148] ([i915#1063]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-tglb3/igt@kms_content_protection@mei_interface.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-tglb7/igt@kms_content_protection@mei_interface.html - shard-iclb: [SKIP][149] ([fdo#109300]) -> [SKIP][150] ([fdo#109300] / [fdo#111066]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb7/igt@kms_content_protection@mei_interface.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb7/igt@kms_content_protection@mei_interface.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-iclb: [SKIP][151] ([i915#2920]) -> [SKIP][152] ([fdo#111068] / [i915#658]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb6/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-iclb: [SKIP][153] ([fdo#111068] / [i915#658]) -> [SKIP][154] ([i915#2920]) +1 similar issue [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-iclb1/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@runner@aborted: - shard-kbl: ([FAIL][155], [FAIL][156]) ([i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][157], [FAIL][158]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#716]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-kbl4/igt@runner@aborted.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12052/shard-kbl7/igt@runner@aborted.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl4/igt@runner@aborted.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/shard-kbl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [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#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#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#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 [i915#5072]: https://gitlab.freedesktop.org/drm/intel/issues/5072 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6520]: https://gitlab.freedesktop.org/drm/intel/issues/6520 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6638 -> IGTPW_7707 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12052: 26d0accb27eaa4bd9bde598521a4e72d6a0f006e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7707: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/index.html IGT_6638: 9338ab3ec085292817ab1e74d1f2fb90b6a98332 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7707/index.html [-- Attachment #2: Type: text/html, Size: 47640 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-08-31 10:11 [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition Melissa Wen 2022-08-31 11:03 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-08-31 17:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-09-01 9:15 ` Modem, Bhanuprakash 2022-09-19 15:54 ` Melissa Wen 2 siblings, 1 reply; 13+ messages in thread From: Modem, Bhanuprakash @ 2022-09-01 9:15 UTC (permalink / raw) To: Melissa Wen, igt-dev; +Cc: petri.latvala On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: > In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by > > ret = !igt_skip_crc_compare || igt_check_crc_equal() > and then igt_assert(ret) > > where igt_check_crc_equal returns !mismatch, and therefore we can > translate as: > > ret = !igt_skip_crc_compare || !mismatch > > However, the original igt_assert_crc_equal() assertion does: > > igt_assert(!mismatch || igt_skip_crc_compare) > > That means, the replacement changes the original assertion. Moreover, > negating `igt_skip_crc_compare` makes the test assertion to be always > true (sucessful) by default and reverses the logic of > --skip-crc-compare. > > Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") > Signed-off-by: Melissa Wen <mwen@igalia.com> LGTM Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> - Bhanu > --- > tests/kms_color.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/tests/kms_color.c b/tests/kms_color.c > index c202547e..ab285af8 100644 > --- a/tests/kms_color.c > +++ b/tests/kms_color.c > @@ -99,7 +99,7 @@ static bool test_pipe_degamma(data_t *data, > * Verify that the CRC of the software computed output is > * equal to the CRC of the degamma LUT transformation output. > */ > - ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > > disable_degamma(primary->pipe); > igt_plane_set_fb(primary, NULL); > @@ -188,7 +188,7 @@ static bool test_pipe_gamma(data_t *data, > * Verify that the CRC of the software computed output is > * equal to the CRC of the gamma LUT transformation output. > */ > - ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > > disable_gamma(primary->pipe); > igt_plane_set_fb(primary, NULL); > @@ -289,7 +289,7 @@ static bool test_pipe_legacy_gamma(data_t *data, > * Verify that the CRC of the software computed output is > * equal to the CRC of the gamma LUT transformation output. > */ > - ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > > /* Reset output. */ > for (i = 1; i < legacy_lut_size; i++) > @@ -534,7 +534,7 @@ static bool test_pipe_ctm(data_t *data, > * Verify that the CRC of the software computed output is > * equal to the CRC of the CTM matrix transformation output. > */ > - ret &= !igt_skip_crc_compare || igt_check_crc_equal(&crc_software, &crc_hardware); > + ret &= igt_skip_crc_compare || igt_check_crc_equal(&crc_software, &crc_hardware); > > igt_plane_set_fb(primary, NULL); > igt_output_set_pipe(output, PIPE_NONE); ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-09-01 9:15 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash @ 2022-09-19 15:54 ` Melissa Wen 2022-09-20 10:02 ` Modem, Bhanuprakash 0 siblings, 1 reply; 13+ messages in thread From: Melissa Wen @ 2022-09-19 15:54 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: igt-dev, petri.latvala [-- Attachment #1.1: Type: text/plain, Size: 3289 bytes --] On 09/01, Modem, Bhanuprakash wrote: > On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: > > In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by > > > > ret = !igt_skip_crc_compare || igt_check_crc_equal() > > and then igt_assert(ret) > > > > where igt_check_crc_equal returns !mismatch, and therefore we can > > translate as: > > > > ret = !igt_skip_crc_compare || !mismatch > > > > However, the original igt_assert_crc_equal() assertion does: > > > > igt_assert(!mismatch || igt_skip_crc_compare) > > > > That means, the replacement changes the original assertion. Moreover, > > negating `igt_skip_crc_compare` makes the test assertion to be always > > true (sucessful) by default and reverses the logic of > > --skip-crc-compare. > > > > Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") > > Signed-off-by: Melissa Wen <mwen@igalia.com> > > LGTM > Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > - Bhanu Thanks for reviewing, Bhanu. Siqueira, Is it okay from AMD side? If so, can you apply it? BR, Melissa > > > --- > > tests/kms_color.c | 8 ++++---- > > 1 file changed, 4 insertions(+), 4 deletions(-) > > > > diff --git a/tests/kms_color.c b/tests/kms_color.c > > index c202547e..ab285af8 100644 > > --- a/tests/kms_color.c > > +++ b/tests/kms_color.c > > @@ -99,7 +99,7 @@ static bool test_pipe_degamma(data_t *data, > > * Verify that the CRC of the software computed output is > > * equal to the CRC of the degamma LUT transformation output. > > */ > > - ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > > + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > > disable_degamma(primary->pipe); > > igt_plane_set_fb(primary, NULL); > > @@ -188,7 +188,7 @@ static bool test_pipe_gamma(data_t *data, > > * Verify that the CRC of the software computed output is > > * equal to the CRC of the gamma LUT transformation output. > > */ > > - ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > > + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > > disable_gamma(primary->pipe); > > igt_plane_set_fb(primary, NULL); > > @@ -289,7 +289,7 @@ static bool test_pipe_legacy_gamma(data_t *data, > > * Verify that the CRC of the software computed output is > > * equal to the CRC of the gamma LUT transformation output. > > */ > > - ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > > + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); > > /* Reset output. */ > > for (i = 1; i < legacy_lut_size; i++) > > @@ -534,7 +534,7 @@ static bool test_pipe_ctm(data_t *data, > > * Verify that the CRC of the software computed output is > > * equal to the CRC of the CTM matrix transformation output. > > */ > > - ret &= !igt_skip_crc_compare || igt_check_crc_equal(&crc_software, &crc_hardware); > > + ret &= igt_skip_crc_compare || igt_check_crc_equal(&crc_software, &crc_hardware); > > igt_plane_set_fb(primary, NULL); > > igt_output_set_pipe(output, PIPE_NONE); > [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-09-19 15:54 ` Melissa Wen @ 2022-09-20 10:02 ` Modem, Bhanuprakash 2022-09-21 7:47 ` Ville Syrjälä 0 siblings, 1 reply; 13+ messages in thread From: Modem, Bhanuprakash @ 2022-09-20 10:02 UTC (permalink / raw) To: Melissa Wen; +Cc: igt-dev, petri.latvala On Mon-19-09-2022 09:24 pm, Melissa Wen wrote: > On 09/01, Modem, Bhanuprakash wrote: >> On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: >>> In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by >>> >>> ret = !igt_skip_crc_compare || igt_check_crc_equal() >>> and then igt_assert(ret) >>> >>> where igt_check_crc_equal returns !mismatch, and therefore we can >>> translate as: >>> >>> ret = !igt_skip_crc_compare || !mismatch >>> >>> However, the original igt_assert_crc_equal() assertion does: >>> >>> igt_assert(!mismatch || igt_skip_crc_compare) >>> >>> That means, the replacement changes the original assertion. Moreover, >>> negating `igt_skip_crc_compare` makes the test assertion to be always >>> true (sucessful) by default and reverses the logic of >>> --skip-crc-compare. >>> >>> Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") >>> Signed-off-by: Melissa Wen <mwen@igalia.com> >> >> LGTM >> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >> >> - Bhanu > > Thanks for reviewing, Bhanu. > > Siqueira, > > Is it okay from AMD side? If so, can you apply it? Applied. - Bhanu > > BR, > > Melissa >> >>> --- >>> tests/kms_color.c | 8 ++++---- >>> 1 file changed, 4 insertions(+), 4 deletions(-) >>> >>> diff --git a/tests/kms_color.c b/tests/kms_color.c >>> index c202547e..ab285af8 100644 >>> --- a/tests/kms_color.c >>> +++ b/tests/kms_color.c >>> @@ -99,7 +99,7 @@ static bool test_pipe_degamma(data_t *data, >>> * Verify that the CRC of the software computed output is >>> * equal to the CRC of the degamma LUT transformation output. >>> */ >>> - ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); >>> + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); >>> disable_degamma(primary->pipe); >>> igt_plane_set_fb(primary, NULL); >>> @@ -188,7 +188,7 @@ static bool test_pipe_gamma(data_t *data, >>> * Verify that the CRC of the software computed output is >>> * equal to the CRC of the gamma LUT transformation output. >>> */ >>> - ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); >>> + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); >>> disable_gamma(primary->pipe); >>> igt_plane_set_fb(primary, NULL); >>> @@ -289,7 +289,7 @@ static bool test_pipe_legacy_gamma(data_t *data, >>> * Verify that the CRC of the software computed output is >>> * equal to the CRC of the gamma LUT transformation output. >>> */ >>> - ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); >>> + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); >>> /* Reset output. */ >>> for (i = 1; i < legacy_lut_size; i++) >>> @@ -534,7 +534,7 @@ static bool test_pipe_ctm(data_t *data, >>> * Verify that the CRC of the software computed output is >>> * equal to the CRC of the CTM matrix transformation output. >>> */ >>> - ret &= !igt_skip_crc_compare || igt_check_crc_equal(&crc_software, &crc_hardware); >>> + ret &= igt_skip_crc_compare || igt_check_crc_equal(&crc_software, &crc_hardware); >>> igt_plane_set_fb(primary, NULL); >>> igt_output_set_pipe(output, PIPE_NONE); >> ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-09-20 10:02 ` Modem, Bhanuprakash @ 2022-09-21 7:47 ` Ville Syrjälä 2022-09-21 10:36 ` Melissa Wen 0 siblings, 1 reply; 13+ messages in thread From: Ville Syrjälä @ 2022-09-21 7:47 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: igt-dev, petri.latvala On Tue, Sep 20, 2022 at 03:32:39PM +0530, Modem, Bhanuprakash wrote: > On Mon-19-09-2022 09:24 pm, Melissa Wen wrote: > > On 09/01, Modem, Bhanuprakash wrote: > >> On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: > >>> In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by > >>> > >>> ret = !igt_skip_crc_compare || igt_check_crc_equal() > >>> and then igt_assert(ret) > >>> > >>> where igt_check_crc_equal returns !mismatch, and therefore we can > >>> translate as: > >>> > >>> ret = !igt_skip_crc_compare || !mismatch > >>> > >>> However, the original igt_assert_crc_equal() assertion does: > >>> > >>> igt_assert(!mismatch || igt_skip_crc_compare) > >>> > >>> That means, the replacement changes the original assertion. Moreover, > >>> negating `igt_skip_crc_compare` makes the test assertion to be always > >>> true (sucessful) by default and reverses the logic of > >>> --skip-crc-compare. > >>> > >>> Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") > >>> Signed-off-by: Melissa Wen <mwen@igalia.com> > >> > >> LGTM > >> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > >> > >> - Bhanu > > > > Thanks for reviewing, Bhanu. > > > > Siqueira, > > > > Is it okay from AMD side? If so, can you apply it? > > Applied. It did _not_ pass CI and so should not have been pushed! -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-09-21 7:47 ` Ville Syrjälä @ 2022-09-21 10:36 ` Melissa Wen 2022-09-21 10:50 ` Ville Syrjälä 0 siblings, 1 reply; 13+ messages in thread From: Melissa Wen @ 2022-09-21 10:36 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev, petri.latvala [-- Attachment #1: Type: text/plain, Size: 1828 bytes --] On 09/21, Ville Syrjälä wrote: > On Tue, Sep 20, 2022 at 03:32:39PM +0530, Modem, Bhanuprakash wrote: > > On Mon-19-09-2022 09:24 pm, Melissa Wen wrote: > > > On 09/01, Modem, Bhanuprakash wrote: > > >> On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: > > >>> In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by > > >>> > > >>> ret = !igt_skip_crc_compare || igt_check_crc_equal() > > >>> and then igt_assert(ret) > > >>> > > >>> where igt_check_crc_equal returns !mismatch, and therefore we can > > >>> translate as: > > >>> > > >>> ret = !igt_skip_crc_compare || !mismatch > > >>> > > >>> However, the original igt_assert_crc_equal() assertion does: > > >>> > > >>> igt_assert(!mismatch || igt_skip_crc_compare) > > >>> > > >>> That means, the replacement changes the original assertion. Moreover, > > >>> negating `igt_skip_crc_compare` makes the test assertion to be always > > >>> true (sucessful) by default and reverses the logic of > > >>> --skip-crc-compare. > > >>> > > >>> Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") > > >>> Signed-off-by: Melissa Wen <mwen@igalia.com> > > >> > > >> LGTM > > >> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > >> > > >> - Bhanu > > > > > > Thanks for reviewing, Bhanu. > > > > > > Siqueira, > > > > > > Is it okay from AMD side? If so, can you apply it? > > > > Applied. > > It did _not_ pass CI and so should not have been pushed! Hi Ville, So, this change "not passed" because the test was not actually assessing the CRC results (i.e. !igt_skip_crc_compare makes the assertion always successful - a false PASS). In this context, I think CI testlist should be updated, instead of not applying this change, right? BR, Melissa > > -- > Ville Syrjälä > Intel [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-09-21 10:36 ` Melissa Wen @ 2022-09-21 10:50 ` Ville Syrjälä 2022-09-21 15:54 ` Modem, Bhanuprakash 0 siblings, 1 reply; 13+ messages in thread From: Ville Syrjälä @ 2022-09-21 10:50 UTC (permalink / raw) To: Melissa Wen; +Cc: igt-dev, petri.latvala On Wed, Sep 21, 2022 at 09:36:13AM -0100, Melissa Wen wrote: > On 09/21, Ville Syrjälä wrote: > > On Tue, Sep 20, 2022 at 03:32:39PM +0530, Modem, Bhanuprakash wrote: > > > On Mon-19-09-2022 09:24 pm, Melissa Wen wrote: > > > > On 09/01, Modem, Bhanuprakash wrote: > > > >> On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: > > > >>> In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by > > > >>> > > > >>> ret = !igt_skip_crc_compare || igt_check_crc_equal() > > > >>> and then igt_assert(ret) > > > >>> > > > >>> where igt_check_crc_equal returns !mismatch, and therefore we can > > > >>> translate as: > > > >>> > > > >>> ret = !igt_skip_crc_compare || !mismatch > > > >>> > > > >>> However, the original igt_assert_crc_equal() assertion does: > > > >>> > > > >>> igt_assert(!mismatch || igt_skip_crc_compare) > > > >>> > > > >>> That means, the replacement changes the original assertion. Moreover, > > > >>> negating `igt_skip_crc_compare` makes the test assertion to be always > > > >>> true (sucessful) by default and reverses the logic of > > > >>> --skip-crc-compare. > > > >>> > > > >>> Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") > > > >>> Signed-off-by: Melissa Wen <mwen@igalia.com> > > > >> > > > >> LGTM > > > >> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > > >> > > > >> - Bhanu > > > > > > > > Thanks for reviewing, Bhanu. > > > > > > > > Siqueira, > > > > > > > > Is it okay from AMD side? If so, can you apply it? > > > > > > Applied. > > > > It did _not_ pass CI and so should not have been pushed! > > Hi Ville, > > So, this change "not passed" because the test was not actually assessing > the CRC results (i.e. !igt_skip_crc_compare makes the assertion always > successful - a false PASS). In this context, I think CI testlist should be > updated, instead of not applying this change, right? No. Either the test never worked correctly or there was an earlier regression hidden by the thing this is now fixing. Either way it needs to be fixed. Just reverting the whole sordid mess and starting from scratch may be the easiest option. -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-09-21 10:50 ` Ville Syrjälä @ 2022-09-21 15:54 ` Modem, Bhanuprakash 2022-09-21 16:43 ` Ville Syrjälä 0 siblings, 1 reply; 13+ messages in thread From: Modem, Bhanuprakash @ 2022-09-21 15:54 UTC (permalink / raw) To: Ville Syrjälä, Melissa Wen; +Cc: igt-dev, petri.latvala On Wed-21-09-2022 04:20 pm, Ville Syrjälä wrote: > On Wed, Sep 21, 2022 at 09:36:13AM -0100, Melissa Wen wrote: >> On 09/21, Ville Syrjälä wrote: >>> On Tue, Sep 20, 2022 at 03:32:39PM +0530, Modem, Bhanuprakash wrote: >>>> On Mon-19-09-2022 09:24 pm, Melissa Wen wrote: >>>>> On 09/01, Modem, Bhanuprakash wrote: >>>>>> On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: >>>>>>> In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by >>>>>>> >>>>>>> ret = !igt_skip_crc_compare || igt_check_crc_equal() >>>>>>> and then igt_assert(ret) >>>>>>> >>>>>>> where igt_check_crc_equal returns !mismatch, and therefore we can >>>>>>> translate as: >>>>>>> >>>>>>> ret = !igt_skip_crc_compare || !mismatch >>>>>>> >>>>>>> However, the original igt_assert_crc_equal() assertion does: >>>>>>> >>>>>>> igt_assert(!mismatch || igt_skip_crc_compare) >>>>>>> >>>>>>> That means, the replacement changes the original assertion. Moreover, >>>>>>> negating `igt_skip_crc_compare` makes the test assertion to be always >>>>>>> true (sucessful) by default and reverses the logic of >>>>>>> --skip-crc-compare. >>>>>>> >>>>>>> Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") >>>>>>> Signed-off-by: Melissa Wen <mwen@igalia.com> >>>>>> >>>>>> LGTM >>>>>> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >>>>>> >>>>>> - Bhanu >>>>> >>>>> Thanks for reviewing, Bhanu. >>>>> >>>>> Siqueira, >>>>> >>>>> Is it okay from AMD side? If so, can you apply it? >>>> >>>> Applied. >>> >>> It did _not_ pass CI and so should not have been pushed! >> >> Hi Ville, >> >> So, this change "not passed" because the test was not actually assessing >> the CRC results (i.e. !igt_skip_crc_compare makes the assertion always >> successful - a false PASS). In this context, I think CI testlist should be >> updated, instead of not applying this change, right? > > No. Either the test never worked correctly or there was an earlier > regression hidden by the thing this is now fixing. Either way it > needs to be fixed. Just reverting the whole sordid mess and starting > from scratch may be the easiest option. I have floated a patch to revert this. https://patchwork.freedesktop.org/series/108835/ Ville/Melissa, Can I have an Ack to merge this? - Bhanu > ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-09-21 15:54 ` Modem, Bhanuprakash @ 2022-09-21 16:43 ` Ville Syrjälä 2022-09-21 17:31 ` Melissa Wen 0 siblings, 1 reply; 13+ messages in thread From: Ville Syrjälä @ 2022-09-21 16:43 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: igt-dev, petri.latvala On Wed, Sep 21, 2022 at 09:24:25PM +0530, Modem, Bhanuprakash wrote: > On Wed-21-09-2022 04:20 pm, Ville Syrjälä wrote: > > On Wed, Sep 21, 2022 at 09:36:13AM -0100, Melissa Wen wrote: > >> On 09/21, Ville Syrjälä wrote: > >>> On Tue, Sep 20, 2022 at 03:32:39PM +0530, Modem, Bhanuprakash wrote: > >>>> On Mon-19-09-2022 09:24 pm, Melissa Wen wrote: > >>>>> On 09/01, Modem, Bhanuprakash wrote: > >>>>>> On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: > >>>>>>> In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by > >>>>>>> > >>>>>>> ret = !igt_skip_crc_compare || igt_check_crc_equal() > >>>>>>> and then igt_assert(ret) > >>>>>>> > >>>>>>> where igt_check_crc_equal returns !mismatch, and therefore we can > >>>>>>> translate as: > >>>>>>> > >>>>>>> ret = !igt_skip_crc_compare || !mismatch > >>>>>>> > >>>>>>> However, the original igt_assert_crc_equal() assertion does: > >>>>>>> > >>>>>>> igt_assert(!mismatch || igt_skip_crc_compare) > >>>>>>> > >>>>>>> That means, the replacement changes the original assertion. Moreover, > >>>>>>> negating `igt_skip_crc_compare` makes the test assertion to be always > >>>>>>> true (sucessful) by default and reverses the logic of > >>>>>>> --skip-crc-compare. > >>>>>>> > >>>>>>> Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") > >>>>>>> Signed-off-by: Melissa Wen <mwen@igalia.com> > >>>>>> > >>>>>> LGTM > >>>>>> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > >>>>>> > >>>>>> - Bhanu > >>>>> > >>>>> Thanks for reviewing, Bhanu. > >>>>> > >>>>> Siqueira, > >>>>> > >>>>> Is it okay from AMD side? If so, can you apply it? > >>>> > >>>> Applied. > >>> > >>> It did _not_ pass CI and so should not have been pushed! > >> > >> Hi Ville, > >> > >> So, this change "not passed" because the test was not actually assessing > >> the CRC results (i.e. !igt_skip_crc_compare makes the assertion always > >> successful - a false PASS). In this context, I think CI testlist should be > >> updated, instead of not applying this change, right? > > > > No. Either the test never worked correctly or there was an earlier > > regression hidden by the thing this is now fixing. Either way it > > needs to be fixed. Just reverting the whole sordid mess and starting > > from scratch may be the easiest option. > > I have floated a patch to revert this. > https://patchwork.freedesktop.org/series/108835/ > > Ville/Melissa, Can I have an Ack to merge this? I mean we have to revert all the way back to before the dunamic subtest conversion. AIUI that is when we started to ignore real test failures, and so we don't even know whether it was that commit itself or something later that really broke the test. -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-09-21 16:43 ` Ville Syrjälä @ 2022-09-21 17:31 ` Melissa Wen 2022-09-22 5:31 ` Modem, Bhanuprakash 0 siblings, 1 reply; 13+ messages in thread From: Melissa Wen @ 2022-09-21 17:31 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev, petri.latvala [-- Attachment #1: Type: text/plain, Size: 3933 bytes --] On 09/21, Ville Syrjälä wrote: > On Wed, Sep 21, 2022 at 09:24:25PM +0530, Modem, Bhanuprakash wrote: > > On Wed-21-09-2022 04:20 pm, Ville Syrjälä wrote: > > > On Wed, Sep 21, 2022 at 09:36:13AM -0100, Melissa Wen wrote: > > >> On 09/21, Ville Syrjälä wrote: > > >>> On Tue, Sep 20, 2022 at 03:32:39PM +0530, Modem, Bhanuprakash wrote: > > >>>> On Mon-19-09-2022 09:24 pm, Melissa Wen wrote: > > >>>>> On 09/01, Modem, Bhanuprakash wrote: > > >>>>>> On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: > > >>>>>>> In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by > > >>>>>>> > > >>>>>>> ret = !igt_skip_crc_compare || igt_check_crc_equal() > > >>>>>>> and then igt_assert(ret) > > >>>>>>> > > >>>>>>> where igt_check_crc_equal returns !mismatch, and therefore we can > > >>>>>>> translate as: > > >>>>>>> > > >>>>>>> ret = !igt_skip_crc_compare || !mismatch > > >>>>>>> > > >>>>>>> However, the original igt_assert_crc_equal() assertion does: > > >>>>>>> > > >>>>>>> igt_assert(!mismatch || igt_skip_crc_compare) > > >>>>>>> > > >>>>>>> That means, the replacement changes the original assertion. Moreover, > > >>>>>>> negating `igt_skip_crc_compare` makes the test assertion to be always > > >>>>>>> true (sucessful) by default and reverses the logic of > > >>>>>>> --skip-crc-compare. > > >>>>>>> > > >>>>>>> Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") > > >>>>>>> Signed-off-by: Melissa Wen <mwen@igalia.com> > > >>>>>> > > >>>>>> LGTM > > >>>>>> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > >>>>>> > > >>>>>> - Bhanu > > >>>>> > > >>>>> Thanks for reviewing, Bhanu. > > >>>>> > > >>>>> Siqueira, > > >>>>> > > >>>>> Is it okay from AMD side? If so, can you apply it? > > >>>> > > >>>> Applied. > > >>> > > >>> It did _not_ pass CI and so should not have been pushed! > > >> > > >> Hi Ville, > > >> > > >> So, this change "not passed" because the test was not actually assessing > > >> the CRC results (i.e. !igt_skip_crc_compare makes the assertion always > > >> successful - a false PASS). In this context, I think CI testlist should be > > >> updated, instead of not applying this change, right? > > > > > > No. Either the test never worked correctly or there was an earlier > > > regression hidden by the thing this is now fixing. Either way it > > > needs to be fixed. Just reverting the whole sordid mess and starting > > > from scratch may be the easiest option. > > > > I have floated a patch to revert this. > > https://patchwork.freedesktop.org/series/108835/ > > > > Ville/Melissa, Can I have an Ack to merge this? > > I mean we have to revert all the way back to before the > dunamic subtest conversion. AIUI that is when we started > to ignore real test failures, and so we don't even know > whether it was that commit itself or something later that > really broke the test. It's clear to me that the regression was introduced by: d61e4598142 ("tests/kms_color: Convert tests to dynamic") As I explained in the commit message, we can see it in the patchwork diff [1] (or gitlab commit diff, but the patchwork just displays it clear enough), as here: --- @@ -285,7 +286,7 @@ static void test_pipe_legacy_gamma(data_t *data, /* Verify that the CRC of the software computed output is * equal to the CRC of the gamma LUT transformation output. */ - igt_assert_crc_equal(&crc_fullgamma, &crc_fullcolors); + ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); /* Reset output. */ for (i = 1; i < legacy_lut_size; i++) --- [1] https://patchwork.freedesktop.org/patch/491540/ btw, I'm okay with the approach of reverting both. So, I understand Bhanuprakash will submit a new patch with a dynamic test conversion that handles the assertions correctly, right? BR, Melissa > > -- > Ville Syrjälä > Intel [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition 2022-09-21 17:31 ` Melissa Wen @ 2022-09-22 5:31 ` Modem, Bhanuprakash 0 siblings, 0 replies; 13+ messages in thread From: Modem, Bhanuprakash @ 2022-09-22 5:31 UTC (permalink / raw) To: Melissa Wen, Ville Syrjälä; +Cc: igt-dev, petri.latvala On Wed-21-09-2022 11:01 pm, Melissa Wen wrote: > On 09/21, Ville Syrjälä wrote: >> On Wed, Sep 21, 2022 at 09:24:25PM +0530, Modem, Bhanuprakash wrote: >>> On Wed-21-09-2022 04:20 pm, Ville Syrjälä wrote: >>>> On Wed, Sep 21, 2022 at 09:36:13AM -0100, Melissa Wen wrote: >>>>> On 09/21, Ville Syrjälä wrote: >>>>>> On Tue, Sep 20, 2022 at 03:32:39PM +0530, Modem, Bhanuprakash wrote: >>>>>>> On Mon-19-09-2022 09:24 pm, Melissa Wen wrote: >>>>>>>> On 09/01, Modem, Bhanuprakash wrote: >>>>>>>>> On Wed-31-08-2022 03:41 pm, Melissa Wen wrote: >>>>>>>>>> In test_pipe_degamma/gamma/ctm, igt_assert_crc_equal() was replaced by >>>>>>>>>> >>>>>>>>>> ret = !igt_skip_crc_compare || igt_check_crc_equal() >>>>>>>>>> and then igt_assert(ret) >>>>>>>>>> >>>>>>>>>> where igt_check_crc_equal returns !mismatch, and therefore we can >>>>>>>>>> translate as: >>>>>>>>>> >>>>>>>>>> ret = !igt_skip_crc_compare || !mismatch >>>>>>>>>> >>>>>>>>>> However, the original igt_assert_crc_equal() assertion does: >>>>>>>>>> >>>>>>>>>> igt_assert(!mismatch || igt_skip_crc_compare) >>>>>>>>>> >>>>>>>>>> That means, the replacement changes the original assertion. Moreover, >>>>>>>>>> negating `igt_skip_crc_compare` makes the test assertion to be always >>>>>>>>>> true (sucessful) by default and reverses the logic of >>>>>>>>>> --skip-crc-compare. >>>>>>>>>> >>>>>>>>>> Fixes: d61e4598142 ("tests/kms_color: Convert tests to dynamic") >>>>>>>>>> Signed-off-by: Melissa Wen <mwen@igalia.com> >>>>>>>>> >>>>>>>>> LGTM >>>>>>>>> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >>>>>>>>> >>>>>>>>> - Bhanu >>>>>>>> >>>>>>>> Thanks for reviewing, Bhanu. >>>>>>>> >>>>>>>> Siqueira, >>>>>>>> >>>>>>>> Is it okay from AMD side? If so, can you apply it? >>>>>>> >>>>>>> Applied. >>>>>> >>>>>> It did _not_ pass CI and so should not have been pushed! >>>>> >>>>> Hi Ville, >>>>> >>>>> So, this change "not passed" because the test was not actually assessing >>>>> the CRC results (i.e. !igt_skip_crc_compare makes the assertion always >>>>> successful - a false PASS). In this context, I think CI testlist should be >>>>> updated, instead of not applying this change, right? >>>> >>>> No. Either the test never worked correctly or there was an earlier >>>> regression hidden by the thing this is now fixing. Either way it >>>> needs to be fixed. Just reverting the whole sordid mess and starting >>>> from scratch may be the easiest option. >>> >>> I have floated a patch to revert this. >>> https://patchwork.freedesktop.org/series/108835/ >>> >>> Ville/Melissa, Can I have an Ack to merge this? >> >> I mean we have to revert all the way back to before the >> dunamic subtest conversion. AIUI that is when we started >> to ignore real test failures, and so we don't even know >> whether it was that commit itself or something later that >> really broke the test. > > It's clear to me that the regression was introduced by: > d61e4598142 ("tests/kms_color: Convert tests to dynamic") > > As I explained in the commit message, we can see it in the patchwork > diff [1] (or gitlab commit diff, but the patchwork just displays it > clear enough), as here: > > --- > @@ -285,7 +286,7 @@ static void test_pipe_legacy_gamma(data_t *data, > /* Verify that the CRC of the software computed output is > * equal to the CRC of the gamma LUT transformation output. > */ > - igt_assert_crc_equal(&crc_fullgamma, &crc_fullcolors); > + ret = !igt_skip_crc_compare || igt_check_crc_equal(&crc_fullgamma, &crc_fullcolors); I have adopted this piece of code from CTM test & blindly applied to other tests :-( This check in CTM test was introduced by: 1a42910d tests/kms_color: Don't opencode igt_check_crc_equal() Means, we were hiding this CTM failures from ages. If we observe the latest test results [1], it is clear that only ctm (0.25 & 0.75) tests are failing. To confirm this, I have floated a patch to IGT [2]: Revert dynamic subtests + Fix above crc check [1] https://intel-gfx-ci.01.org/tree/drm-tip/shards-all.html?testfilter=kms_color [2] https://patchwork.freedesktop.org/series/108864/ > > /* Reset output. */ > for (i = 1; i < legacy_lut_size; i++) > --- > > [1] https://patchwork.freedesktop.org/patch/491540/ > > btw, I'm okay with the approach of reverting both. So, I understand > Bhanuprakash will submit a new patch with a dynamic test conversion that > handles the assertions correctly, right? > > BR, > > Melissa > >> >> -- >> Ville Syrjälä >> Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2022-09-22 5:31 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-08-31 10:11 [igt-dev] [PATCH i-g-t] tests/kms_color: fix crc assert condition Melissa Wen 2022-08-31 11:03 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-08-31 17:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-09-01 9:15 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash 2022-09-19 15:54 ` Melissa Wen 2022-09-20 10:02 ` Modem, Bhanuprakash 2022-09-21 7:47 ` Ville Syrjälä 2022-09-21 10:36 ` Melissa Wen 2022-09-21 10:50 ` Ville Syrjälä 2022-09-21 15:54 ` Modem, Bhanuprakash 2022-09-21 16:43 ` Ville Syrjälä 2022-09-21 17:31 ` Melissa Wen 2022-09-22 5:31 ` Modem, Bhanuprakash
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.