* [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe
@ 2023-11-28 2:33 Nidhi Gupta
2023-11-28 2:51 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Nidhi Gupta @ 2023-11-28 2:33 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
Added a new subtest as kms_frontbuffer_tracking@pipe-fbc-rte.
It will execute on each pipe with valid output and check if FBC is
enabled or not.
v2: Change the test design to reuse the existing
rte_subtest() code for each pipe (Bhanu)
v3: Use igt_fixture to restore the default
parameters (Bhanu)
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/intel/kms_frontbuffer_tracking.c | 53 ++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index 259dfd136..257ba4273 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -1163,6 +1163,15 @@
* @y: Y tiling
*/
+/**
+ * SUBTEST: pipe-fbc-rte
+ * Description: Sanity test to enable FBC on each pipe.
+ * Driver requirement: i915, xe
+ * Functionality: fbc
+ * Mega feature: General Display Features
+ * Test category: functionality test
+ */
+
#define TIME SLOW_QUICK(1000, 10000)
IGT_TEST_DESCRIPTION("Test the Kernel's frontbuffer tracking mechanism and "
@@ -4459,11 +4468,15 @@ struct option long_options[] = {
igt_main_args("", long_options, help_str, opt_handler, NULL)
{
struct test_mode t;
+ struct modeset_params default_mode_params;
int devid;
+ enum pipe pipe;
+ igt_output_t *output;
igt_fixture {
setup_environment();
devid = intel_get_drm_devid(drm.fd);
+ default_mode_params = prim_mode_params;
}
for (t.feature = 0; t.feature < FEATURE_COUNT; t.feature++) {
@@ -4500,6 +4513,46 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
plane_fbc_rte_subtest(&t);
}
+ igt_subtest_with_dynamic("pipe-fbc-rte") {
+
+ t.pipes = PIPE_SINGLE;
+ t.feature = FEATURE_FBC;
+ t.screen = SCREEN_PRIM;
+ t.fbs = FBS_INDIVIDUAL;
+ t.format = FORMAT_DEFAULT;
+ t.method = IGT_DRAW_BLT;
+ /* Make sure nothing is using these values. */
+ t.flip = -1;
+ t.tiling = opt.tiling;
+
+ for_each_pipe(&drm.display, pipe) {
+
+ if (pipe == default_mode_params.pipe) {
+ igt_info("pipe-%s: FBC validated in other subtest\n", kmstest_pipe_name(pipe));
+ continue;
+ }
+
+ if (!intel_fbc_supported_on_chipset(drm.fd, pipe)) {
+ igt_info("Can't test FBC: not supported on pipe-%s\n", kmstest_pipe_name(pipe));
+ continue;
+ }
+
+ for_each_valid_output_on_pipe(&drm.display, pipe, output) {
+ init_mode_params(&prim_mode_params, output, pipe);
+ setup_fbc();
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
+ igt_output_name(output))
+ rte_subtest(&t);
+ break; /* One output is enough. */
+ }
+
+ }
+ }
+
+ igt_fixture
+ prim_mode_params = default_mode_params;
+
+
TEST_MODE_ITER_BEGIN(t)
igt_subtest_f("%s-%s-%s-%s-%s-draw-%s",
--
2.39.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] ✗ GitLab.Pipeline: warning for tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) 2023-11-28 2:33 [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe Nidhi Gupta @ 2023-11-28 2:51 ` Patchwork 2023-11-28 3:24 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-11-28 2:51 UTC (permalink / raw) To: Nidhi Gupta; +Cc: igt-dev == Series Details == Series: tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) URL : https://patchwork.freedesktop.org/series/126708/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1043872 for the overview. test:ninja-test-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/52084114): 376/380 assembler test/rnde-intsrc OK 0.01 s 377/380 assembler test/rndz OK 0.01 s 378/380 assembler test/lzd OK 0.01 s 379/380 assembler test/not OK 0.02 s 380/380 assembler test/immediate OK 0.01 s Ok: 375 Expected Fail: 4 Fail: 1 Unexpected Pass: 0 Skipped: 0 Timeout: 0 Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt section_end:1701139734:step_script section_start:1701139734:cleanup_file_variables Cleaning up project directory and file based variables section_end:1701139735:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1043872 ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) 2023-11-28 2:33 [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe Nidhi Gupta 2023-11-28 2:51 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) Patchwork @ 2023-11-28 3:24 ` Patchwork 2023-11-28 3:24 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-11-28 3:24 UTC (permalink / raw) To: Nidhi Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10622 bytes --] == Series Details == Series: tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) URL : https://patchwork.freedesktop.org/series/126708/ State : success == Summary == CI Bug Log - changes from CI_DRM_13930 -> IGTPW_10275 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/index.html Participating hosts (36 -> 34) ------------------------------ Additional (2): bat-dg2-8 bat-dg2-9 Missing (4): bat-mtlp-8 bat-kbl-2 bat-adlp-11 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10275 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-8: NOTRUN -> [INCOMPLETE][1] ([i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_mmap@basic: - bat-dg2-9: NOTRUN -> [SKIP][2] ([i915#4083]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@gem_mmap@basic.html - bat-dg2-8: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@gem_mmap_gtt@basic.html - bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#6621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@i915_pm_rps@basic-api.html - bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#6621]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@i915_pm_rps@basic-api.html * igt@i915_suspend@basic-s3-without-i915: - bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#6645]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#5190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#5190]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#4215] / [i915#5190]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#4215] / [i915#5190]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#4212]) +6 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#4212]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#4212] / [i915#5608]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html - bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#4212] / [i915#5608]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-9: NOTRUN -> [SKIP][21] ([fdo#109285]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html - bat-dg2-8: NOTRUN -> [SKIP][22] ([fdo#109285]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#5274]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html - bat-dg2-8: NOTRUN -> [SKIP][24] ([i915#5274]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [PASS][25] -> [FAIL][26] ([IGT#3]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-adlp-9: NOTRUN -> [SKIP][27] ([i915#1845] / [i915#3546]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html - bat-dg2-11: NOTRUN -> [SKIP][28] ([i915#1845] / [i915#9197]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-9: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#4098]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg2-8: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#4098]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-9: NOTRUN -> [SKIP][31] ([i915#3708]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html - bat-dg2-8: NOTRUN -> [SKIP][32] ([i915#3708]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-8: NOTRUN -> [SKIP][33] ([i915#3708] / [i915#4077]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html - bat-dg2-9: NOTRUN -> [SKIP][34] ([i915#3708] / [i915#4077]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-9: NOTRUN -> [SKIP][35] ([i915#3291] / [i915#3708]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-9/igt@prime_vgem@basic-write.html - bat-dg2-8: NOTRUN -> [SKIP][36] ([i915#3291] / [i915#3708]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/bat-dg2-8/igt@prime_vgem@basic-write.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7605 -> IGTPW_10275 CI-20190529: 20190529 CI_DRM_13930: 27fbc84d6a4ca83582a17458854f280b0f719509 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10275: 10275 IGT_7605: 7605 Testlist changes ---------------- +igt@kms_frontbuffer_tracking@pipe-fbc-rte == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/index.html [-- Attachment #2: Type: text/html, Size: 13828 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) 2023-11-28 2:33 [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe Nidhi Gupta 2023-11-28 2:51 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) Patchwork 2023-11-28 3:24 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-11-28 3:24 ` Patchwork 2023-11-28 5:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-11-28 8:13 ` [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe Modem, Bhanuprakash 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-11-28 3:24 UTC (permalink / raw) To: Nidhi Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 12368 bytes --] == Series Details == Series: tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) URL : https://patchwork.freedesktop.org/series/126708/ State : success == Summary == CI Bug Log - changes from XEIGT_7605_BAT -> XEIGTPW_10275_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (1 -> 4) ------------------------------ Additional (3): bat-pvc-2 bat-dg2-oem2 bat-atsm-2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_10275_BAT: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_psr@psr_cursor_plane_move}: - bat-dg2-oem2: NOTRUN -> [SKIP][1] +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@kms_psr@psr_cursor_plane_move.html Known issues ------------ Here are the changes found in XEIGTPW_10275_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-pvc-2: NOTRUN -> [SKIP][2] ([i915#6077]) +33 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#623]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#388]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@invalid-set-prop-any: - bat-atsm-2: NOTRUN -> [SKIP][5] ([i915#6077]) +33 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#782]) +5 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - bat-atsm-2: NOTRUN -> [SKIP][7] ([Intel XE#782]) +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-atsm-2: NOTRUN -> [SKIP][8] ([Intel XE#784]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@kms_dsc@dsc-basic.html - bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#784]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@kms_dsc@dsc-basic.html - bat-dg2-oem2: NOTRUN -> [SKIP][10] ([Intel XE#423]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-pvc-2: NOTRUN -> [SKIP][11] ([Intel XE#947]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-flip-vs-modeset: - bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#947]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3: - bat-dg2-oem2: NOTRUN -> [FAIL][13] ([Intel XE#480]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html * igt@kms_force_connector_basic@force-connector-state: - bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#540]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html - bat-atsm-2: NOTRUN -> [SKIP][15] ([Intel XE#540]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-oem2: NOTRUN -> [SKIP][16] ([i915#5274]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-pvc-2: NOTRUN -> [SKIP][17] ([Intel XE#783]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html - bat-dg2-oem2: NOTRUN -> [FAIL][18] ([Intel XE#608]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html - bat-atsm-2: NOTRUN -> [SKIP][19] ([Intel XE#783]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-dg2-oem2: NOTRUN -> [FAIL][20] ([Intel XE#400] / [Intel XE#616]) +2 other tests fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-atsm-2: NOTRUN -> [SKIP][21] ([i915#1836]) +6 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-pvc-2: NOTRUN -> [SKIP][22] ([Intel XE#829]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-pvc-2: NOTRUN -> [SKIP][23] ([Intel XE#780]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@kms_prop_blob@basic.html - bat-atsm-2: NOTRUN -> [SKIP][24] ([Intel XE#780]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@kms_prop_blob@basic.html * igt@xe_compute@compute-square: - bat-atsm-2: NOTRUN -> [SKIP][25] ([Intel XE#672]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@xe_compute@compute-square.html - bat-dg2-oem2: NOTRUN -> [SKIP][26] ([Intel XE#672]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@xe_compute@compute-square.html * igt@xe_evict@evict-beng-small-external: - bat-pvc-2: NOTRUN -> [FAIL][27] ([Intel XE#936]) +3 other tests fail [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html * igt@xe_evict@evict-small-cm: - bat-pvc-2: NOTRUN -> [DMESG-FAIL][28] ([Intel XE#482]) +3 other tests dmesg-fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@xe_evict@evict-small-cm.html * igt@xe_exec_fault_mode@many-basic: - bat-dg2-oem2: NOTRUN -> [SKIP][29] ([Intel XE#288]) +17 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@xe_exec_fault_mode@many-basic.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm: - bat-atsm-2: NOTRUN -> [SKIP][30] ([Intel XE#288]) +17 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html * igt@xe_guc_pc@freq_range_idle: - bat-pvc-2: NOTRUN -> [SKIP][31] ([Intel XE#533]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@xe_guc_pc@freq_range_idle.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: NOTRUN -> [SKIP][32] ([Intel XE#255]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@xe_huc_copy@huc_copy.html - bat-dg2-oem2: NOTRUN -> [SKIP][33] ([Intel XE#255]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html - bat-atsm-2: NOTRUN -> [SKIP][34] ([Intel XE#255]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-atsm-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: NOTRUN -> [SKIP][35] ([Intel XE#532]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_module_load@load: - bat-pvc-2: NOTRUN -> [SKIP][36] ([Intel XE#378]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@xe_module_load@load.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: NOTRUN -> [SKIP][37] ([Intel XE#531]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [FAIL][38] ([Intel XE#480]) -> [PASS][39] +1 other test pass [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7605/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/388 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/423 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/608 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/672 [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780 [Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#926]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/926 [Intel XE#936]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/936 [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 Build changes ------------- * IGT: IGT_7605 -> IGTPW_10275 * Linux: xe-520-7c4b213b5a33fc591a5c92910292aea30193f96c -> xe-522-30f75cb8aa11ac361220d1491262254371302f9e IGTPW_10275: 10275 IGT_7605: 7605 xe-520-7c4b213b5a33fc591a5c92910292aea30193f96c: 7c4b213b5a33fc591a5c92910292aea30193f96c xe-522-30f75cb8aa11ac361220d1491262254371302f9e: 30f75cb8aa11ac361220d1491262254371302f9e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10275/index.html [-- Attachment #2: Type: text/html, Size: 14416 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) 2023-11-28 2:33 [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe Nidhi Gupta ` (2 preceding siblings ...) 2023-11-28 3:24 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-11-28 5:54 ` Patchwork 2023-11-28 8:13 ` [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe Modem, Bhanuprakash 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-11-28 5:54 UTC (permalink / raw) To: Nidhi Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 62627 bytes --] == Series Details == Series: tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) URL : https://patchwork.freedesktop.org/series/126708/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13930_full -> IGTPW_10275_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10275_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10275_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_10275/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-tglu0 Missing (1): shard-mtlp0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10275_full: ### IGT changes ### #### Possible regressions #### * igt@gem_create@busy-create@smem0: - shard-glk: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-glk2/igt@gem_create@busy-create@smem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-glk6/igt@gem_create@busy-create@smem0.html * {igt@kms_frontbuffer_tracking@pipe-fbc-rte} (NEW): - shard-dg1: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-12/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-dg2: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-7/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@perf_pmu@enable-race@vcs1: - shard-mtlp: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-6/igt@perf_pmu@enable-race@vcs1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-4/igt@perf_pmu@enable-race@vcs1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][8] ([i915#9408]) -> [INCOMPLETE][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html New tests --------- New tests have been introduced between CI_DRM_13930_full and IGTPW_10275_full: ### New IGT tests (3) ### * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10275_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-noreloc-keep-cache-simple: - shard-snb: NOTRUN -> [SKIP][10] ([fdo#109271]) +60 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-snb5/igt@api_intel_bb@object-noreloc-keep-cache-simple.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#7701]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@drm_fdinfo@virtual-busy-all.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@gem_caching@read-writes.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#9364]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8562]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-7/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1099]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-snb1/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#5882]) +9 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@gem_ctx_sseu@engines.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][23] -> [FAIL][24] ([i915#5784]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg1-16/igt@gem_eio@reset-stress.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#4812]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-17/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-6/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture@vcs0-smem: - shard-mtlp: [PASS][28] -> [DMESG-WARN][29] ([i915#5591]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-2/igt@gem_exec_capture@capture@vcs0-smem.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@gem_exec_capture@capture@vcs0-smem.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][30] ([i915#2842]) +3 other tests fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [PASS][31] -> [FAIL][32] ([i915#2842]) +2 other tests fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-7/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-12/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][38] ([fdo#112283]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-scanout: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-6/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +8 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@gem_exec_schedule@preempt-queue.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4860]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#4613]) +5 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4077]) +10 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-6/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@bad-size: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-13/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3282]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3282]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@display: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@gem_pread@display.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-2/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4079]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@gem_set_tiling_vs_gtt.html * igt@gem_tiled_swapping@non-threaded: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-16/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297] / [i915#4880]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][62] ([i915#2724]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-snb7/igt@gem_userptr_blits@vma-merge.html - shard-mtlp: NOTRUN -> [FAIL][63] ([i915#3318]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@gem_userptr_blits@vma-merge.html * igt@gen3_mixed_blits: - shard-mtlp: NOTRUN -> [SKIP][64] ([fdo#109289]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@gen3_mixed_blits.html * igt@gen3_render_tiledy_blits: - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@bitmasks: - shard-dg1: NOTRUN -> [SKIP][66] ([fdo#109289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-16/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@basic-rejected: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#2527]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-17/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-cmd: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#2856]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#6227]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#8399]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#6621]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-13/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#8925]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#6188]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-known-pci-ids: - shard-mtlp: NOTRUN -> [SKIP][76] ([fdo#109303]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][77] ([fdo#109302]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-7/igt@i915_query@query-topology-unsupported.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4215] / [i915#5190]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4212]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][80] ([i915#8247]) +3 other tests fail [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][81] ([i915#8247]) +3 other tests fail [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][82] ([fdo#111615] / [i915#5286]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-8/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][83] -> [FAIL][84] ([i915#5138]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][85] ([fdo#111614]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][86] ([fdo#111614]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4538] / [i915#5286]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3638]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-18/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#6187]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][90] -> [FAIL][91] ([i915#3743]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#5190]) +17 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][93] ([fdo#111615]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#4538]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#111615]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][97] ([fdo#109271]) +147 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-glk3/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4087] / [i915#7213]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][99] ([fdo#111827]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-tglu: NOTRUN -> [SKIP][100] ([fdo#111827]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-6/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#7828]) +5 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#7828]) +11 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#7828]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-19/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#7828]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6944]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#7118]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3555] / [i915#8814]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#3555]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3359]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3359]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3555]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4103] / [i915#4213] / [i915#5608]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][113] ([fdo#109274] / [i915#5354]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3546]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][115] ([fdo#109274] / [fdo#111767] / [i915#5354]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][116] ([i915#2346]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4103] / [i915#4213]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#3555] / [i915#3840] / [i915#4098]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-mtlp: [PASS][119] -> [ABORT][120] ([i915#9414]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-5/igt@kms_fbcon_fbt@fbc-suspend.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#4881]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111767] / [i915#3637]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3637]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#109274]) +5 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#8381]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-5/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#8810]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#2672]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#8708]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-dg2: [PASS][129] -> [FAIL][130] ([i915#6880]) +1 other test fail [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#8708]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][132] ([fdo#109280]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#1825]) +15 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#5460]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-tglu: NOTRUN -> [SKIP][135] ([fdo#110189]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#8708]) +17 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#5354]) +33 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][138] ([fdo#111825]) +7 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3458]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3458]) +22 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#8228]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#8228]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_hdr@static-toggle.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#6301]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#6301]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-19/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][145] ([i915#4573]) +1 other test fail [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#5235]) +11 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#5235]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#5235]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#5235]) +15 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#9683]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#9732]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#4235]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-4/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#5289]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][154] ([fdo#111615] / [i915#5289]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4235]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#3555]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#8809]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][158] ([IGT#2]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#8623]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][160] -> [FAIL][161] ([i915#9196]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][162] -> [FAIL][163] ([i915#9196]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8808]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#2437]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#2437]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-6/igt@kms_writeback@writeback-check-output.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#7387]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@perf@global-sseu-config.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][168] -> [FAIL][169] ([i915#7484]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][170] -> [FAIL][171] ([i915#4349]) +1 other test fail [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-dg1: [PASS][172] -> [FAIL][173] ([i915#4349]) +2 other tests fail [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg1-15/igt@perf_pmu@render-node-busy-idle@vcs1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vcs1.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][174] ([i915#9351]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3708] / [i915#4077]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3291] / [i915#3708]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3708]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-10/igt@prime_vgem@fence-write-hang.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4818]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-tglu: NOTRUN -> [SKIP][179] ([fdo#109315] / [i915#2575]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-7/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#2575]) +13 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#2575]) +6 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-6/igt@v3d/v3d_wait_bo@used-bo.html * igt@v3d/v3d_wait_bo@used-bo-0ns: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#2575]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-15/igt@v3d/v3d_wait_bo@used-bo-0ns.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#7711]) +9 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_perfmon@destroy-invalid-perfmon: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#2575]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-7/igt@vc4/vc4_perfmon@destroy-invalid-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#7711]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#7711]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-17/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][187] ([i915#5784]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg2-10/igt@gem_eio@reset-stress.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-6/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-none@vecs0: - shard-glk: [FAIL][189] ([i915#2842]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-glk9/igt@gem_exec_fair@basic-none@vecs0.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-glk7/igt@gem_exec_fair@basic-none@vecs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][191] ([i915#9697]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0}: - shard-dg1: [FAIL][193] ([i915#3591]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][195] ([i915#7984]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-2/igt@i915_power@sanity.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@i915_power@sanity.html * igt@i915_suspend@sysfs-reader: - shard-mtlp: [ABORT][197] ([i915#9414]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-4/igt@i915_suspend@sysfs-reader.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-4/igt@i915_suspend@sysfs-reader.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][199] ([i915#5138]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [DMESG-WARN][201] ([i915#2017]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-2/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_plane_alpha_blend@coverage-7efc@pipe-a-edp-1: - shard-mtlp: [FAIL][203] -> [PASS][204] +1 other test pass [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-mtlp-4/igt@kms_plane_alpha_blend@coverage-7efc@pipe-a-edp-1.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-mtlp-6/igt@kms_plane_alpha_blend@coverage-7efc@pipe-a-edp-1.html * {igt@kms_pm_rpm@modeset-non-lpsp-stress}: - shard-dg2: [SKIP][205] ([i915#9519]) -> [PASS][206] +2 other tests pass [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][207] ([i915#9196]) -> [PASS][208] +1 other test pass [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * {igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4}: - shard-dg1: [FAIL][209] ([i915#9196]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg1-19/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][211] ([i915#8724]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@perf@enable-disable@0-rcs0.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [FAIL][213] ([i915#4349]) -> [PASS][214] +1 other test pass [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg1-13/igt@perf_pmu@busy-double-start@vcs1.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-19/igt@perf_pmu@busy-double-start@vcs1.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [DMESG-WARN][215] ([i915#4936] / [i915#5493]) -> [TIMEOUT][216] ([i915#5493]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][217] ([i915#9559]) -> [DMESG-WARN][218] ([i915#1982] / [i915#9559]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-dg2: [SKIP][219] -> [SKIP][220] ([i915#9732]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_cpu.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@psr2_no_drrs: - shard-dg2: [SKIP][221] ([i915#9736]) -> [SKIP][222] ([i915#9732]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg2-11/igt@kms_psr@psr2_no_drrs.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-1/igt@kms_psr@psr2_no_drrs.html * igt@kms_psr@psr2_sprite_render: - shard-dg2: [SKIP][223] ([i915#9732]) -> [SKIP][224] ([i915#9736]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13930/shard-dg2-5/igt@kms_psr@psr2_sprite_render.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/shard-dg2-11/igt@kms_psr@psr2_sprite_render.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559 [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7605 -> IGTPW_10275 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13930: 27fbc84d6a4ca83582a17458854f280b0f719509 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10275: 10275 IGT_7605: 7605 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10275/index.html [-- Attachment #2: Type: text/html, Size: 73177 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe 2023-11-28 2:33 [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe Nidhi Gupta ` (3 preceding siblings ...) 2023-11-28 5:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-11-28 8:13 ` Modem, Bhanuprakash 4 siblings, 0 replies; 6+ messages in thread From: Modem, Bhanuprakash @ 2023-11-28 8:13 UTC (permalink / raw) To: Nidhi Gupta, igt-dev Hi Nidhi, On 28-11-2023 08:03 am, Nidhi Gupta wrote: > Added a new subtest as kms_frontbuffer_tracking@pipe-fbc-rte. > It will execute on each pipe with valid output and check if FBC is > enabled or not. > > v2: Change the test design to reuse the existing > rte_subtest() code for each pipe (Bhanu) > > v3: Use igt_fixture to restore the default > parameters (Bhanu) > > Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com> > --- > tests/intel/kms_frontbuffer_tracking.c | 53 ++++++++++++++++++++++++++ > 1 file changed, 53 insertions(+) > > diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c > index 259dfd136..257ba4273 100644 > --- a/tests/intel/kms_frontbuffer_tracking.c > +++ b/tests/intel/kms_frontbuffer_tracking.c > @@ -1163,6 +1163,15 @@ > * @y: Y tiling > */ > > +/** > + * SUBTEST: pipe-fbc-rte > + * Description: Sanity test to enable FBC on each pipe. > + * Driver requirement: i915, xe > + * Functionality: fbc > + * Mega feature: General Display Features > + * Test category: functionality test Please fix the documentation according to the latest changes: Drop 'Driver requirement', 'Mega feature' & 'Test category' as these are moved to TEST level. Also, combine this documentation block to existing stuff. > + */ > + > #define TIME SLOW_QUICK(1000, 10000) > > IGT_TEST_DESCRIPTION("Test the Kernel's frontbuffer tracking mechanism and " > @@ -4459,11 +4468,15 @@ struct option long_options[] = { > igt_main_args("", long_options, help_str, opt_handler, NULL) > { > struct test_mode t; > + struct modeset_params default_mode_params; > int devid; > + enum pipe pipe; > + igt_output_t *output; > > igt_fixture { > setup_environment(); > devid = intel_get_drm_devid(drm.fd); > + default_mode_params = prim_mode_params; This change is not required for other tests, so limit this to "pipe-fbc-rte" only. Also, as mentioned in previous comments, we just need the pipe info from default params, no need to preserve full struct. > } > > for (t.feature = 0; t.feature < FEATURE_COUNT; t.feature++) { > @@ -4500,6 +4513,46 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) > plane_fbc_rte_subtest(&t); > } > > + igt_subtest_with_dynamic("pipe-fbc-rte") { > + > + t.pipes = PIPE_SINGLE; > + t.feature = FEATURE_FBC; > + t.screen = SCREEN_PRIM; > + t.fbs = FBS_INDIVIDUAL; > + t.format = FORMAT_DEFAULT; > + t.method = IGT_DRAW_BLT; > + /* Make sure nothing is using these values. */ > + t.flip = -1; > + t.tiling = opt.tiling; > + > + for_each_pipe(&drm.display, pipe) { > + > + if (pipe == default_mode_params.pipe) { > + igt_info("pipe-%s: FBC validated in other subtest\n", kmstest_pipe_name(pipe)); > + continue; > + } > + > + if (!intel_fbc_supported_on_chipset(drm.fd, pipe)) { > + igt_info("Can't test FBC: not supported on pipe-%s\n", kmstest_pipe_name(pipe)); > + continue; > + } > + > + for_each_valid_output_on_pipe(&drm.display, pipe, output) { > + init_mode_params(&prim_mode_params, output, pipe); > + setup_fbc(); Add new line here. > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), > + igt_output_name(output)) > + rte_subtest(&t); Add new line here. > + break; /* One output is enough. */ > + } > + > + } > + } > + > + igt_fixture > + prim_mode_params = default_mode_params; As we are using different outputs at test level, I think it not just enough. Instead, call init_modeset_cached_params() here to restore to default. - Bhanu > + > + > TEST_MODE_ITER_BEGIN(t) > > igt_subtest_f("%s-%s-%s-%s-%s-draw-%s", ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-11-28 8:14 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-11-28 2:33 [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe Nidhi Gupta 2023-11-28 2:51 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe (rev3) Patchwork 2023-11-28 3:24 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-11-28 3:24 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-11-28 5:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-11-28 8:13 ` [igt-dev] [PATCH i-g-t v3] tests/intel/kms_frontbuffer_tracking: Add new subtest to test FBC on each pipe Modem, Bhanuprakash
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox