* [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection
@ 2023-11-23 6:29 Kunal Joshi
2023-11-23 6:29 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_debugfs: added helper to enable/disable " Kunal Joshi
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Kunal Joshi @ 2023-11-23 6:29 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
dark screen detection feature when enable will monitor frames
and if black frame is detcted it will raise drm_error, added
two tests for positive (black frame) and negative case (white frame)
Kunal Joshi (2):
lib/igt_debugfs: added helper to enable/disable dark screen detection
tests/kms_pipe_crc_basic: added new subtest for darkscreen detection
lib/igt_debugfs.c | 39 +++++++++++++++++++++++++++
lib/igt_debugfs.h | 2 ++
tests/kms_pipe_crc_basic.c | 55 +++++++++++++++++++++++++++++++++-----
3 files changed, 89 insertions(+), 7 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] lib/igt_debugfs: added helper to enable/disable dark screen detection 2023-11-23 6:29 [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection Kunal Joshi @ 2023-11-23 6:29 ` Kunal Joshi 2023-11-28 16:12 ` Juha-Pekka Heikkila 2023-11-23 6:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_pipe_crc_basic: added new subtest for darkscreen detection Kunal Joshi ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Kunal Joshi @ 2023-11-23 6:29 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi, Nemesa Garg, Arun R Murthy added helper function for dark screen detection v2: Fix indentation (JP) Reduce complexity and redundancy (JP) v3: Close fd (JP) Use ternary operator (JP) v4: Added comments for functions (JP) Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Cc: Nemesa Garg <nemesa.garg@intel.com> Cc: Arun R Murthy <arun.r.murthy@intel.com> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/igt_debugfs.c | 39 +++++++++++++++++++++++++++++++++++++++ lib/igt_debugfs.h | 2 ++ 2 files changed, 41 insertions(+) diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c index a7b54bae5..323030b19 100644 --- a/lib/igt_debugfs.c +++ b/lib/igt_debugfs.c @@ -743,3 +743,42 @@ void __igt_debugfs_dump(int device, const char *filename, int level) igt_log(IGT_LOG_DOMAIN, level, "%s:\n%s\n", filename, contents); free(contents); } + +/** + * igt_is_dark_screen_supported: + * @drm_fd: fd of the device + * @pipe: display pipe + * + * Returns true if dark screen detection supported on platform + */ +bool igt_is_dark_screen_supported(int drm_fd, enum pipe pipe) +{ + char buf[256]; + int dir; + + dir = igt_debugfs_pipe_dir(drm_fd, pipe, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_darkscreen_status", buf, sizeof(buf)); + close(dir); + return (*buf == '0' || *buf == '1'); +} + +/** + * igt_set_dark_screen_detection: + * @drm_fd: fd of the device + * @pipe: display pipe + * @enable: bool to enable/disable dark screen detection + * + * Enable/Disable dark screen detection for given @pipe + */ +ssize_t igt_set_dark_screen_detection(int drm_fd, enum pipe pipe, bool enable) +{ + int dir; + int size; + + dir = igt_debugfs_pipe_dir(drm_fd, pipe, O_DIRECTORY); + igt_require_fd(dir); + size = igt_sysfs_write(dir, "i915_darkscreen_status", enable ? "1" : "0", 1); + close(dir); + return size; +} diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h index 3e6194ade..68f25be59 100644 --- a/lib/igt_debugfs.h +++ b/lib/igt_debugfs.h @@ -77,6 +77,8 @@ void igt_hpd_storm_reset(int fd); bool igt_hpd_storm_detected(int fd); void igt_require_hpd_storm_ctl(int fd); bool igt_ignore_long_hpd(int fd, bool enable); +bool igt_is_dark_screen_supported(int drm_fd, enum pipe pipe); +ssize_t igt_set_dark_screen_detection(int drm_fd, enum pipe pipe, bool enable); /* * Drop caches -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/igt_debugfs: added helper to enable/disable dark screen detection 2023-11-23 6:29 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_debugfs: added helper to enable/disable " Kunal Joshi @ 2023-11-28 16:12 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 10+ messages in thread From: Juha-Pekka Heikkila @ 2023-11-28 16:12 UTC (permalink / raw) To: Kunal Joshi, igt-dev; +Cc: Nemesa Garg, Arun R Murthy Hi, On 23.11.2023 8.29, Kunal Joshi wrote: > added helper function for dark screen detection > > v2: Fix indentation (JP) > Reduce complexity and redundancy (JP) > > v3: Close fd (JP) > Use ternary operator (JP) > > v4: Added comments for functions (JP) > > Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > Cc: Nemesa Garg <nemesa.garg@intel.com> > Cc: Arun R Murthy <arun.r.murthy@intel.com> > Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> > --- > lib/igt_debugfs.c | 39 +++++++++++++++++++++++++++++++++++++++ > lib/igt_debugfs.h | 2 ++ > 2 files changed, 41 insertions(+) > > diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c > index a7b54bae5..323030b19 100644 > --- a/lib/igt_debugfs.c > +++ b/lib/igt_debugfs.c > @@ -743,3 +743,42 @@ void __igt_debugfs_dump(int device, const char *filename, int level) > igt_log(IGT_LOG_DOMAIN, level, "%s:\n%s\n", filename, contents); > free(contents); > } > + > +/** > + * igt_is_dark_screen_supported: > + * @drm_fd: fd of the device > + * @pipe: display pipe > + * > + * Returns true if dark screen detection supported on platform > + */ > +bool igt_is_dark_screen_supported(int drm_fd, enum pipe pipe) > +{ > + char buf[256]; > + int dir; > + > + dir = igt_debugfs_pipe_dir(drm_fd, pipe, O_DIRECTORY); > + igt_require_fd(dir); > + igt_debugfs_simple_read(dir, "i915_darkscreen_status", buf, sizeof(buf)); > + close(dir); > + return (*buf == '0' || *buf == '1'); > +} > + > +/** > + * igt_set_dark_screen_detection: > + * @drm_fd: fd of the device > + * @pipe: display pipe > + * @enable: bool to enable/disable dark screen detection > + * > + * Enable/Disable dark screen detection for given @pipe please include here also comment for the meaning of return value. With that Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > + */ > +ssize_t igt_set_dark_screen_detection(int drm_fd, enum pipe pipe, bool enable) > +{ > + int dir; > + int size; > + > + dir = igt_debugfs_pipe_dir(drm_fd, pipe, O_DIRECTORY); > + igt_require_fd(dir); > + size = igt_sysfs_write(dir, "i915_darkscreen_status", enable ? "1" : "0", 1); > + close(dir); > + return size; > +} > diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h > index 3e6194ade..68f25be59 100644 > --- a/lib/igt_debugfs.h > +++ b/lib/igt_debugfs.h > @@ -77,6 +77,8 @@ void igt_hpd_storm_reset(int fd); > bool igt_hpd_storm_detected(int fd); > void igt_require_hpd_storm_ctl(int fd); > bool igt_ignore_long_hpd(int fd, bool enable); > +bool igt_is_dark_screen_supported(int drm_fd, enum pipe pipe); > +ssize_t igt_set_dark_screen_detection(int drm_fd, enum pipe pipe, bool enable); > > /* > * Drop caches ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/kms_pipe_crc_basic: added new subtest for darkscreen detection 2023-11-23 6:29 [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection Kunal Joshi 2023-11-23 6:29 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_debugfs: added helper to enable/disable " Kunal Joshi @ 2023-11-23 6:29 ` Kunal Joshi 2023-11-23 7:05 ` [igt-dev] ✓ CI.xeBAT: success for add new subtests for dark screen detection (rev4) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 10+ messages in thread From: Kunal Joshi @ 2023-11-23 6:29 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi, Nemesa Garg, Arun R Murthy dark screen detection feature when enable will monitor frames and if black frame is detcted it will raise drm_error, added two tests for positive (black frame) and negative case (white frame) Cc: Nemesa Garg <nemesa.garg@intel.com> Cc: Arun R Murthy <arun.r.murthy@intel.com> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- tests/kms_pipe_crc_basic.c | 55 +++++++++++++++++++++++++++++++++----- 1 file changed, 48 insertions(+), 7 deletions(-) diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c index 94252415b..3c1ad3097 100644 --- a/tests/kms_pipe_crc_basic.c +++ b/tests/kms_pipe_crc_basic.c @@ -47,13 +47,10 @@ typedef struct { struct igt_fb fb; } data_t; -static struct { +typedef struct { double r, g, b; igt_crc_t crc; -} colors[2] = { - { .r = 0.0, .g = 1.0, .b = 0.0 }, - { .r = 0.0, .g = 1.0, .b = 1.0 }, -}; +} color; static bool simulation_constraint(enum pipe pipe) { @@ -92,6 +89,8 @@ enum { TEST_NONBLOCK = 1 << 1, TEST_SUSPEND = 1 << 2, TEST_HANG = 1 << 3, + TEST_DARK_SCREEN = 1 << 4, + TEST_DARK_SCREEN_NEGATIVE = 1 << 5, }; /** @@ -136,6 +135,21 @@ enum { * Test category: functionality test * Functionality: crc, hang * Mega feature: General Display Features + * + * SUBTEST: darkscreen-read-crc + * Description: Test dark screen detection works + * Driver requirement: i915, xe + * Test category: functionality test + * Functionality: crc, hang, darkscreen + * Mega feature: General Display Features + * + * SUBTEST: negative-darkscreen-read-crc + * Description: Test false positives aren't reported by dark screen detection + * Driver requirement: i915, xe + * Test category: functionality test + * Functionality: crc, hang, darkscreen + * Mega feature: General Display Features + * */ static void test_read_crc(data_t *data, enum pipe pipe, igt_output_t *output, unsigned flags) @@ -144,7 +158,8 @@ static void test_read_crc(data_t *data, enum pipe pipe, igt_plane_t *primary; drmModeModeInfo *mode; igt_crc_t *crcs = NULL; - int c, j; + color *colors; + int c, j, no_of_colors; igt_display_reset(display); @@ -153,7 +168,22 @@ static void test_read_crc(data_t *data, enum pipe pipe, primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); - for (c = 0; c < ARRAY_SIZE(colors); c++) { + if (flags & TEST_DARK_SCREEN) { + no_of_colors = 1; + colors = (color *)malloc(no_of_colors * sizeof(color)); + colors[0] = (color){ .r = 0.0, .g = 0.0, .b = 0.0 }; + } else if (flags & TEST_DARK_SCREEN_NEGATIVE) { + no_of_colors = 1; + colors = (color *)malloc(no_of_colors * sizeof(color)); + colors[0] = (color){ .r = 1.0, .g = 1.0, .b = 1.0 }; + } else { + no_of_colors = 2; + colors = (color *)malloc(no_of_colors * sizeof(color)); + colors[0] = (color){ .r = 0.0, .g = 1.0, .b = 0.0 }; + colors[1] = (color){ .r = 0.0, .g = 1.0, .b = 1.0 }; + } + + for (c = 0; c < no_of_colors; c++) { char *crc_str; int n_crcs; @@ -229,6 +259,7 @@ static void test_read_crc(data_t *data, enum pipe pipe, } /* Clean-up */ + free(colors); igt_output_set_pipe(output, PIPE_NONE); igt_plane_set_fb(primary, NULL); igt_display_commit(display); @@ -422,6 +453,10 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) "Suspend test for pipe CRC reads." }, { "hang-read-crc", TEST_HANG, "Hang test for pipe CRC read." }, + {"darkscreen-read-crc", TEST_DARK_SCREEN, + "Test dark screen detection works."}, + {"negative-darkscreen-read-crc", TEST_DARK_SCREEN_NEGATIVE, + "Test false positives aren't reported by dark screen detection."}, }; int i; last_pipe = 0; @@ -475,6 +510,12 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) test_read_crc(&data, pipe, output, 0); igt_disallow_hang(data.drm_fd, hang); + } else if (tests[i].flags & TEST_DARK_SCREEN || tests[i].flags & TEST_DARK_SCREEN_NEGATIVE) { + igt_require_f(igt_is_dark_screen_supported(data.drm_fd, pipe), + "Dark Screen Detection not supported\n"); + igt_set_dark_screen_detection(data.drm_fd, pipe, true); + test_read_crc(&data, pipe, output, tests[i].flags); + igt_set_dark_screen_detection(data.drm_fd, pipe, false); } else { test_read_crc(&data, pipe, output, tests[i].flags); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for add new subtests for dark screen detection (rev4) 2023-11-23 6:29 [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection Kunal Joshi 2023-11-23 6:29 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_debugfs: added helper to enable/disable " Kunal Joshi 2023-11-23 6:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_pipe_crc_basic: added new subtest for darkscreen detection Kunal Joshi @ 2023-11-23 7:05 ` Patchwork 2023-11-23 7:08 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-11-24 15:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-11-23 7:05 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2266 bytes --] == Series Details == Series: add new subtests for dark screen detection (rev4) URL : https://patchwork.freedesktop.org/series/125880/ State : success == Summary == CI Bug Log - changes from XEIGT_7597_BAT -> XEIGTPW_10249_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_10249_BAT: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind}: - bat-atsm-2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7597/bat-atsm-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10249/bat-atsm-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_10249_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#480]) +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7597/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10249/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 Build changes ------------- * IGT: IGT_7597 -> IGTPW_10249 IGTPW_10249: 10249 IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-516-59f2e73469cace9c78aab7506284ae446d57b8bc: 59f2e73469cace9c78aab7506284ae446d57b8bc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10249/index.html [-- Attachment #2: Type: text/html, Size: 2870 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for add new subtests for dark screen detection (rev4) 2023-11-23 6:29 [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection Kunal Joshi ` (2 preceding siblings ...) 2023-11-23 7:05 ` [igt-dev] ✓ CI.xeBAT: success for add new subtests for dark screen detection (rev4) Patchwork @ 2023-11-23 7:08 ` Patchwork 2023-11-24 15:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-11-23 7:08 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 14585 bytes --] == Series Details == Series: add new subtests for dark screen detection (rev4) URL : https://patchwork.freedesktop.org/series/125880/ State : success == Summary == CI Bug Log - changes from CI_DRM_13913 -> IGTPW_10249 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/index.html Participating hosts (37 -> 37) ------------------------------ Additional (2): bat-mtlp-6 bat-dg1-5 Missing (2): bat-dg2-9 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10249 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-6: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-mtlp-6: NOTRUN -> [SKIP][2] ([i915#1849] / [i915#2582]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@fbdev@info.html * igt@fbdev@write: - bat-mtlp-6: NOTRUN -> [SKIP][3] ([i915#2582]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@fbdev@write.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-6: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-dg1-5: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@gem_mmap@basic.html - bat-mtlp-6: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@gem_mmap@basic.html * igt@gem_tiled_blits@basic: - bat-mtlp-6: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@gem_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-5: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-5: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@gem_tiled_pread_basic.html - bat-mtlp-6: NOTRUN -> [SKIP][10] ([i915#4079]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg1-5: NOTRUN -> [SKIP][11] ([i915#6621]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@i915_pm_rps@basic-api.html - bat-mtlp-6: NOTRUN -> [SKIP][12] ([i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gem_contexts: - bat-mtlp-8: [PASS][13] -> [DMESG-FAIL][14] ([i915#9579]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/bat-mtlp-8/igt@i915_selftest@live@gem_contexts.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-8/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-6: NOTRUN -> [SKIP][15] ([i915#6645]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][16] ([i915#4212]) +8 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][17] ([i915#5190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][18] ([i915#4212]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][19] ([i915#4215]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg1-5: NOTRUN -> [SKIP][20] ([i915#4103] / [i915#4213]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][21] ([i915#1845]) +12 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg1-5: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#3840]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-mtlp-6: NOTRUN -> [SKIP][23] ([i915#3637]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-load-detect: - bat-mtlp-6: NOTRUN -> [SKIP][24] ([fdo#109285]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-5: NOTRUN -> [SKIP][25] ([fdo#109285]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-6: NOTRUN -> [SKIP][26] ([i915#5274]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-mtlp-6: NOTRUN -> [SKIP][27] ([i915#4342] / [i915#5354]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-5: NOTRUN -> [SKIP][28] ([i915#433]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][29] -> [ABORT][30] ([i915#8668]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-rpls-1: NOTRUN -> [SKIP][31] ([i915#1845]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html - bat-mtlp-6: NOTRUN -> [SKIP][32] ([i915#1845] / [i915#4078]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-5: NOTRUN -> [SKIP][33] ([i915#3555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-6: NOTRUN -> [SKIP][34] ([i915#3555] / [i915#8809]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-mtlp-6: NOTRUN -> [SKIP][35] ([i915#1845] / [i915#3708]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-6: NOTRUN -> [SKIP][36] ([i915#3708] / [i915#4077]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-dg1-5: NOTRUN -> [SKIP][37] ([i915#3708]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-dg1-5: NOTRUN -> [SKIP][38] ([i915#3708] / [i915#4077]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-dg1-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-mtlp-6: NOTRUN -> [SKIP][39] ([i915#3708]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-mtlp-6/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: [ABORT][40] ([i915#7978] / [i915#9631]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][42] ([IGT#3]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-5: - bat-adlp-11: [DMESG-FAIL][44] ([i915#6868]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-5.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-5.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-5: - bat-adlp-11: [FAIL][46] -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-5.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-5.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5: - bat-adlp-11: [ABORT][48] ([i915#8668]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5.html * {igt@kms_psr@psr_cursor_plane_move@edp-1}: - bat-jsl-1: [SKIP][50] ([i915#9648]) -> [PASS][51] +2 other tests pass [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/bat-jsl-1/igt@kms_psr@psr_cursor_plane_move@edp-1.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/bat-jsl-1/igt@kms_psr@psr_cursor_plane_move@edp-1.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#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#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#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [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#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579 [i915#9631]: https://gitlab.freedesktop.org/drm/intel/issues/9631 [i915#9648]: https://gitlab.freedesktop.org/drm/intel/issues/9648 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7597 -> IGTPW_10249 CI-20190529: 20190529 CI_DRM_13913: e0a66c36703db267b371d7c26f68c6c9de2ff36a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10249: 10249 IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_pipe_crc_basic@darkscreen-read-crc +igt@kms_pipe_crc_basic@negative-darkscreen-read-crc -igt@kms_feature_discovery@display-1x == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/index.html [-- Attachment #2: Type: text/html, Size: 17406 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for add new subtests for dark screen detection (rev4) 2023-11-23 6:29 [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection Kunal Joshi ` (3 preceding siblings ...) 2023-11-23 7:08 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-11-24 15:56 ` Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-11-24 15:56 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 63004 bytes --] == Series Details == Series: add new subtests for dark screen detection (rev4) URL : https://patchwork.freedesktop.org/series/125880/ State : success == Summary == CI Bug Log - changes from CI_DRM_13913_full -> IGTPW_10249_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10249_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-b-edp-1} (NEW): - shard-mtlp: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-6/igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-b-edp-1.html * {igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-d-hdmi-a-1} (NEW): - shard-tglu: NOTRUN -> [SKIP][2] +7 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-tglu-8/igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-d-hdmi-a-1.html * {igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-a-hdmi-a-4} (NEW): - shard-dg1: NOTRUN -> [SKIP][3] +7 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-17/igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-a-hdmi-a-4.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3}: - shard-dg1: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html New tests --------- New tests have been introduced between CI_DRM_13913_full and IGTPW_10249_full: ### New IGT tests (33) ### * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-a-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-a-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-b-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-b-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-c-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-c-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-d-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-d-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@darkscreen-read-crc@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-a-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-b-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-c-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-d-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@negative-darkscreen-read-crc@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-4@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10249_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +39 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-7/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-17/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#3936]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#3936]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-16/igt@gem_busy@semaphore.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4873]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@gem_caching@reads.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#9364]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#1099]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-snb2/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#5882]) +9 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@invalid-args: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-7/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][21] -> [FAIL][22] ([i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg1-16/igt@gem_eio@unwedge-stress.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_eio@wait-wedge-10ms: - shard-mtlp: [PASS][23] -> [ABORT][24] ([i915#9414]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-dg2: NOTRUN -> [FAIL][29] ([i915#9606]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +5 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3281]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +12 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-user: - shard-snb: NOTRUN -> [SKIP][36] ([fdo#109271]) +62 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-snb4/igt@gem_exec_schedule@preempt-user.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4860]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4613]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-glk2/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][41] -> [TIMEOUT][42] ([i915#5493]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4077]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-16/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4077]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_wc@copy: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4083]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-19/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@gem_mmap_wc@write.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4083]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3282]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) +10 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@create-valid-protected-context: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4270]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-16/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4270]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8428]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4079]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4885]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4885]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@noreloc-s3: - shard-mtlp: [PASS][57] -> [FAIL][58] ([fdo#103375]) +1 other test fail [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-mtlp-4/igt@gem_softpin@noreloc-s3.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@gem_softpin@noreloc-s3.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][59] ([i915#5889]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +16 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#3323]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3297]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297] / [i915#4958]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-7/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-17/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][67] ([i915#3318]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@gem_userptr_blits@vma-merge.html * igt@gen3_mixed_blits: - shard-dg1: NOTRUN -> [SKIP][68] ([fdo#109289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-18/igt@gen3_mixed_blits.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][69] ([fdo#109289]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@chained-batch: - shard-mtlp: NOTRUN -> [SKIP][70] ([fdo#109289]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +6 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][73] -> [INCOMPLETE][74] ([i915#9407]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][75] ([fdo#109271]) +69 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-glk1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#8925]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_query@query-topology-unsupported: - shard-dg1: NOTRUN -> [SKIP][77] ([fdo#109302]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-16/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][78] ([i915#9311]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4212]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4212]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4212]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-17/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][82] ([i915#8247]) +3 other tests fail [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#1769] / [i915#3555]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][84] ([fdo#111615] / [i915#5286]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-tglu-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#5286]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4538] / [i915#5286]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][87] ([fdo#111614]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][88] ([fdo#111614]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][89] -> [FAIL][90] ([i915#3743]) +1 other test fail [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#5190]) +20 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6187]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4538] / [i915#5190]) +6 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html - shard-tglu: NOTRUN -> [SKIP][94] ([fdo#111615]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-tglu-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#111615]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4087] / [i915#7213]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][97] ([fdo#111827]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][98] ([fdo#111827]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#7828]) +13 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#7828]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#7828]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3299]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3299]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#7118]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][105] ([i915#7173]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#7118] / [i915#7162]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6944]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3555] / [i915#8814]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3359]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1: - shard-mtlp: [PASS][110] -> [FAIL][111] ([fdo#103375] / [i915#9224]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-mtlp-2/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#3546]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][113] ([fdo#109274] / [i915#5354]) +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][114] -> [FAIL][115] ([i915#2346]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4103] / [i915#4213]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#8812]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#3469]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@kms_fbcon_fbt@psr.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4881]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#8381]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#8381]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3637]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][123] ([fdo#109274]) +6 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][124] ([fdo#111825]) +9 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-14/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#2672]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#2587] / [i915#2672]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#2672]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#2672] / [i915#3555]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][129] ([fdo#109285]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [PASS][130] -> [FAIL][131] ([i915#6880]) +1 other test fail [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3458]) +6 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#8708]) +22 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#1825]) +25 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#5460]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#5354]) +44 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3458]) +18 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#8708]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#8708]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#6118]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#8228]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#8228]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#4816]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4816]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#8821]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#8806]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#8806]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6953]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#5176] / [i915#9423]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#5235]) +11 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#5235]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#5235]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#5235]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#6524] / [i915#6805]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#9683]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#4348]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#9681]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#9673]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-14/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#4235]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#5289]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][161] ([fdo#111615] / [i915#5289]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4235] / [i915#5190]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#4235]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][164] ([IGT#2]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-2/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][165] -> [FAIL][166] ([i915#9196]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8808]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-7/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#2437]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@kms_writeback@writeback-check-output.html * igt@perf_pmu@busy@ccs0: - shard-mtlp: [PASS][170] -> [FAIL][171] ([i915#4349]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-mtlp-6/igt@perf_pmu@busy@ccs0.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@perf_pmu@busy@ccs0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3708]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3708] / [i915#4077]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3291] / [i915#3708]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@prime_vgem@basic-write.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#2575]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-19/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#2575]) +8 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-5/igt@v3d/v3d_submit_csd@bad-bo.html * igt@v3d/v3d_submit_csd@bad-flag: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#2575]) +18 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@v3d/v3d_submit_csd@bad-flag.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#7711]) +8 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#7711]) +9 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-3/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#7711]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-16/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: [ABORT][181] ([i915#9414]) -> [PASS][182] +1 other test pass [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-mtlp-6/igt@gem_eio@in-flight-contexts-immediate.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-6/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][183] ([i915#5784]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg1-12/igt@gem_eio@reset-stress.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][185] ([i915#7975] / [i915#8213]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_workarounds@reset: - shard-mtlp: [ABORT][187] ([i915#9262]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-mtlp-4/igt@gem_workarounds@reset.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@gem_workarounds@reset.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [INCOMPLETE][189] ([i915#5566]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-glk9/igt@gen9_exec_parse@allowed-all.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-glk5/igt@gen9_exec_parse@allowed-all.html * {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0}: - shard-dg1: [FAIL][191] ([i915#3591]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][193] ([i915#7790]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-snb2/igt@i915_pm_rps@reset.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-snb2/igt@i915_pm_rps@reset.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][195] ([i915#5138]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][197] ([i915#3743]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][199] ([i915#2346]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: [FAIL][201] ([i915#9196]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][203] ([i915#4349]) -> [PASS][204] +3 other tests pass [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][205] ([i915#5493]) -> [DMESG-WARN][206] ([i915#4936] / [i915#5493]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [DMESG-FAIL][207] ([i915#8561]) -> [FAIL][208] ([i915#8247]) +1 other test fail [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13913/shard-mtlp-4/igt@kms_async_flips@crc@pipe-b-edp-1.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/shard-mtlp-1/igt@kms_async_flips@crc@pipe-b-edp-1.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#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [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#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [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#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#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#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [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#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [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#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [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#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [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#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#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9224]: https://gitlab.freedesktop.org/drm/intel/issues/9224 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407 [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#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681 [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 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7597 -> IGTPW_10249 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13913: e0a66c36703db267b371d7c26f68c6c9de2ff36a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10249: 10249 IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10249/index.html [-- Attachment #2: Type: text/html, Size: 74001 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection @ 2023-11-17 7:03 Kunal Joshi 0 siblings, 0 replies; 10+ messages in thread From: Kunal Joshi @ 2023-11-17 7:03 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi dark screen detection feature when enable will monitor frames and if black frame is detcted it will raise drm_error, added two tests for positive (black frame) and negative case (white frame) Kunal Joshi (2): lib/igt_debugfs: added helper to enable/disable dark screen detection tests/kms_pipe_crc_basic: added new subtest for darkscreen detection lib/igt_debugfs.c | 24 +++++++++++++++++ lib/igt_debugfs.h | 2 ++ tests/kms_pipe_crc_basic.c | 55 +++++++++++++++++++++++++++++++++----- 3 files changed, 74 insertions(+), 7 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection @ 2023-11-15 6:42 Kunal Joshi 0 siblings, 0 replies; 10+ messages in thread From: Kunal Joshi @ 2023-11-15 6:42 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi dark screen detection feature when enable will monitor frames and if black frame is detcted it will raise drm_error, added two tests for positive (black frame) and negative case (white frame) Kunal Joshi (2): lib/igt_debugfs: added helper to enable/disable dark screen detection tests/kms_pipe_crc_basic: added new subtest for darkscreen detection lib/igt_debugfs.c | 23 ++++++++++++++++ lib/igt_debugfs.h | 2 ++ tests/kms_pipe_crc_basic.c | 55 +++++++++++++++++++++++++++++++++----- 3 files changed, 73 insertions(+), 7 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection @ 2023-11-02 6:23 Kunal Joshi 0 siblings, 0 replies; 10+ messages in thread From: Kunal Joshi @ 2023-11-02 6:23 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi dark screen detection feature when enable will monitor frames and if black frame is detcted it will raise drm_error, added two tests for positive (black frame) and negative case (white frame) Kunal Joshi (2): lib/igt_debugfs: added helper to enable/disable dark screen detection tests/kms_pipe_crc_basic: added new subtest for darkscreen detection lib/igt_debugfs.c | 41 ++++++++++++++++++++++++++ lib/igt_debugfs.h | 3 ++ tests/kms_pipe_crc_basic.c | 60 +++++++++++++++++++++++++++++++++----- 3 files changed, 96 insertions(+), 8 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-11-28 16:12 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-11-23 6:29 [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection Kunal Joshi 2023-11-23 6:29 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_debugfs: added helper to enable/disable " Kunal Joshi 2023-11-28 16:12 ` Juha-Pekka Heikkila 2023-11-23 6:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_pipe_crc_basic: added new subtest for darkscreen detection Kunal Joshi 2023-11-23 7:05 ` [igt-dev] ✓ CI.xeBAT: success for add new subtests for dark screen detection (rev4) Patchwork 2023-11-23 7:08 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-11-24 15:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2023-11-17 7:03 [igt-dev] [PATCH i-g-t 0/2] add new subtests for dark screen detection Kunal Joshi 2023-11-15 6:42 Kunal Joshi 2023-11-02 6:23 Kunal Joshi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox