* [PATCH i-g-t v4 0/2] Add CMRR subtests
@ 2026-08-12 13:07 Naladala Ramanaidu
2026-08-12 13:07 ` [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Naladala Ramanaidu @ 2026-08-12 13:07 UTC (permalink / raw)
To: igt-dev
Cc: chaitanya.kumar.borah, mitulkumar.ajitkumar.golani,
Naladala Ramanaidu
Add a subtests to validate CMRR with video mode and fixed mode.
Naladala Ramanaidu (2):
lib/igt_vrr:Add VRR helper library for display refresh rate testing
tests/kms_vrr: add CMRR fixed and video mode subtests
lib/igt_vrr.c | 154 ++++++++++++++++++++++++++++++++++++
lib/igt_vrr.h | 44 +++++++++++
lib/meson.build | 1 +
tests/kms_vrr.c | 204 ++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 403 insertions(+)
create mode 100644 lib/igt_vrr.c
create mode 100644 lib/igt_vrr.h
--
2.43.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing 2026-08-12 13:07 [PATCH i-g-t v4 0/2] Add CMRR subtests Naladala Ramanaidu @ 2026-08-12 13:07 ` Naladala Ramanaidu 2026-08-19 16:03 ` Golani, Mitulkumar Ajitkumar 2026-08-20 11:08 ` Borah, Chaitanya Kumar 2026-08-12 13:07 ` [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests Naladala Ramanaidu ` (4 subsequent siblings) 5 siblings, 2 replies; 12+ messages in thread From: Naladala Ramanaidu @ 2026-08-12 13:07 UTC (permalink / raw) To: igt-dev Cc: chaitanya.kumar.borah, mitulkumar.ajitkumar.golani, Naladala Ramanaidu Introduce a new helper library for Variable Refresh Rate (VRR). Add helpers to validate targeted refresh-rate testing. v2: Modify debugfs with helpers. v3: Add helper to check cmrr support. Address review comments. (Mitul) Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- lib/igt_vrr.c | 154 ++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_vrr.h | 44 ++++++++++++++ lib/meson.build | 1 + 3 files changed, 199 insertions(+) create mode 100644 lib/igt_vrr.c create mode 100644 lib/igt_vrr.h diff --git a/lib/igt_vrr.c b/lib/igt_vrr.c new file mode 100644 index 000000000..704eaa3a3 --- /dev/null +++ b/lib/igt_vrr.c @@ -0,0 +1,154 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2026 Intel Corporation + */ + +#include <inttypes.h> + +#include "igt_vrr.h" +#include "igt_sysfs.h" + +const uint32_t igt_vrr_standard_video_timing_fps[] = { + 24, 25, 30, 48, 50, 60, 75, 90, 96, 100, 120, 144, 165, 180, 200, 240, +}; + +const size_t igt_vrr_standard_video_timing_fps_count = + ARRAY_SIZE(igt_vrr_standard_video_timing_fps); + +/** + * igt_target_rr_debugfs_write: + * @fd: DRM file descriptor. + * @crtc_index: Index of the CRTC. + * @vrefresh: Target refresh rate to program. + * @numerator: Numerator component of the target refresh rate fraction. + * @denominator: Denominator component of the target refresh rate fraction. + * + * Write the target refresh rate configuration to the per-CRTC + * VRR debugfs interface. + * + * Returns: None. + */ +void +igt_target_rr_debugfs_write(int fd, int crtc_index, + uint32_t vrefresh, + uint32_t numerator, + uint32_t denominator) +{ + char buf[32]; + int ret, dir; + uint64_t val; + + val = vrefresh * numerator; + + snprintf(buf, sizeof(buf), "%" PRIu64 "/%u", + val, denominator); + + dir = igt_debugfs_crtc_dir(fd, crtc_index); + igt_require_fd(dir); + + ret = igt_sysfs_write(dir, "intel_vrr_target_refresh_rate", + buf, sizeof(buf) - 1); + close(dir); + igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed"); +} + +/** + * igt_cmrr_debugfs_read: + * @fd: DRM file descriptor. + * @crtc_index: Index of the CRTC. + * + * Read the configured refresh rate from the per-CRTC VRR debugfs node. + * + * Return: None. + */ +void +igt_target_rr_debugfs_read(int fd, int crtc_index) +{ + char buf[32]; + int ret, dir; + + dir = igt_debugfs_crtc_dir(fd, crtc_index); + igt_require_fd(dir); + + ret = igt_sysfs_read(dir, "intel_vrr_target_refresh_rate", + buf, sizeof(buf) - 1); + close(dir); + igt_assert_f(ret >= 0, + "Failed to read intel_vrr_target_refresh_rate.\n"); + + buf[ret] = '\0'; + + igt_info("vrr target RR: %s\n", buf); +} + +/** + * igt_vrr_mode_line_refresh_hz: + * @mode: DRM display mode used for the calculation + * + * Compute the refresh rate directly from the mode timing parameters. + * + * Returns: Refresh rate in Hz as a floating-point value. + */ +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode) +{ + return (double)mode->clock * 1000.0 / ((double)mode->htotal * (double)mode->vtotal); +} + +/** + * igt_vrr_get_mode_with_video_timing: + * @output: Display output containing connector mode list + * @fps: Requested integer refresh rate in Hz + * @matched_mode: Returned mode that matches @fps + * + * Find and return a connector mode that matches the requested + * video timing refresh rate in Hz. + * + * Returns: true when a mode is found, false otherwise + */ + +bool igt_vrr_get_mode_with_video_timing(igt_output_t *output, + uint32_t fps, + drmModeModeInfo *matched_mode) +{ + drmModeConnectorPtr connector; + + connector = output->config.connector; + if (!connector) + return false; + + for (int i = 0; i < connector->count_modes; i++) { + if (connector->modes[i].vrefresh == fps) { + *matched_mode = connector->modes[i]; + return true; + } + } + return false; +} + +/** + * cmrr_supported: + * @fd: DRM device file descriptor. + * @crtc_index: Index of the CRTC. + * + * Checks whether the intel_vrr_target_refresh_rate debugfs node is present + * for the specified CRTC, indicating CMRR support. + * + * Returns: true if CMRR is supported, false otherwise. + */ +bool cmrr_supported(int fd, int crtc_index) +{ + int dir; + + dir = igt_debugfs_crtc_dir(fd, crtc_index); + + if (dir < 0) + return false; + + if (faccessat(dir, "intel_vrr_target_refresh_rate", F_OK, 0) == 0) { + close(dir); + return true; + } + + close(dir); + return false; +} diff --git a/lib/igt_vrr.h b/lib/igt_vrr.h new file mode 100644 index 000000000..a317d4684 --- /dev/null +++ b/lib/igt_vrr.h @@ -0,0 +1,44 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2026 Intel Corporation + */ + +#ifndef IGT_VRR_H +#define IGT_VRR_H + +#include <stdbool.h> +#include <stdint.h> +#include "igt.h" +#include "igt_kms.h" + +#define CMRR_NUMERATOR 1000ULL +#define CMRR_DENOMINATOR 1000ULL +#define CMRR_VIDEO_MODE_DENOMINATOR 1001ULL +#define TARGET_RR_SAMP_COUNT 100 + +enum { + CMRR_VIDEO_MODE, + CMRR_NON_VIDEO_MODE, + CMRR_DISABLE, +}; + +extern const uint32_t igt_vrr_standard_video_timing_fps[]; +extern const size_t igt_vrr_standard_video_timing_fps_count; + +void +igt_target_rr_debugfs_write(int fd, int crtc_index, + uint32_t vrefresh, + uint32_t numerator, + uint32_t denominator); +void +igt_target_rr_debugfs_read(int fd, int crtc_index); + +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode); + +bool igt_vrr_get_mode_with_video_timing(igt_output_t *output, + uint32_t fps, + drmModeModeInfo *matched_mode); + +bool cmrr_supported(int fd, int crtc_index); + +#endif diff --git a/lib/meson.build b/lib/meson.build index 3001b473e..8675bd4a6 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -22,6 +22,7 @@ lib_sources = [ 'igt_configfs.c', 'igt_facts.c', 'igt_crc.c', + 'igt_vrr.c', 'igt_debugfs.c', 'igt_device.c', 'igt_device_scan.c', -- 2.43.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* RE: [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing 2026-08-12 13:07 ` [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu @ 2026-08-19 16:03 ` Golani, Mitulkumar Ajitkumar 2026-08-20 11:08 ` Borah, Chaitanya Kumar 1 sibling, 0 replies; 12+ messages in thread From: Golani, Mitulkumar Ajitkumar @ 2026-08-19 16:03 UTC (permalink / raw) To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org; +Cc: Borah, Chaitanya Kumar > -----Original Message----- > From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com> > Sent: 12 August 2026 18:38 > To: igt-dev@lists.freedesktop.org > Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Golani, > Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>; Naladala, > Ramanaidu <ramanaidu.naladala@intel.com> > Subject: [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display > refresh rate testing > > Introduce a new helper library for Variable Refresh Rate (VRR). > > Add helpers to validate targeted refresh-rate testing. > > v2: Modify debugfs with helpers. > v3: Add helper to check cmrr support. > Address review comments. (Mitul) > Please update change log, this helps reader to track what new changes are coming as part of this revision. > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > lib/igt_vrr.c | 154 ++++++++++++++++++++++++++++++++++++++++++++++++ > lib/igt_vrr.h | 44 ++++++++++++++ > lib/meson.build | 1 + > 3 files changed, 199 insertions(+) > create mode 100644 lib/igt_vrr.c > create mode 100644 lib/igt_vrr.h > > diff --git a/lib/igt_vrr.c b/lib/igt_vrr.c new file mode 100644 index > 000000000..704eaa3a3 > --- /dev/null > +++ b/lib/igt_vrr.c > @@ -0,0 +1,154 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2026 Intel Corporation > + */ > + > +#include <inttypes.h> > + > +#include "igt_vrr.h" > +#include "igt_sysfs.h" > + > +const uint32_t igt_vrr_standard_video_timing_fps[] = { > + 24, 25, 30, 48, 50, 60, 75, 90, 96, 100, 120, 144, 165, 180, 200, 240, > +}; > + > +const size_t igt_vrr_standard_video_timing_fps_count = > + ARRAY_SIZE(igt_vrr_standard_video_timing_fps); > + > +/** > + * igt_target_rr_debugfs_write: > + * @fd: DRM file descriptor. > + * @crtc_index: Index of the CRTC. > + * @vrefresh: Target refresh rate to program. > + * @numerator: Numerator component of the target refresh rate fraction. > + * @denominator: Denominator component of the target refresh rate > fraction. > + * > + * Write the target refresh rate configuration to the per-CRTC > + * VRR debugfs interface. > + * > + * Returns: None. > + */ > +void > +igt_target_rr_debugfs_write(int fd, int crtc_index, > + uint32_t vrefresh, > + uint32_t numerator, > + uint32_t denominator) > +{ > + char buf[32]; > + int ret, dir; > + uint64_t val; > + > + val = vrefresh * numerator; Use val = (uint64_t)vrefresh * numerator; for safety even though current ranges don't overflow. > + > + snprintf(buf, sizeof(buf), "%" PRIu64 "/%u", > + val, denominator); > + > + dir = igt_debugfs_crtc_dir(fd, crtc_index); > + igt_require_fd(dir); > + > + ret = igt_sysfs_write(dir, "intel_vrr_target_refresh_rate", > + buf, sizeof(buf) - 1); write the actual string length, not a fixed size. buf is uninitialized stack, so this sends garbage bytes after the terminating NUL to the kernel. Please write strlen(buf) and assert against that. "size_t n = strlen(buf); ret = igt_sysfs_write(dir, "intel_vrr_target_refresh_rate", buf, n); igt_assert_f(ret == n, "debugfs write failed\n");" > + close(dir); > + igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed"); } > + > +/** > + * igt_cmrr_debugfs_read: > + * @fd: DRM file descriptor. > + * @crtc_index: Index of the CRTC. > + * > + * Read the configured refresh rate from the per-CRTC VRR debugfs node. > + * > + * Return: None. > + */ > +void > +igt_target_rr_debugfs_read(int fd, int crtc_index) { The above doc block says igt_cmrr_debugfs_read but the function is igt_target_rr_debugfs_read. > + char buf[32]; > + int ret, dir; > + > + dir = igt_debugfs_crtc_dir(fd, crtc_index); > + igt_require_fd(dir); > + > + ret = igt_sysfs_read(dir, "intel_vrr_target_refresh_rate", > + buf, sizeof(buf) - 1); > + close(dir); > + igt_assert_f(ret >= 0, > + "Failed to read intel_vrr_target_refresh_rate.\n"); The close(dir) and igt_assert_f(...) lines in the write helper use spaces; IGT uses tabs. > + > + buf[ret] = '\0'; > + > + igt_info("vrr target RR: %s\n", buf); > +} > + > +/** > + * igt_vrr_mode_line_refresh_hz: > + * @mode: DRM display mode used for the calculation > + * > + * Compute the refresh rate directly from the mode timing parameters. > + * > + * Returns: Refresh rate in Hz as a floating-point value. > + */ > +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode) { > + return (double)mode->clock * 1000.0 / ((double)mode->htotal * > +(double)mode->vtotal); } > + > +/** > + * igt_vrr_get_mode_with_video_timing: > + * @output: Display output containing connector mode list > + * @fps: Requested integer refresh rate in Hz > + * @matched_mode: Returned mode that matches @fps > + * > + * Find and return a connector mode that matches the requested > + * video timing refresh rate in Hz. > + * > + * Returns: true when a mode is found, false otherwise */ > + > +bool igt_vrr_get_mode_with_video_timing(igt_output_t *output, > + uint32_t fps, > + drmModeModeInfo > *matched_mode) > +{ > + drmModeConnectorPtr connector; > + > + connector = output->config.connector; > + if (!connector) > + return false; > + > + for (int i = 0; i < connector->count_modes; i++) { > + if (connector->modes[i].vrefresh == fps) { > + *matched_mode = connector->modes[i]; > + return true; > + } > + } > + return false; > +} > + > +/** > + * cmrr_supported: > + * @fd: DRM device file descriptor. > + * @crtc_index: Index of the CRTC. > + * > + * Checks whether the intel_vrr_target_refresh_rate debugfs node is > +present > + * for the specified CRTC, indicating CMRR support. > + * > + * Returns: true if CMRR is supported, false otherwise. > + */ > +bool cmrr_supported(int fd, int crtc_index) { add the igt_ namespace prefix. cmrr_supported in a shared lib is inconsistent with every other exported symbol. Rename to igt_vrr_cmrr_supported() (update the header and callers). > + int dir; > + > + dir = igt_debugfs_crtc_dir(fd, crtc_index); > + > + if (dir < 0) > + return false; > + > + if (faccessat(dir, "intel_vrr_target_refresh_rate", F_OK, 0) == 0) { > + close(dir); > + return true; > + } > + > + close(dir); > + return false; > +} > diff --git a/lib/igt_vrr.h b/lib/igt_vrr.h new file mode 100644 index > 000000000..a317d4684 > --- /dev/null > +++ b/lib/igt_vrr.h > @@ -0,0 +1,44 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright © 2026 Intel Corporation > + */ > + > +#ifndef IGT_VRR_H > +#define IGT_VRR_H > + > +#include <stdbool.h> > +#include <stdint.h> > +#include "igt.h" > +#include "igt_kms.h" > + > +#define CMRR_NUMERATOR 1000ULL > +#define CMRR_DENOMINATOR 1000ULL > +#define CMRR_VIDEO_MODE_DENOMINATOR 1001ULL #define > +TARGET_RR_SAMP_COUNT 100 > + > +enum { > + CMRR_VIDEO_MODE, > + CMRR_NON_VIDEO_MODE, > + CMRR_DISABLE, > +}; > + > +extern const uint32_t igt_vrr_standard_video_timing_fps[]; > +extern const size_t igt_vrr_standard_video_timing_fps_count; > + > +void > +igt_target_rr_debugfs_write(int fd, int crtc_index, > + uint32_t vrefresh, > + uint32_t numerator, > + uint32_t denominator); > +void > +igt_target_rr_debugfs_read(int fd, int crtc_index); > + > +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode); > + > +bool igt_vrr_get_mode_with_video_timing(igt_output_t *output, > + uint32_t fps, > + drmModeModeInfo > *matched_mode); > + > +bool cmrr_supported(int fd, int crtc_index); > + > +#endif > diff --git a/lib/meson.build b/lib/meson.build index 3001b473e..8675bd4a6 > 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -22,6 +22,7 @@ lib_sources = [ > 'igt_configfs.c', > 'igt_facts.c', > 'igt_crc.c', > + 'igt_vrr.c', > 'igt_debugfs.c', > 'igt_device.c', > 'igt_device_scan.c', > -- > 2.43.0 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing 2026-08-12 13:07 ` [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu 2026-08-19 16:03 ` Golani, Mitulkumar Ajitkumar @ 2026-08-20 11:08 ` Borah, Chaitanya Kumar 1 sibling, 0 replies; 12+ messages in thread From: Borah, Chaitanya Kumar @ 2026-08-20 11:08 UTC (permalink / raw) To: Naladala Ramanaidu, igt-dev; +Cc: mitulkumar.ajitkumar.golani Hello Rama, On 8/12/2026 6:37 PM, Naladala Ramanaidu wrote: > Introduce a new helper library for Variable Refresh Rate (VRR). > > Add helpers to validate targeted refresh-rate testing. > > v2: Modify debugfs with helpers. > v3: Add helper to check cmrr support. > Address review comments. (Mitul) > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > lib/igt_vrr.c | 154 ++++++++++++++++++++++++++++++++++++++++++++++++ > lib/igt_vrr.h | 44 ++++++++++++++ > lib/meson.build | 1 + > 3 files changed, 199 insertions(+) > create mode 100644 lib/igt_vrr.c > create mode 100644 lib/igt_vrr.h > > diff --git a/lib/igt_vrr.c b/lib/igt_vrr.c > new file mode 100644 > index 000000000..704eaa3a3 > --- /dev/null > +++ b/lib/igt_vrr.c > @@ -0,0 +1,154 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2026 Intel Corporation > + */ > + > +#include <inttypes.h> > + > +#include "igt_vrr.h" > +#include "igt_sysfs.h" > + > +const uint32_t igt_vrr_standard_video_timing_fps[] = { > + 24, 25, 30, 48, 50, 60, 75, 90, 96, 100, 120, 144, 165, 180, 200, 240, > +}; > + Please cite the source/rationale for these RRs > +const size_t igt_vrr_standard_video_timing_fps_count = > + ARRAY_SIZE(igt_vrr_standard_video_timing_fps); > + > +/** > + * igt_target_rr_debugfs_write: > + * @fd: DRM file descriptor. > + * @crtc_index: Index of the CRTC. > + * @vrefresh: Target refresh rate to program. > + * @numerator: Numerator component of the target refresh rate fraction. > + * @denominator: Denominator component of the target refresh rate fraction. > + * > + * Write the target refresh rate configuration to the per-CRTC > + * VRR debugfs interface. > + * > + * Returns: None. > + */ > +void > +igt_target_rr_debugfs_write(int fd, int crtc_index, > + uint32_t vrefresh, > + uint32_t numerator, > + uint32_t denominator) You can simplify the arguments to rr_numerator and rr_denominator. Skip vrefresh. > +{ > + char buf[32]; > + int ret, dir; > + uint64_t val; > + > + val = vrefresh * numerator; > + > + snprintf(buf, sizeof(buf), "%" PRIu64 "/%u", > + val, denominator); > + > + dir = igt_debugfs_crtc_dir(fd, crtc_index); > + igt_require_fd(dir); > + > + ret = igt_sysfs_write(dir, "intel_vrr_target_refresh_rate", > + buf, sizeof(buf) - 1); Better to use strlen so that we don't send out any garbage to kernel. Also what is the policy regarding using intel specific debugfs in lib? Should there be a wrapper to abstract it? > + close(dir); > + igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed"); > +} > + > +/** > + * igt_cmrr_debugfs_read: needs update. > + * @fd: DRM file descriptor. > + * @crtc_index: Index of the CRTC. > + * > + * Read the configured refresh rate from the per-CRTC VRR debugfs node. > + * > + * Return: None. > + */ > +void > +igt_target_rr_debugfs_read(int fd, int crtc_index) > +{ > + char buf[32]; > + int ret, dir; > + > + dir = igt_debugfs_crtc_dir(fd, crtc_index); > + igt_require_fd(dir); > + > + ret = igt_sysfs_read(dir, "intel_vrr_target_refresh_rate", > + buf, sizeof(buf) - 1); > + close(dir); > + igt_assert_f(ret >= 0, > + "Failed to read intel_vrr_target_refresh_rate.\n"); > + > + buf[ret] = '\0'; > + > + igt_info("vrr target RR: %s\n", buf); > +} > + > +/** > + * igt_vrr_mode_line_refresh_hz: > + * @mode: DRM display mode used for the calculation > + * > + * Compute the refresh rate directly from the mode timing parameters. > + * > + * Returns: Refresh rate in Hz as a floating-point value. > + */ > +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode) > +{ > + return (double)mode->clock * 1000.0 / ((double)mode->htotal * (double)mode->vtotal); > +} > + > +/** > + * igt_vrr_get_mode_with_video_timing: > + * @output: Display output containing connector mode list > + * @fps: Requested integer refresh rate in Hz > + * @matched_mode: Returned mode that matches @fps > + * > + * Find and return a connector mode that matches the requested > + * video timing refresh rate in Hz. > + * > + * Returns: true when a mode is found, false otherwise > + */ > + > +bool igt_vrr_get_mode_with_video_timing(igt_output_t *output, > + uint32_t fps, > + drmModeModeInfo *matched_mode) This helper seems to be only relevant to CMRR for now. So better to move it to the test file? Do you see it being used elsewhere? > +{ > + drmModeConnectorPtr connector; > + > + connector = output->config.connector; > + if (!connector) > + return false; > + > + for (int i = 0; i < connector->count_modes; i++) { > + if (connector->modes[i].vrefresh == fps) { > + *matched_mode = connector->modes[i]; > + return true; > + } > + } > + return false; > +} > + > +/** > + * cmrr_supported: > + * @fd: DRM device file descriptor. > + * @crtc_index: Index of the CRTC. > + * > + * Checks whether the intel_vrr_target_refresh_rate debugfs node is present > + * for the specified CRTC, indicating CMRR support. > + * > + * Returns: true if CMRR is supported, false otherwise. > + */ > +bool cmrr_supported(int fd, int crtc_index) You can rename it to target_refresh_rate_supported. > +{ > + int dir; > + > + dir = igt_debugfs_crtc_dir(fd, crtc_index); > + > + if (dir < 0) > + return false; > + > + if (faccessat(dir, "intel_vrr_target_refresh_rate", F_OK, 0) == 0) { > + close(dir); > + return true; > + } > + > + close(dir); > + return false; > +} > diff --git a/lib/igt_vrr.h b/lib/igt_vrr.h > new file mode 100644 > index 000000000..a317d4684 > --- /dev/null > +++ b/lib/igt_vrr.h > @@ -0,0 +1,44 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright © 2026 Intel Corporation > + */ > + > +#ifndef IGT_VRR_H > +#define IGT_VRR_H > + > +#include <stdbool.h> > +#include <stdint.h> > +#include "igt.h" > +#include "igt_kms.h" > + > +#define CMRR_NUMERATOR 1000ULL > +#define CMRR_DENOMINATOR 1000ULL > +#define CMRR_VIDEO_MODE_DENOMINATOR 1001ULL > +#define TARGET_RR_SAMP_COUNT 100 > + > +enum { > + CMRR_VIDEO_MODE, > + CMRR_NON_VIDEO_MODE, > + CMRR_DISABLE, > +}; > + move these macros and enums out to the test file. == Chaitanya > +extern const uint32_t igt_vrr_standard_video_timing_fps[]; > +extern const size_t igt_vrr_standard_video_timing_fps_count; > + > +void > +igt_target_rr_debugfs_write(int fd, int crtc_index, > + uint32_t vrefresh, > + uint32_t numerator, > + uint32_t denominator); > +void > +igt_target_rr_debugfs_read(int fd, int crtc_index); > + > +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode); > + > +bool igt_vrr_get_mode_with_video_timing(igt_output_t *output, > + uint32_t fps, > + drmModeModeInfo *matched_mode); > + > +bool cmrr_supported(int fd, int crtc_index); > + > +#endif > diff --git a/lib/meson.build b/lib/meson.build > index 3001b473e..8675bd4a6 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -22,6 +22,7 @@ lib_sources = [ > 'igt_configfs.c', > 'igt_facts.c', > 'igt_crc.c', > + 'igt_vrr.c', > 'igt_debugfs.c', > 'igt_device.c', > 'igt_device_scan.c', ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests 2026-08-12 13:07 [PATCH i-g-t v4 0/2] Add CMRR subtests Naladala Ramanaidu 2026-08-12 13:07 ` [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu @ 2026-08-12 13:07 ` Naladala Ramanaidu 2026-08-19 17:00 ` Golani, Mitulkumar Ajitkumar 2026-08-20 11:10 ` Borah, Chaitanya Kumar 2026-08-12 14:12 ` ✓ i915.CI.BAT: success for Add CMRR subtests (rev4) Patchwork ` (3 subsequent siblings) 5 siblings, 2 replies; 12+ messages in thread From: Naladala Ramanaidu @ 2026-08-12 13:07 UTC (permalink / raw) To: igt-dev Cc: chaitanya.kumar.borah, mitulkumar.ajitkumar.golani, Naladala Ramanaidu Add test coverage to validate Content Match Refresh Rate (CMRR) behavior across both fixed and video timing display modes. This introduces a shared helper library to support refresh-rate mode selection and parsing, along with two new test cases covering fixed-mode and video-mode scenarios. The new tests measure actual display refresh timing during CMRR operation and compare it against the expected target rate to verify correctness. Video mode coverage validates behavior across standard video timing rates, while fixed mode coverage targets display modes that fall outside the standard video timing set. Each test cycles through the relevant refresh configurations, applying and resetting the appropriate settings between measurement passes to ensure consistent and isolated test results. v2: Fix test issue. v3: Address review comments. (Mitul) v4: Fix test issue. Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/kms_vrr.c | 204 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 204 insertions(+) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 27f18e8d0..ab6bc66d9 100644 --- a/tests/kms_vrr.c +++ b/tests/kms_vrr.c @@ -32,6 +32,7 @@ #include "igt_pm.h" #include "igt_psr.h" #include "i915/intel_drrs.h" +#include "igt_vrr.h" #include "sw_sync.h" #include <fcntl.h> #include <signal.h> @@ -80,6 +81,14 @@ * * SUBTEST: lobf-dc3co * Description: Test DC3CO entry during LOBF. + * + * SUBTEST: cmrr-fixed-mode + * Description: Test to set a fixed CMRR target refresh rate and verify it + * is correctly applied. + * + * SUBTEST: cmrr-video-mode + * Description: Test to set standard video timing refresh rates via CMRR + * and verify each target rate is correctly applied. */ #define NSECS_PER_SEC (1000000000ull) @@ -103,6 +112,8 @@ enum { TEST_LINK_OFF = 1 << 10, TEST_NEGATIVE = 1 << 11, TEST_FORCE_RR = 1 << 12, + TEST_CMRR_FIXED_MODE = 1 << 13, + TEST_CMRR_VIDEO_MODE = 1 << 14, }; enum { @@ -580,6 +591,184 @@ flip_and_measure(data_t *data, igt_output_t *output, return 0; } +static +uint64_t wait_next_vblank_ts_ns(data_t *data, igt_crtc_t *crtc) +{ + union drm_wait_vblank vbl = {}; + + vbl.request.type = DRM_VBLANK_RELATIVE | igt_crtc_get_vbl_flag(crtc); + vbl.request.sequence = 1; + do_or_die(igt_ioctl(data->drm_fd, DRM_IOCTL_WAIT_VBLANK, &vbl)); + + return vbl.reply.tval_sec * NSECS_PER_SEC + vbl.reply.tval_usec * 1000ull; +} + +static void +flip_and_measure_target_rr(data_t *data, igt_crtc_t *crtc, + double vrefresh, uint32_t cmrr_mode) +{ + uint32_t i; + bool front = false; + uint64_t last_vblank_ns, vblank_ns; + uint32_t err_frames = 0; + uint64_t frame_times_ns[TARGET_RR_SAMP_COUNT]; + uint64_t exp_time_ns; + uint64_t total_frame_time_ns = 0; + uint64_t avg_frame_time_ns; + double avg_refresh_rate; + double expected_rr; + uint32_t valid_frames = 0; + + exp_time_ns = igt_kms_frame_time_from_vrefresh(vrefresh); + + do_flip(data, &data->fb[0]); + (void)get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE); + last_vblank_ns = wait_next_vblank_ts_ns(data, crtc); + + for (i = 0; i < TARGET_RR_SAMP_COUNT; i++) { + front = !front; + + do_flip(data, front ? &data->fb[1] : &data->fb[0]); + vblank_ns = wait_next_vblank_ts_ns(data, crtc); + (void)get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE); + + frame_times_ns[i] = vblank_ns - last_vblank_ns; + + if (frame_times_ns[i] > (exp_time_ns + (exp_time_ns / 2))) { + err_frames++; + last_vblank_ns = vblank_ns; + continue; + } + + last_vblank_ns = vblank_ns; + total_frame_time_ns += frame_times_ns[i]; + } + + valid_frames = TARGET_RR_SAMP_COUNT - err_frames; + igt_assert_f(valid_frames > 0, + "No valid frame samples collected\n"); + + avg_frame_time_ns = total_frame_time_ns / valid_frames; + avg_refresh_rate = (double)NSECS_PER_SEC / (double)avg_frame_time_ns; + + if (cmrr_mode == CMRR_VIDEO_MODE) { + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) / + (double)CMRR_VIDEO_MODE_DENOMINATOR; + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, + "CMRR refresh rate mismatch: " + "measured avg_rr = %.3f Hz, " + "expected_rr = %.3f Hz\n", + avg_refresh_rate, expected_rr); + } + + if (cmrr_mode == CMRR_NON_VIDEO_MODE) { + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) / + (double)CMRR_DENOMINATOR; + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, + "CMRR refresh rate mismatch: " + "measured avg_rr = %.3f Hz, " + "expected_rr = %.3f Hz\n", + avg_refresh_rate, expected_rr); + } + + if (cmrr_mode == CMRR_DISABLE) { + expected_rr = vrefresh; + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, + "CMRR refresh rate mismatch: " + "measured avg_rr = %.3f Hz, " + "expected_rr = %.3f Hz\n", + avg_refresh_rate, expected_rr); + } + + igt_info("Average RR (Hz): %.2f , Expected RR (Hz): %.2f, error frames = %d\n", + avg_refresh_rate, expected_rr, err_frames); +} + +static +void test_cmrr(data_t *data, igt_crtc_t *crtc, + igt_output_t *output, uint32_t flags) +{ + uint32_t found; + double rr_from_mode; + drmModeModeInfo mode; + drmModeConnectorPtr connector; + int j; + + igt_require_f(cmrr_supported(data->drm_fd, crtc->crtc_index), + "CMRR not supported\n"); + prepare_test(data, output, crtc); + set_vrr_on_crtc(data, crtc, true, false); + + if (flags & TEST_CMRR_VIDEO_MODE) { + for (j = 0; j < igt_vrr_standard_video_timing_fps_count; j++) { + found = igt_vrr_get_mode_with_video_timing(output, + igt_vrr_standard_video_timing_fps[j], + &mode); + if (found) { + rr_from_mode = igt_vrr_mode_line_refresh_hz(&mode); + igt_output_override_mode(output, &mode); + igt_info("Override mode:"); + kmstest_dump_mode(&mode); + igt_display_commit2(&data->display, COMMIT_ATOMIC); + igt_target_rr_debugfs_write(data->drm_fd, + crtc->crtc_index, + mode.vrefresh, + CMRR_NUMERATOR, + CMRR_VIDEO_MODE_DENOMINATOR); + + flip_and_measure_target_rr(data, crtc, + mode.vrefresh, + CMRR_VIDEO_MODE); + + igt_target_rr_debugfs_write(data->drm_fd, + crtc->crtc_index, + mode.vrefresh, + 0, 0); + + flip_and_measure_target_rr(data, crtc, + rr_from_mode, + CMRR_DISABLE); + } + } + } + + if (flags & TEST_CMRR_FIXED_MODE) { + found = 0; + connector = output->config.connector; + for (j = 0; j < connector->count_modes; j++) { + mode = connector->modes[j]; + rr_from_mode = igt_vrr_mode_line_refresh_hz(&mode); + + if (rr_from_mode - mode.vrefresh > 0.04) { + found = 1; + igt_output_override_mode(output, &mode); + igt_info("Override mode:"); + kmstest_dump_mode(&mode); + igt_display_commit2(&data->display, COMMIT_ATOMIC); + igt_target_rr_debugfs_write(data->drm_fd, + crtc->crtc_index, + mode.vrefresh, + CMRR_NUMERATOR, + CMRR_DENOMINATOR); + + flip_and_measure_target_rr(data, crtc, + mode.vrefresh, + CMRR_NON_VIDEO_MODE); + + igt_target_rr_debugfs_write(data->drm_fd, + crtc->crtc_index, + mode.vrefresh, + 0, 0); + + flip_and_measure_target_rr(data, crtc, + rr_from_mode, + CMRR_DISABLE); + } + } + igt_require_f(found, "No non-video-timing mode found.\n"); + } +} + /* Basic VRR flip functionality test - enable, measure, disable, measure */ static void test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output, @@ -591,6 +780,7 @@ test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output, uint64_t rate[] = {0}; prepare_test(data, output, crtc); + range = data->range; vtest_ns = data->vtest_ns; rate[0] = vtest_ns.rate_ns; @@ -1147,6 +1337,20 @@ int igt_main_args("drs:", long_opts, help_str, opt_handler, &data) } } + igt_subtest_group() { + igt_fixture() + igt_require_intel(data.drm_fd); + + igt_describe("Test to validate CMRR in fixed mode."); + igt_subtest_with_dynamic("cmrr-fixed-mode") { + run_vrr_test(&data, test_cmrr, TEST_CMRR_FIXED_MODE); + } + + igt_describe("Test to validate CMRR in video mode."); + igt_subtest_with_dynamic("cmrr-video-mode") { + run_vrr_test(&data, test_cmrr, TEST_CMRR_VIDEO_MODE); + } + } igt_fixture() { close(data.debugfs_fd); igt_display_fini(&data.display); -- 2.43.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* RE: [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests 2026-08-12 13:07 ` [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests Naladala Ramanaidu @ 2026-08-19 17:00 ` Golani, Mitulkumar Ajitkumar 2026-08-20 11:10 ` Borah, Chaitanya Kumar 2026-08-20 11:10 ` Borah, Chaitanya Kumar 1 sibling, 1 reply; 12+ messages in thread From: Golani, Mitulkumar Ajitkumar @ 2026-08-19 17:00 UTC (permalink / raw) To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org; +Cc: Borah, Chaitanya Kumar > -----Original Message----- > From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com> > Sent: 12 August 2026 18:38 > To: igt-dev@lists.freedesktop.org > Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Golani, > Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>; Naladala, > Ramanaidu <ramanaidu.naladala@intel.com> > Subject: [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode > subtests > > Add test coverage to validate Content Match Refresh Rate (CMRR) behavior > across both fixed and video timing display modes. > > This introduces a shared helper library to support refresh-rate mode selection > and parsing, along with two new test cases covering fixed-mode and video- > mode scenarios. > > The new tests measure actual display refresh timing during CMRR operation > and compare it against the expected target rate to verify correctness. Video > mode coverage validates behavior across standard video timing rates, while > fixed mode coverage targets display modes that fall outside the standard > video timing set. > > Each test cycles through the relevant refresh configurations, applying and > resetting the appropriate settings between measurement passes to ensure > consistent and isolated test results. > > v2: Fix test issue. > v3: Address review comments. (Mitul) > v4: Fix test issue. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > tests/kms_vrr.c | 204 > ++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 204 insertions(+) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 27f18e8d0..ab6bc66d9 > 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -32,6 +32,7 @@ > #include "igt_pm.h" > #include "igt_psr.h" > #include "i915/intel_drrs.h" > +#include "igt_vrr.h" > #include "sw_sync.h" > #include <fcntl.h> > #include <signal.h> > @@ -80,6 +81,14 @@ > * > * SUBTEST: lobf-dc3co > * Description: Test DC3CO entry during LOBF. > + * > + * SUBTEST: cmrr-fixed-mode > + * Description: Test to set a fixed CMRR target refresh rate and verify it > + * is correctly applied. > + * > + * SUBTEST: cmrr-video-mode > + * Description: Test to set standard video timing refresh rates via CMRR > + * and verify each target rate is correctly applied. > */ > > #define NSECS_PER_SEC (1000000000ull) > @@ -103,6 +112,8 @@ enum { > TEST_LINK_OFF = 1 << 10, > TEST_NEGATIVE = 1 << 11, > TEST_FORCE_RR = 1 << 12, > + TEST_CMRR_FIXED_MODE = 1 << 13, > + TEST_CMRR_VIDEO_MODE = 1 << 14, > }; > > enum { > @@ -580,6 +591,184 @@ flip_and_measure(data_t *data, igt_output_t > *output, > return 0; > } > > +static > +uint64_t wait_next_vblank_ts_ns(data_t *data, igt_crtc_t *crtc) { > + union drm_wait_vblank vbl = {}; > + > + vbl.request.type = DRM_VBLANK_RELATIVE | > igt_crtc_get_vbl_flag(crtc); > + vbl.request.sequence = 1; > + do_or_die(igt_ioctl(data->drm_fd, DRM_IOCTL_WAIT_VBLANK, > &vbl)); > + > + return vbl.reply.tval_sec * NSECS_PER_SEC + vbl.reply.tval_usec * > +1000ull; } > + > +static void > +flip_and_measure_target_rr(data_t *data, igt_crtc_t *crtc, > + double vrefresh, uint32_t cmrr_mode) { > + uint32_t i; > + bool front = false; > + uint64_t last_vblank_ns, vblank_ns; > + uint32_t err_frames = 0; > + uint64_t frame_times_ns[TARGET_RR_SAMP_COUNT]; > + uint64_t exp_time_ns; > + uint64_t total_frame_time_ns = 0; > + uint64_t avg_frame_time_ns; > + double avg_refresh_rate; > + double expected_rr; > + uint32_t valid_frames = 0; > + > + exp_time_ns = igt_kms_frame_time_from_vrefresh(vrefresh); > + > + do_flip(data, &data->fb[0]); > + (void)get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE); > + last_vblank_ns = wait_next_vblank_ts_ns(data, crtc); > + > + for (i = 0; i < TARGET_RR_SAMP_COUNT; i++) { > + front = !front; > + > + do_flip(data, front ? &data->fb[1] : &data->fb[0]); > + vblank_ns = wait_next_vblank_ts_ns(data, crtc); > + (void)get_kernel_event_ns(data, > DRM_EVENT_FLIP_COMPLETE); > + > + frame_times_ns[i] = vblank_ns - last_vblank_ns; > + > + if (frame_times_ns[i] > (exp_time_ns + (exp_time_ns / 2))) { > + err_frames++; > + last_vblank_ns = vblank_ns; > + continue; > + } > + > + last_vblank_ns = vblank_ns; > + total_frame_time_ns += frame_times_ns[i]; > + } > + > + valid_frames = TARGET_RR_SAMP_COUNT - err_frames; > + igt_assert_f(valid_frames > 0, > + "No valid frame samples collected\n"); > + > + avg_frame_time_ns = total_frame_time_ns / valid_frames; > + avg_refresh_rate = (double)NSECS_PER_SEC / > (double)avg_frame_time_ns; > + > + if (cmrr_mode == CMRR_VIDEO_MODE) { > + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) / > + (double)CMRR_VIDEO_MODE_DENOMINATOR; > + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, Please confirm this bound holds on real hardware, or justify it. > + "CMRR refresh rate mismatch: " > + "measured avg_rr = %.3f Hz, " > + "expected_rr = %.3f Hz\n", > + avg_refresh_rate, expected_rr); > + } > + > + if (cmrr_mode == CMRR_NON_VIDEO_MODE) { > + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) / > + (double)CMRR_DENOMINATOR; > + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, > + "CMRR refresh rate mismatch: " > + "measured avg_rr = %.3f Hz, " > + "expected_rr = %.3f Hz\n", > + avg_refresh_rate, expected_rr); > + } > + > + if (cmrr_mode == CMRR_DISABLE) { > + expected_rr = vrefresh; > + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, > + "CMRR refresh rate mismatch: " > + "measured avg_rr = %.3f Hz, " > + "expected_rr = %.3f Hz\n", > + avg_refresh_rate, expected_rr); > + } > + > + igt_info("Average RR (Hz): %.2f , Expected RR (Hz): %.2f, error frames > = %d\n", > + avg_refresh_rate, expected_rr, err_frames); } > + > +static > +void test_cmrr(data_t *data, igt_crtc_t *crtc, > + igt_output_t *output, uint32_t flags) { > + uint32_t found; > + double rr_from_mode; > + drmModeModeInfo mode; > + drmModeConnectorPtr connector; > + int j; > + > + igt_require_f(cmrr_supported(data->drm_fd, crtc->crtc_index), > + "CMRR not supported\n"); > + prepare_test(data, output, crtc); > + set_vrr_on_crtc(data, crtc, true, false); > + > + if (flags & TEST_CMRR_VIDEO_MODE) { > + for (j = 0; j < igt_vrr_standard_video_timing_fps_count; j++) { compares int against size_t, Use size_t j (or unsigned). > + found = > igt_vrr_get_mode_with_video_timing(output, > + > igt_vrr_standard_video_timing_fps[j], > + &mode); > + if (found) { > + rr_from_mode = > igt_vrr_mode_line_refresh_hz(&mode); > + igt_output_override_mode(output, &mode); > + igt_info("Override mode:"); > + kmstest_dump_mode(&mode); > + igt_display_commit2(&data->display, > COMMIT_ATOMIC); > + igt_target_rr_debugfs_write(data->drm_fd, > + crtc->crtc_index, > + mode.vrefresh, > + > CMRR_NUMERATOR, > + > CMRR_VIDEO_MODE_DENOMINATOR); > + > + flip_and_measure_target_rr(data, crtc, > + mode.vrefresh, > + > CMRR_VIDEO_MODE); > + > + igt_target_rr_debugfs_write(data->drm_fd, > + crtc->crtc_index, > + mode.vrefresh, > + 0, 0); > + > + flip_and_measure_target_rr(data, crtc, > + rr_from_mode, > + CMRR_DISABLE); > + } > + } > + } The TEST_CMRR_VIDEO_MODE loop reassigns found every iteration, so after the loop it only reflects the last fps in the array, which typically has no matching mode. Two issues: 1. there is no post-loop guard, so on a panel with no standard-timing mode the subtest passes without testing anything, it should igt_require a skip instead; 2. you can't reuse found like below fixed-mode branch does, because here it's overwritten rather than latched, requiring on it would falsely skip even when earlier rates were tested. Please add a dedicated "bool tested" latch set inside if (found) and igt_require_f(tested, "No standard video-timing mode found.\n") after the loop. "bool tested = false; ... if (found) { tested = true; ... } ... igt_require_f(tested, "No standard video-timing mode found.\n");" > + > + if (flags & TEST_CMRR_FIXED_MODE) { > + found = 0; > + connector = output->config.connector; > + for (j = 0; j < connector->count_modes; j++) { > + mode = connector->modes[j]; > + rr_from_mode = > igt_vrr_mode_line_refresh_hz(&mode); > + > + if (rr_from_mode - mode.vrefresh > 0.04) { > + found = 1; > + igt_output_override_mode(output, &mode); > + igt_info("Override mode:"); > + kmstest_dump_mode(&mode); > + igt_display_commit2(&data->display, > COMMIT_ATOMIC); > + igt_target_rr_debugfs_write(data->drm_fd, > + crtc->crtc_index, > + mode.vrefresh, > + > CMRR_NUMERATOR, > + > CMRR_DENOMINATOR); > + > + flip_and_measure_target_rr(data, crtc, > + mode.vrefresh, > + > CMRR_NON_VIDEO_MODE); > + > + igt_target_rr_debugfs_write(data->drm_fd, > + crtc->crtc_index, > + mode.vrefresh, > + 0, 0); > + > + flip_and_measure_target_rr(data, crtc, > + rr_from_mode, > + CMRR_DISABLE); > + } > + } > + igt_require_f(found, "No non-video-timing mode found.\n"); > + } > +} > + > /* Basic VRR flip functionality test - enable, measure, disable, measure */ > static void test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output, @@ > -591,6 +780,7 @@ test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t > *output, > uint64_t rate[] = {0}; > > prepare_test(data, output, crtc); > + Please remove extra line. > range = data->range; > vtest_ns = data->vtest_ns; > rate[0] = vtest_ns.rate_ns; > @@ -1147,6 +1337,20 @@ int igt_main_args("drs:", long_opts, help_str, > opt_handler, &data) > } > } > > + igt_subtest_group() { > + igt_fixture() > + igt_require_intel(data.drm_fd); > + > + igt_describe("Test to validate CMRR in fixed mode."); > + igt_subtest_with_dynamic("cmrr-fixed-mode") { > + run_vrr_test(&data, test_cmrr, > TEST_CMRR_FIXED_MODE); > + } > + > + igt_describe("Test to validate CMRR in video mode."); > + igt_subtest_with_dynamic("cmrr-video-mode") { > + run_vrr_test(&data, test_cmrr, > TEST_CMRR_VIDEO_MODE); > + } > + } > igt_fixture() { > close(data.debugfs_fd); > igt_display_fini(&data.display); > -- > 2.43.0 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests 2026-08-19 17:00 ` Golani, Mitulkumar Ajitkumar @ 2026-08-20 11:10 ` Borah, Chaitanya Kumar 0 siblings, 0 replies; 12+ messages in thread From: Borah, Chaitanya Kumar @ 2026-08-20 11:10 UTC (permalink / raw) To: Golani, Mitulkumar Ajitkumar, Naladala, Ramanaidu, igt-dev@lists.freedesktop.org On 8/19/2026 10:30 PM, Golani, Mitulkumar Ajitkumar wrote: > > >> -----Original Message----- >> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com> >> Sent: 12 August 2026 18:38 >> To: igt-dev@lists.freedesktop.org >> Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Golani, >> Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>; Naladala, >> Ramanaidu <ramanaidu.naladala@intel.com> >> Subject: [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode >> subtests >> >> Add test coverage to validate Content Match Refresh Rate (CMRR) behavior >> across both fixed and video timing display modes. >> >> This introduces a shared helper library to support refresh-rate mode selection >> and parsing, along with two new test cases covering fixed-mode and video- >> mode scenarios. >> >> The new tests measure actual display refresh timing during CMRR operation >> and compare it against the expected target rate to verify correctness. Video >> mode coverage validates behavior across standard video timing rates, while >> fixed mode coverage targets display modes that fall outside the standard >> video timing set. >> >> Each test cycles through the relevant refresh configurations, applying and >> resetting the appropriate settings between measurement passes to ensure >> consistent and isolated test results. >> >> v2: Fix test issue. >> v3: Address review comments. (Mitul) >> v4: Fix test issue. >> >> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> >> --- >> tests/kms_vrr.c | 204 >> ++++++++++++++++++++++++++++++++++++++++++++++++ >> 1 file changed, 204 insertions(+) >> >> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 27f18e8d0..ab6bc66d9 >> 100644 >> --- a/tests/kms_vrr.c >> +++ b/tests/kms_vrr.c >> @@ -32,6 +32,7 @@ >> #include "igt_pm.h" >> #include "igt_psr.h" >> #include "i915/intel_drrs.h" >> +#include "igt_vrr.h" >> #include "sw_sync.h" >> #include <fcntl.h> >> #include <signal.h> >> @@ -80,6 +81,14 @@ >> * >> * SUBTEST: lobf-dc3co >> * Description: Test DC3CO entry during LOBF. >> + * >> + * SUBTEST: cmrr-fixed-mode >> + * Description: Test to set a fixed CMRR target refresh rate and verify it >> + * is correctly applied. >> + * >> + * SUBTEST: cmrr-video-mode >> + * Description: Test to set standard video timing refresh rates via CMRR >> + * and verify each target rate is correctly applied. >> */ >> >> #define NSECS_PER_SEC (1000000000ull) >> @@ -103,6 +112,8 @@ enum { >> TEST_LINK_OFF = 1 << 10, >> TEST_NEGATIVE = 1 << 11, >> TEST_FORCE_RR = 1 << 12, >> + TEST_CMRR_FIXED_MODE = 1 << 13, >> + TEST_CMRR_VIDEO_MODE = 1 << 14, >> }; >> >> enum { >> @@ -580,6 +591,184 @@ flip_and_measure(data_t *data, igt_output_t >> *output, >> return 0; >> } >> >> +static >> +uint64_t wait_next_vblank_ts_ns(data_t *data, igt_crtc_t *crtc) { >> + union drm_wait_vblank vbl = {}; >> + >> + vbl.request.type = DRM_VBLANK_RELATIVE | >> igt_crtc_get_vbl_flag(crtc); >> + vbl.request.sequence = 1; >> + do_or_die(igt_ioctl(data->drm_fd, DRM_IOCTL_WAIT_VBLANK, >> &vbl)); >> + >> + return vbl.reply.tval_sec * NSECS_PER_SEC + vbl.reply.tval_usec * >> +1000ull; } >> + >> +static void >> +flip_and_measure_target_rr(data_t *data, igt_crtc_t *crtc, >> + double vrefresh, uint32_t cmrr_mode) { >> + uint32_t i; >> + bool front = false; >> + uint64_t last_vblank_ns, vblank_ns; >> + uint32_t err_frames = 0; >> + uint64_t frame_times_ns[TARGET_RR_SAMP_COUNT]; >> + uint64_t exp_time_ns; >> + uint64_t total_frame_time_ns = 0; >> + uint64_t avg_frame_time_ns; >> + double avg_refresh_rate; >> + double expected_rr; >> + uint32_t valid_frames = 0; >> + >> + exp_time_ns = igt_kms_frame_time_from_vrefresh(vrefresh); >> + >> + do_flip(data, &data->fb[0]); >> + (void)get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE); >> + last_vblank_ns = wait_next_vblank_ts_ns(data, crtc); >> + >> + for (i = 0; i < TARGET_RR_SAMP_COUNT; i++) { >> + front = !front; >> + >> + do_flip(data, front ? &data->fb[1] : &data->fb[0]); >> + vblank_ns = wait_next_vblank_ts_ns(data, crtc); >> + (void)get_kernel_event_ns(data, >> DRM_EVENT_FLIP_COMPLETE); >> + >> + frame_times_ns[i] = vblank_ns - last_vblank_ns; >> + >> + if (frame_times_ns[i] > (exp_time_ns + (exp_time_ns / 2))) { >> + err_frames++; >> + last_vblank_ns = vblank_ns; >> + continue; >> + } >> + >> + last_vblank_ns = vblank_ns; >> + total_frame_time_ns += frame_times_ns[i]; >> + } >> + >> + valid_frames = TARGET_RR_SAMP_COUNT - err_frames; >> + igt_assert_f(valid_frames > 0, >> + "No valid frame samples collected\n"); >> + >> + avg_frame_time_ns = total_frame_time_ns / valid_frames; >> + avg_refresh_rate = (double)NSECS_PER_SEC / >> (double)avg_frame_time_ns; >> + >> + if (cmrr_mode == CMRR_VIDEO_MODE) { >> + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) / >> + (double)CMRR_VIDEO_MODE_DENOMINATOR; >> + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, > > Please confirm this bound holds on real hardware, or justify it. > >> + "CMRR refresh rate mismatch: " >> + "measured avg_rr = %.3f Hz, " >> + "expected_rr = %.3f Hz\n", >> + avg_refresh_rate, expected_rr); >> + } >> + >> + if (cmrr_mode == CMRR_NON_VIDEO_MODE) { >> + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) / >> + (double)CMRR_DENOMINATOR; >> + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, >> + "CMRR refresh rate mismatch: " >> + "measured avg_rr = %.3f Hz, " >> + "expected_rr = %.3f Hz\n", >> + avg_refresh_rate, expected_rr); >> + } >> + >> + if (cmrr_mode == CMRR_DISABLE) { >> + expected_rr = vrefresh; >> + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, >> + "CMRR refresh rate mismatch: " >> + "measured avg_rr = %.3f Hz, " >> + "expected_rr = %.3f Hz\n", >> + avg_refresh_rate, expected_rr); >> + } >> + >> + igt_info("Average RR (Hz): %.2f , Expected RR (Hz): %.2f, error frames >> = %d\n", >> + avg_refresh_rate, expected_rr, err_frames); } >> + >> +static >> +void test_cmrr(data_t *data, igt_crtc_t *crtc, >> + igt_output_t *output, uint32_t flags) { >> + uint32_t found; >> + double rr_from_mode; >> + drmModeModeInfo mode; >> + drmModeConnectorPtr connector; >> + int j; >> + >> + igt_require_f(cmrr_supported(data->drm_fd, crtc->crtc_index), >> + "CMRR not supported\n"); >> + prepare_test(data, output, crtc); >> + set_vrr_on_crtc(data, crtc, true, false); >> + >> + if (flags & TEST_CMRR_VIDEO_MODE) { >> + for (j = 0; j < igt_vrr_standard_video_timing_fps_count; j++) { > > compares int against size_t, Use size_t j (or unsigned). > >> + found = >> igt_vrr_get_mode_with_video_timing(output, >> + >> igt_vrr_standard_video_timing_fps[j], >> + &mode); >> + if (found) { >> + rr_from_mode = >> igt_vrr_mode_line_refresh_hz(&mode); >> + igt_output_override_mode(output, &mode); >> + igt_info("Override mode:"); >> + kmstest_dump_mode(&mode); >> + igt_display_commit2(&data->display, >> COMMIT_ATOMIC); >> + igt_target_rr_debugfs_write(data->drm_fd, >> + crtc->crtc_index, >> + mode.vrefresh, >> + >> CMRR_NUMERATOR, >> + >> CMRR_VIDEO_MODE_DENOMINATOR); >> + >> + flip_and_measure_target_rr(data, crtc, >> + mode.vrefresh, >> + >> CMRR_VIDEO_MODE); >> + >> + igt_target_rr_debugfs_write(data->drm_fd, >> + crtc->crtc_index, >> + mode.vrefresh, >> + 0, 0); >> + >> + flip_and_measure_target_rr(data, crtc, >> + rr_from_mode, >> + CMRR_DISABLE); >> + } >> + } >> + } > > The TEST_CMRR_VIDEO_MODE loop reassigns found every iteration, so after the loop it only reflects the last fps in the array, > which typically has no matching mode. > > Two issues: > 1. there is no post-loop guard, so on a panel with no standard-timing mode the > subtest passes without testing anything, it should igt_require a skip instead; > 2. you can't reuse found like below fixed-mode branch does, because here it's overwritten rather than latched, > requiring on it would falsely skip even when earlier rates were tested. > > Please add a dedicated "bool tested" latch set inside if (found) and igt_require_f(tested, "No standard video-timing mode found.\n") after the loop. > > "bool tested = false; > ... > if (found) { > tested = true; > ... > } > ... > igt_require_f(tested, "No standard video-timing mode found.\n");" > Or just. if (igt_vrr_get_mode_with_video_timing(output, igt_vrr_standard_video_timing_fps[j], &mode)) { found = true; >> + >> + if (flags & TEST_CMRR_FIXED_MODE) { >> + found = 0; >> + connector = output->config.connector; >> + for (j = 0; j < connector->count_modes; j++) { >> + mode = connector->modes[j]; >> + rr_from_mode = >> igt_vrr_mode_line_refresh_hz(&mode); >> + >> + if (rr_from_mode - mode.vrefresh > 0.04) { >> + found = 1; >> + igt_output_override_mode(output, &mode); >> + igt_info("Override mode:"); >> + kmstest_dump_mode(&mode); >> + igt_display_commit2(&data->display, >> COMMIT_ATOMIC); >> + igt_target_rr_debugfs_write(data->drm_fd, >> + crtc->crtc_index, >> + mode.vrefresh, >> + >> CMRR_NUMERATOR, >> + >> CMRR_DENOMINATOR); >> + >> + flip_and_measure_target_rr(data, crtc, >> + mode.vrefresh, >> + >> CMRR_NON_VIDEO_MODE); >> + >> + igt_target_rr_debugfs_write(data->drm_fd, >> + crtc->crtc_index, >> + mode.vrefresh, >> + 0, 0); >> + >> + flip_and_measure_target_rr(data, crtc, >> + rr_from_mode, >> + CMRR_DISABLE); >> + } >> + } >> + igt_require_f(found, "No non-video-timing mode found.\n"); >> + } >> +} >> + >> /* Basic VRR flip functionality test - enable, measure, disable, measure */ >> static void test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output, @@ >> -591,6 +780,7 @@ test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t >> *output, >> uint64_t rate[] = {0}; >> >> prepare_test(data, output, crtc); >> + > > Please remove extra line. > >> range = data->range; >> vtest_ns = data->vtest_ns; >> rate[0] = vtest_ns.rate_ns; >> @@ -1147,6 +1337,20 @@ int igt_main_args("drs:", long_opts, help_str, >> opt_handler, &data) >> } >> } >> >> + igt_subtest_group() { >> + igt_fixture() >> + igt_require_intel(data.drm_fd); >> + >> + igt_describe("Test to validate CMRR in fixed mode."); >> + igt_subtest_with_dynamic("cmrr-fixed-mode") { >> + run_vrr_test(&data, test_cmrr, >> TEST_CMRR_FIXED_MODE); >> + } >> + >> + igt_describe("Test to validate CMRR in video mode."); >> + igt_subtest_with_dynamic("cmrr-video-mode") { >> + run_vrr_test(&data, test_cmrr, >> TEST_CMRR_VIDEO_MODE); >> + } >> + } >> igt_fixture() { >> close(data.debugfs_fd); >> igt_display_fini(&data.display); >> -- >> 2.43.0 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests 2026-08-12 13:07 ` [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests Naladala Ramanaidu 2026-08-19 17:00 ` Golani, Mitulkumar Ajitkumar @ 2026-08-20 11:10 ` Borah, Chaitanya Kumar 1 sibling, 0 replies; 12+ messages in thread From: Borah, Chaitanya Kumar @ 2026-08-20 11:10 UTC (permalink / raw) To: Naladala Ramanaidu, igt-dev; +Cc: mitulkumar.ajitkumar.golani On 8/12/2026 6:37 PM, Naladala Ramanaidu wrote: > Add test coverage to validate Content Match Refresh Rate (CMRR) > behavior across both fixed and video timing display modes. > > This introduces a shared helper library to support refresh-rate > mode selection and parsing, Does it? along with two new test cases covering > fixed-mode and video-mode scenarios. > Let's call it desktop mode (here and everywhere else). Refresh rates are fixed here anyway. > The new tests measure actual display refresh timing during CMRR > operation and compare it against the expected target rate to > verify correctness. Video mode coverage validates behavior across > standard video timing rates, while fixed mode coverage targets > display modes that fall outside the standard video timing set. > > Each test cycles through the relevant refresh configurations, > applying and resetting the appropriate settings between > measurement passes to ensure consistent and isolated test results. > > v2: Fix test issue. > v3: Address review comments. (Mitul) > v4: Fix test issue. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > tests/kms_vrr.c | 204 ++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 204 insertions(+) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > index 27f18e8d0..ab6bc66d9 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -32,6 +32,7 @@ > #include "igt_pm.h" > #include "igt_psr.h" > #include "i915/intel_drrs.h" > +#include "igt_vrr.h" > #include "sw_sync.h" > #include <fcntl.h> > #include <signal.h> > @@ -80,6 +81,14 @@ > * > * SUBTEST: lobf-dc3co > * Description: Test DC3CO entry during LOBF. > + * > + * SUBTEST: cmrr-fixed-mode > + * Description: Test to set a fixed CMRR target refresh rate and verify it > + * is correctly applied. > + * > + * SUBTEST: cmrr-video-mode > + * Description: Test to set standard video timing refresh rates via CMRR > + * and verify each target rate is correctly applied. > */ > > #define NSECS_PER_SEC (1000000000ull) > @@ -103,6 +112,8 @@ enum { > TEST_LINK_OFF = 1 << 10, > TEST_NEGATIVE = 1 << 11, > TEST_FORCE_RR = 1 << 12, > + TEST_CMRR_FIXED_MODE = 1 << 13, > + TEST_CMRR_VIDEO_MODE = 1 << 14, > }; > > enum { > @@ -580,6 +591,184 @@ flip_and_measure(data_t *data, igt_output_t *output, > return 0; > } > > +static > +uint64_t wait_next_vblank_ts_ns(data_t *data, igt_crtc_t *crtc) > +{ > + union drm_wait_vblank vbl = {}; > + > + vbl.request.type = DRM_VBLANK_RELATIVE | igt_crtc_get_vbl_flag(crtc); > + vbl.request.sequence = 1; > + do_or_die(igt_ioctl(data->drm_fd, DRM_IOCTL_WAIT_VBLANK, &vbl)); > + > + return vbl.reply.tval_sec * NSECS_PER_SEC + vbl.reply.tval_usec * 1000ull; > +} > + Time to create a helper for this. See wait_for_vblank() in kms_async_flips.c > +static void > +flip_and_measure_target_rr(data_t *data, igt_crtc_t *crtc, > + double vrefresh, uint32_t cmrr_mode) > +{ > + uint32_t i; > + bool front = false; > + uint64_t last_vblank_ns, vblank_ns; > + uint32_t err_frames = 0; > + uint64_t frame_times_ns[TARGET_RR_SAMP_COUNT]; > + uint64_t exp_time_ns; > + uint64_t total_frame_time_ns = 0; > + uint64_t avg_frame_time_ns; > + double avg_refresh_rate; > + double expected_rr; > + uint32_t valid_frames = 0; > + > + exp_time_ns = igt_kms_frame_time_from_vrefresh(vrefresh); > + > + do_flip(data, &data->fb[0]); > + (void)get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE); > + last_vblank_ns = wait_next_vblank_ts_ns(data, crtc); > + > + for (i = 0; i < TARGET_RR_SAMP_COUNT; i++) { > + front = !front; > + > + do_flip(data, front ? &data->fb[1] : &data->fb[0]); > + vblank_ns = wait_next_vblank_ts_ns(data, crtc); > + (void)get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE); > + > + frame_times_ns[i] = vblank_ns - last_vblank_ns; > + > + if (frame_times_ns[i] > (exp_time_ns + (exp_time_ns / 2))) { > + err_frames++; > + last_vblank_ns = vblank_ns; > + continue; > + } > + > + last_vblank_ns = vblank_ns; > + total_frame_time_ns += frame_times_ns[i]; > + } > + > + valid_frames = TARGET_RR_SAMP_COUNT - err_frames; > + igt_assert_f(valid_frames > 0, > + "No valid frame samples collected\n"); We should hold valid frames to a higher standard than > 0 > + > + avg_frame_time_ns = total_frame_time_ns / valid_frames; > + avg_refresh_rate = (double)NSECS_PER_SEC / (double)avg_frame_time_ns; > + > + if (cmrr_mode == CMRR_VIDEO_MODE) { > + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) / > + (double)CMRR_VIDEO_MODE_DENOMINATOR; > + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, > + "CMRR refresh rate mismatch: " > + "measured avg_rr = %.3f Hz, " > + "expected_rr = %.3f Hz\n", > + avg_refresh_rate, expected_rr); > + } > + > + if (cmrr_mode == CMRR_NON_VIDEO_MODE) { > + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) / > + (double)CMRR_DENOMINATOR; > + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, > + "CMRR refresh rate mismatch: " > + "measured avg_rr = %.3f Hz, " > + "expected_rr = %.3f Hz\n", > + avg_refresh_rate, expected_rr); > + } > + > + if (cmrr_mode == CMRR_DISABLE) { > + expected_rr = vrefresh; > + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02, > + "CMRR refresh rate mismatch: " > + "measured avg_rr = %.3f Hz, " > + "expected_rr = %.3f Hz\n", > + avg_refresh_rate, expected_rr); > + } > + > + igt_info("Average RR (Hz): %.2f , Expected RR (Hz): %.2f, error frames = %d\n", > + avg_refresh_rate, expected_rr, err_frames); > +} > + > +static > +void test_cmrr(data_t *data, igt_crtc_t *crtc, > + igt_output_t *output, uint32_t flags) > +{ > + uint32_t found; > + double rr_from_mode; > + drmModeModeInfo mode; > + drmModeConnectorPtr connector; > + int j; > + > + igt_require_f(cmrr_supported(data->drm_fd, crtc->crtc_index), > + "CMRR not supported\n"); > + prepare_test(data, output, crtc); > + set_vrr_on_crtc(data, crtc, true, false); > + > + if (flags & TEST_CMRR_VIDEO_MODE) { > + for (j = 0; j < igt_vrr_standard_video_timing_fps_count; j++) { > + found = igt_vrr_get_mode_with_video_timing(output, > + igt_vrr_standard_video_timing_fps[j], > + &mode); > + if (found) { > + rr_from_mode = igt_vrr_mode_line_refresh_hz(&mode); > + igt_output_override_mode(output, &mode); > + igt_info("Override mode:"); > + kmstest_dump_mode(&mode); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + igt_target_rr_debugfs_write(data->drm_fd, > + crtc->crtc_index, > + mode.vrefresh, > + CMRR_NUMERATOR, > + CMRR_VIDEO_MODE_DENOMINATOR); > + > + flip_and_measure_target_rr(data, crtc, > + mode.vrefresh, > + CMRR_VIDEO_MODE); > + > + igt_target_rr_debugfs_write(data->drm_fd, > + crtc->crtc_index, > + mode.vrefresh, > + 0, 0); > + > + flip_and_measure_target_rr(data, crtc, > + rr_from_mode, > + CMRR_DISABLE); > + } > + } > + } > + > + if (flags & TEST_CMRR_FIXED_MODE) { > + found = 0; > + connector = output->config.connector; > + for (j = 0; j < connector->count_modes; j++) { > + mode = connector->modes[j]; > + rr_from_mode = igt_vrr_mode_line_refresh_hz(&mode); > + > + if (rr_from_mode - mode.vrefresh > 0.04) { > + found = 1; > + igt_output_override_mode(output, &mode); > + igt_info("Override mode:"); > + kmstest_dump_mode(&mode); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + igt_target_rr_debugfs_write(data->drm_fd, > + crtc->crtc_index, > + mode.vrefresh, > + CMRR_NUMERATOR, > + CMRR_DENOMINATOR); > + > + flip_and_measure_target_rr(data, crtc, > + mode.vrefresh, > + CMRR_NON_VIDEO_MODE); > + > + igt_target_rr_debugfs_write(data->drm_fd, > + crtc->crtc_index, > + mode.vrefresh, > + 0, 0); > + > + flip_and_measure_target_rr(data, crtc, > + rr_from_mode, > + CMRR_DISABLE); > + } > + } > + igt_require_f(found, "No non-video-timing mode found.\n"); Should this be a skip? > + } > +} > + > /* Basic VRR flip functionality test - enable, measure, disable, measure */ > static void > test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output, > @@ -591,6 +780,7 @@ test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output, > uint64_t rate[] = {0}; > > prepare_test(data, output, crtc); > + > range = data->range; > vtest_ns = data->vtest_ns; > rate[0] = vtest_ns.rate_ns; > @@ -1147,6 +1337,20 @@ int igt_main_args("drs:", long_opts, help_str, opt_handler, &data) > } > } > > + igt_subtest_group() { > + igt_fixture() > + igt_require_intel(data.drm_fd); > + There was some recent discussion regarding intel specific tests in tests folder [1]. But this change is just following a pre-existing pattern so this should not be a blocker but may be this warrants a broader discussion. == Chaitanya [1] https://lore.kernel.org/igt-dev/210afacb-8486-43a5-865c-f52befda3231@intel.com/ > + igt_describe("Test to validate CMRR in fixed mode."); > + igt_subtest_with_dynamic("cmrr-fixed-mode") { > + run_vrr_test(&data, test_cmrr, TEST_CMRR_FIXED_MODE); > + } > + > + igt_describe("Test to validate CMRR in video mode."); > + igt_subtest_with_dynamic("cmrr-video-mode") { > + run_vrr_test(&data, test_cmrr, TEST_CMRR_VIDEO_MODE); > + } > + } > igt_fixture() { > close(data.debugfs_fd); > igt_display_fini(&data.display); ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for Add CMRR subtests (rev4) 2026-08-12 13:07 [PATCH i-g-t v4 0/2] Add CMRR subtests Naladala Ramanaidu 2026-08-12 13:07 ` [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu 2026-08-12 13:07 ` [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests Naladala Ramanaidu @ 2026-08-12 14:12 ` Patchwork 2026-08-12 14:14 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-08-12 14:12 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1673 bytes --] == Series Details == Series: Add CMRR subtests (rev4) URL : https://patchwork.freedesktop.org/series/171615/ State : success == Summary == CI Bug Log - changes from IGT_9052 -> IGTPW_15664 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/index.html Participating hosts (38 -> 34) ------------------------------ Missing (4): fi-hsw-4770 fi-glk-j4005 fi-snb-2520m bat-dg2-13 Known issues ------------ Here are the changes found in IGTPW_15664 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@perf: - fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +13 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9052/fi-kbl-7567u/igt@i915_selftest@live@perf.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/fi-kbl-7567u/igt@i915_selftest@live@perf.html [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9052 -> IGTPW_15664 * Linux: CI_DRM_18980 -> CI_DRM_18982 CI-20190529: 20190529 CI_DRM_18980: aabf41c0ea0ad661a2e384e51955b24343f6ca25 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18982: 96ddbb14986632af742523e68f90d51c138c57f0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15664: 88d475ce1257e96e412f238f819fe929f18a3947 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9052: 9052 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/index.html [-- Attachment #2: Type: text/html, Size: 2273 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for Add CMRR subtests (rev4) 2026-08-12 13:07 [PATCH i-g-t v4 0/2] Add CMRR subtests Naladala Ramanaidu ` (2 preceding siblings ...) 2026-08-12 14:12 ` ✓ i915.CI.BAT: success for Add CMRR subtests (rev4) Patchwork @ 2026-08-12 14:14 ` Patchwork 2026-08-12 17:49 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-08-12 18:01 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-08-12 14:14 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1053 bytes --] == Series Details == Series: Add CMRR subtests (rev4) URL : https://patchwork.freedesktop.org/series/171615/ State : success == Summary == CI Bug Log - changes from XEIGT_9052_BAT -> XEIGTPW_15664_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 11) ------------------------------ Missing (2): bat-bmg-2 bat-nvls-1 Changes ------- No changes found Build changes ------------- * IGT: IGT_9052 -> IGTPW_15664 * Linux: xe-5578-aabf41c0ea0ad661a2e384e51955b24343f6ca25 -> xe-5580-96ddbb14986632af742523e68f90d51c138c57f0 IGTPW_15664: 88d475ce1257e96e412f238f819fe929f18a3947 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9052: 9052 xe-5578-aabf41c0ea0ad661a2e384e51955b24343f6ca25: aabf41c0ea0ad661a2e384e51955b24343f6ca25 xe-5580-96ddbb14986632af742523e68f90d51c138c57f0: 96ddbb14986632af742523e68f90d51c138c57f0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/index.html [-- Attachment #2: Type: text/html, Size: 1612 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.FULL: failure for Add CMRR subtests (rev4) 2026-08-12 13:07 [PATCH i-g-t v4 0/2] Add CMRR subtests Naladala Ramanaidu ` (3 preceding siblings ...) 2026-08-12 14:14 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-08-12 17:49 ` Patchwork 2026-08-12 18:01 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-08-12 17:49 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 29521 bytes --] == Series Details == Series: Add CMRR subtests (rev4) URL : https://patchwork.freedesktop.org/series/171615/ State : failure == Summary == CI Bug Log - changes from XEIGT_9052_FULL -> XEIGTPW_15664_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15664_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15664_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15664_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_setmode@basic@pipe-c-dp-2-pipe-a-hdmi-a-3: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-7/igt@kms_setmode@basic@pipe-c-dp-2-pipe-a-hdmi-a-3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-1/igt@kms_setmode@basic@pipe-c-dp-2-pipe-a-hdmi-a-3.html * {igt@kms_vrr@cmrr-fixed-mode} (NEW): - shard-lnl: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-lnl-5/igt@kms_vrr@cmrr-fixed-mode.html * {igt@kms_vrr@cmrr-video-mode} (NEW): - shard-bmg: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-3/igt@kms_vrr@cmrr-video-mode.html * igt@xe_pmu@fn-engine-activity-load: - shard-bmg: [PASS][5] -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html New tests --------- New tests have been introduced between XEIGT_9052_FULL and XEIGTPW_15664_FULL: ### New IGT tests (4) ### * igt@kms_vrr@cmrr-fixed-mode: - Statuses : 2 skip(s) - Exec time: [0.01, 0.35] s * igt@kms_vrr@cmrr-fixed-mode@pipe-a-edp-1: - Statuses : 1 skip(s) - Exec time: [0.01] s * igt@kms_vrr@cmrr-video-mode: - Statuses : 1 skip(s) - Exec time: [0.01] s * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init: - Statuses : 2 pass(s) - Exec time: [0.06, 0.07] s Known issues ------------ Here are the changes found in XEIGTPW_15664_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7059] / [Intel XE#7085]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2328] / [Intel XE#7367]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#607] / [Intel XE#7361]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7679]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-10/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-target-2160x1440p.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +6 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2724] / [Intel XE#7449]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2325] / [Intel XE#7358]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7358]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-5/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2252]) +4 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2390] / [Intel XE#6974]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#6974]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2320]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1508]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#8265]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4141]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2311]) +39 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7399]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-4/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7061]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2313]) +33 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4090] / [Intel XE#7443]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#8303]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7283]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-modifier.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#5020] / [Intel XE#7348]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2763] / [Intel XE#6886]) +9 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-10/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1489]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2387] / [Intel XE#7429]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-10/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7795]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic: - shard-bmg: [PASS][44] -> [FAIL][45] ([Intel XE#8618]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-7/igt@kms_setmode@basic.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-1/igt@kms_setmode@basic.html * igt@kms_sharpness_filter@filter-scaler-downscale: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6503]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-3/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2168] / [Intel XE#7444]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-9/igt@kms_vrr@lobf.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][48] -> [INCOMPLETE][49] ([Intel XE#6321] / [Intel XE#8355]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-small-multi-queue-priority-cm: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#8370]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-9/igt@xe_evict@evict-small-multi-queue-priority-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html * igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#8374]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#8364]) +14 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr.html * igt@xe_exec_system_allocator@many-64k-mmap-remap-dontunmap: - shard-bmg: NOTRUN -> [INCOMPLETE][54] ([Intel XE#8159]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-7/igt@xe_exec_system_allocator@many-64k-mmap-remap-dontunmap.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#8378]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [PASS][56] -> [ABORT][57] ([Intel XE#8007]) +2 other tests abort [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2229]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_multigpu_svm@mgpu-coherency-prefetch: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6964]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-8/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html * igt@xe_pat@xa-app-transient-media-on: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7590]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-2/igt@xe_pat@xa-app-transient-media-on.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-8/igt@xe_peer2peer@write.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2284] / [Intel XE#7370]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-3/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pxp@pxp-termination-key-update-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html * igt@xe_query@multigpu-query-invalid-size: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#944]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-2/igt@xe_query@multigpu-query-invalid-size.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random: - shard-bmg: NOTRUN -> [FAIL][65] ([Intel XE#7992]) +1 other test fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-10/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#6569]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-1/igt@xe_sriov_flr@flr-twice.html #### Possible fixes #### * igt@core_hotunplug@hotunbind-rebind: - shard-bmg: [ABORT][68] ([Intel XE#8007]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-8/igt@core_hotunplug@hotunbind-rebind.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@core_hotunplug@hotunbind-rebind.html * igt@intel_hwmon@hwmon-write: - shard-bmg: [FAIL][70] ([Intel XE#8583]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-6/igt@intel_hwmon@hwmon-write.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-6/igt@intel_hwmon@hwmon-write.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][72] ([Intel XE#3321]) -> [PASS][73] +1 other test pass [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][74] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][76] ([Intel XE#8399]) -> [PASS][77] +1 other test pass [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][78] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [FAIL][80] ([Intel XE#6569]) -> [PASS][81] +1 other test pass [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0: - shard-bmg: [FAIL][82] ([Intel XE#7992]) -> [PASS][83] +1 other test pass [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0: - shard-bmg: [FAIL][84] ([Intel XE#8340]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-bmg-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html #### Warnings #### * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][86] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][87] ([Intel XE#301]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9052/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303 [Intel XE#8340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8340 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8583 [Intel XE#8618]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8618 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9052 -> IGTPW_15664 * Linux: xe-5578-aabf41c0ea0ad661a2e384e51955b24343f6ca25 -> xe-5580-96ddbb14986632af742523e68f90d51c138c57f0 IGTPW_15664: 88d475ce1257e96e412f238f819fe929f18a3947 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9052: 9052 xe-5578-aabf41c0ea0ad661a2e384e51955b24343f6ca25: aabf41c0ea0ad661a2e384e51955b24343f6ca25 xe-5580-96ddbb14986632af742523e68f90d51c138c57f0: 96ddbb14986632af742523e68f90d51c138c57f0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15664/index.html [-- Attachment #2: Type: text/html, Size: 32614 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for Add CMRR subtests (rev4) 2026-08-12 13:07 [PATCH i-g-t v4 0/2] Add CMRR subtests Naladala Ramanaidu ` (4 preceding siblings ...) 2026-08-12 17:49 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-08-12 18:01 ` Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-08-12 18:01 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 162935 bytes --] == Series Details == Series: Add CMRR subtests (rev4) URL : https://patchwork.freedesktop.org/series/171615/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18982_full -> IGTPW_15664_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15664_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15664_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15664_full: ### IGT changes ### #### Possible regressions #### * igt@gem_linear_blits@interruptible: - shard-dg1: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@gem_linear_blits@interruptible.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-8/igt@kms_pm_rpm@basic-pci-d3-state.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@kms_pm_rpm@basic-pci-d3-state.html #### Warnings #### * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][4] ([i915#13717]) -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html Known issues ------------ Here are the changes found in IGTPW_15664_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#14544] / [i915#6230]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@fbdev@pan: - shard-snb: NOTRUN -> [FAIL][10] ([i915#15792]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-snb5/igt@fbdev@pan.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#14544] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][15] -> [FAIL][16] ([i915#15454]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-10/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-mixed: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-snb1/igt@gem_ctx_persistence@legacy-engines-mixed.html * igt@gem_eio@in-flight-suspend: - shard-rkl: NOTRUN -> [ABORT][22] ([i915#15131]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-1/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-6/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@gem_exec_balancer@bonded-sync.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][29] ([i915#11965]) +1 other test fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@gem_exec_capture@capture.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][30] ([i915#11965]) +4 other tests fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@gem_exec_capture@capture@vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][31] ([i915#11965]) +2 other tests fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-7/igt@gem_exec_flush@basic-wb-rw-before-default.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][35] +11 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@gem_exec_reloc@basic-wc-gtt.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][41] -> [INCOMPLETE][42] ([i915#13356]) +1 other test incomplete [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#14544] / [i915#4613] / [i915#7582]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#14544] / [i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk1/igt@gem_lmem_swapping@random-engines.html - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#12193]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4565]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +8 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +12 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@gem_mmap_wc@close.html - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@gem_mmap_wc@close.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@gem_mmap_wc@close.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-5/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][61] ([i915#2658]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-2: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@gem_pxp@create-regular-context-2.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#13398]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4885]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-5/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4885]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-16/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4885]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-1/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@gem_userptr_blits@dmabuf-unsync.html - shard-rkl: NOTRUN -> [SKIP][73] ([i915#14544] / [i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@gem_userptr_blits@dmabuf-unsync.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [PASS][77] -> [INCOMPLETE][78] ([i915#13356]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-7/igt@gem_workarounds@suspend-resume.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-4/igt@gem_workarounds@suspend-resume.html - shard-glk11: NOTRUN -> [INCOMPLETE][79] ([i915#13356] / [i915#14586]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk11/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][80] ([i915#13356]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk4/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#14544] / [i915#2527]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-chained: - shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@gen9_exec_parse@bb-start-far.html - shard-rkl: NOTRUN -> [SKIP][86] ([i915#2527]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_drm_fdinfo@all-busy-idle-check-all: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#14123]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@i915_drm_fdinfo@all-busy-idle-check-all.html * igt@i915_drm_fdinfo@busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#11527]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-3/igt@i915_drm_fdinfo@busy-check-all@vecs0.html * igt@i915_drm_fdinfo@most-busy-check-all@bcs0: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#14073]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html * igt@i915_drm_fdinfo@most-busy-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#14073]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@i915_drm_fdinfo@most-busy-check-all@vcs1.html * igt@i915_drm_fdinfo@most-busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#14073]) +7 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html * igt@i915_drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#14118]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-hang.html * igt@i915_module_load@fault-injection@i915_driver_mmio_probe: - shard-dg1: NOTRUN -> [INCOMPLETE][94] ([i915#15481]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-18/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][95] -> [DMESG-WARN][96] ([i915#13029] / [i915#14545]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-5/igt@i915_module_load@reload-no-display.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@i915_module_load@reload-no-display.html - shard-dg1: [PASS][97] -> [DMESG-WARN][98] ([i915#13029] / [i915#14545]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-15/igt@i915_module_load@reload-no-display.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#6412]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#8399]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#16080] / [i915#16166]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#11681] / [i915#6621]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#4387]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][104] -> [SKIP][105] ([i915#7984]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-mtlp-6/igt@i915_power@sanity.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-6/igt@i915_power@sanity.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][106] ([i915#4817] / [i915#7443]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6645]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][108] ([i915#16182] / [i915#4817]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk1/igt@i915_suspend@forcewake.html - shard-rkl: [PASS][109] -> [INCOMPLETE][110] ([i915#4817]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@i915_suspend@forcewake.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-rkl: NOTRUN -> [INCOMPLETE][111] ([i915#4817]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4212]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#12454] / [i915#12712]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][115] ([i915#12761]) +1 other test incomplete [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#9531]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk10: NOTRUN -> [SKIP][117] ([i915#1769]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#5286]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#5286]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#14544] / [i915#5286]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][123] -> [FAIL][124] ([i915#15733] / [i915#5138]) +1 other test fail [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#3638]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#3828]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3828]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html - shard-dg1: NOTRUN -> [SKIP][129] ([i915#3828]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#14544] / [i915#3638]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][131] +15 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#14544]) +17 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5190]) +8 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#6095]) +199 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6095]) +34 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#14544] / [i915#6095]) +15 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#12313]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +84 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#14098] / [i915#6095]) +50 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6095]) +59 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#12805]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#6095]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#14098] / [i915#14544] / [i915#6095]) +9 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +104 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#12313]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#12313]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-dg2: NOTRUN -> [SKIP][150] ([i915#12313]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#6095]) +71 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#3742]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3742]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#11151]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-5/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#16471]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#16471]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#16471]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +5 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_chamelium_frames@dp-crc-single.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +6 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-3/igt@kms_chamelium_frames@dp-crc-single.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-6/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +6 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +7 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#15865]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3299]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_content_protection@dp-mst-type-0.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#14544] / [i915#15330] / [i915#3116]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#15330] / [i915#3299]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#15330] / [i915#3116] / [i915#3299]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#15330] / [i915#3299]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#15330]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#15865]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#15865]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#15865]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#15865]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-3/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#15865]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#3555]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][179] ([i915#13566]) +1 other test fail [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#13049]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [PASS][181] -> [FAIL][182] ([i915#13566]) +3 other tests fail [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][183] ([i915#13566]) +1 other test fail [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#13049]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#13049]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +8 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8814]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8814]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-edp-1: - shard-mtlp: [PASS][190] -> [FAIL][191] ([i915#13566] / [i915#15733]) +2 other tests fail [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-edp-1.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-edp-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#4103]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#13046] / [i915#5354]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#9809]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#9067]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9067]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#9067]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9067]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9067]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#4103]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#1769] / [i915#3555] / [i915#3804]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#3804]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev@basic: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#1257]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-8/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#13749]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@kms_dp_link_training@non-uhbr-sst.html - shard-dg2: NOTRUN -> [SKIP][205] ([i915#13749]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-5/igt@kms_dp_link_training@non-uhbr-sst.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#13749]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-sst.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#13749]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_dp_link_training@non-uhbr-sst.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#13749]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#13748]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_dp_link_training@uhbr-mst.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#13748]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-18/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#13707]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#13707]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#16361]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-ultrajoiner: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#16361]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-16/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#16361]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#16361]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#16361]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#16361]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][219] ([i915#9878]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk10/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#16680]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-5/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#16081]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#16081]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#16599]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][224] ([i915#16599]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#16599]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#16599]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#16599]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@dsc: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#16600]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@hdr: - shard-rkl: [PASS][229] -> [SKIP][230] ([i915#16600]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-1/igt@kms_feature_discovery@hdr.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_feature_discovery@hdr.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#658]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#4881]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@kms_fence_pin_leak.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#4881]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@kms_fence_pin_leak.html - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#4881]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#9934]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3637] / [i915#9934]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3637] / [i915#9934]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][238] ([i915#12745] / [i915#4839]) +1 other test incomplete [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][239] ([i915#12745]) +1 other test incomplete [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#9934]) +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_flip@2x-plain-flip.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#9934]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#3637] / [i915#9934]) +6 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#9934]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-rkl: [PASS][244] -> [FAIL][245] ([i915#13027]) +1 other test fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@kms_flip@flip-vs-expired-vblank.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg1: [PASS][246] -> [FAIL][247] ([i915#13027]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-19/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank-interruptible.html - shard-snb: [PASS][248] -> [FAIL][249] ([i915#13027]) +1 other test fail [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-snb6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-snb5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3: - shard-dg1: NOTRUN -> [FAIL][250] ([i915#15718]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#15643]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#14544] / [i915#15643]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][253] ([i915#15643]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#15643]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#15643]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#15643]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][257] +68 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#5439]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#5439]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#15989]) +9 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-blt: - shard-rkl: [PASS][261] -> [SKIP][262] ([i915#15989]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-blt.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15991]) +24 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][264] +105 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#15990]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#15989]) +14 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-suspend: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#15989]) +21 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-5/igt@kms_frontbuffer_tracking@fbchdr-suspend.html - shard-rkl: NOTRUN -> [ABORT][268] ([i915#15132]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-linear: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#15989]) +18 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#1825]) +6 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#14544] / [i915#1825]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#15102]) +44 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#14544] / [i915#15102]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#15102]) +27 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#15989]) +22 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#15102]) +26 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#15102]) +18 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][278] +55 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#15990]) +16 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#15102]) +20 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#5439]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#10055]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][283] ([i915#10055]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#15989]) +13 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-16/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#15990]) +18 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#9766]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-glk: NOTRUN -> [SKIP][287] +215 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk2/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#10433] / [i915#15102]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#15991] / [i915#5354]) +15 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-glk11: NOTRUN -> [SKIP][291] +128 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#15990] / [i915#8708]) +14 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#15991] / [i915#1825]) +17 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#15990] / [i915#8708]) +10 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15990] / [i915#8708]) +4 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#15102] / [i915#3023]) +14 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#15991]) +25 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][298] +85 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#16518] / [i915#3555] / [i915#8228]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-7/igt@kms_hdr@bpc-switch-dpms.html - shard-rkl: NOTRUN -> [SKIP][300] ([i915#16644] / [i915#3555] / [i915#8228]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#8228]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8228]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-8/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#12713]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#12713] / [i915#16490] / [i915#3555] / [i915#8228]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-rkl: [PASS][305] -> [SKIP][306] ([i915#16644] / [i915#3555] / [i915#8228]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-1/igt@kms_hdr@static-toggle.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#15460]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][308] ([i915#15460]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#15459]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@kms_joiner@basic-force-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#15459]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@kms_joiner@basic-force-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][311] ([i915#15459]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-5/igt@kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][312] ([i915#15459]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_joiner@basic-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][313] ([i915#15459]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#15458]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-7/igt@kms_joiner@basic-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][315] ([i915#15458]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][316] ([i915#15458]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][317] ([i915#15458]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-3/igt@kms_joiner@basic-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#15458]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#15460]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][320] ([i915#12756] / [i915#13409] / [i915#13476] / [i915#16789]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][321] ([i915#13409] / [i915#13476] / [i915#16789]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-glk11: NOTRUN -> [DMESG-WARN][322] ([i915#118]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk11/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#13705]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#13705]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#15709]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#15709]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#15709]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#16386]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#15709]) +5 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#15709]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#16386]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#16386]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#16386]) +3 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#16386]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#15709]) +4 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#16112]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][337] ([i915#10647] / [i915#12169]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][338] ([i915#10647]) +1 other test fail [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#3555] / [i915#8821]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-8/igt@kms_plane_lowres@tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][340] ([i915#14544] / [i915#3555]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][341] ([i915#3555]) +4 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-10/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#8821]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-none: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#13958]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-none.html - shard-rkl: NOTRUN -> [SKIP][344] ([i915#13958] / [i915#14544]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html - shard-dg1: NOTRUN -> [SKIP][345] ([i915#13958]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-none.html - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#13958]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][347] ([i915#13958]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#14259]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#14259]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@kms_plane_multiple@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][350] ([i915#14259]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-6/igt@kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#14259]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][352] ([i915#14259]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#15329]) +8 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#15329] / [i915#3555]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#15329] / [i915#3555]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#15329]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#15329] / [i915#3555] / [i915#6953]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#15329]) +3 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#12343]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-10/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#9685]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#15948]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][362] ([i915#16479]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#15739]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][364] -> [SKIP][365] ([i915#9340]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@cursor: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#4077]) +9 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][367] ([i915#14544] / [i915#15073]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#15073]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#15073]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][370] -> [SKIP][371] ([i915#15073]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][372] -> [SKIP][373] ([i915#14544] / [i915#15073]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][374] ([i915#15073]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][375] -> [SKIP][376] ([i915#15073]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-dg1: [PASS][377] -> [SKIP][378] ([i915#15073]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#15073]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#6524] / [i915#6805]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][381] ([i915#6524]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][382] ([i915#6524]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][383] ([i915#6524]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#6524]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#11520]) +8 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][386] ([i915#11520]) +5 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][387] ([i915#11520]) +3 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#11520]) +8 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#11520] / [i915#14544]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-glk11: NOTRUN -> [SKIP][390] ([i915#11520]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][391] ([i915#9808]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][392] ([i915#12316]) +4 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][393] ([i915#11520]) +4 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#11520]) +5 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][395] ([i915#11520]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][396] ([i915#11520]) +6 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][397] ([i915#9683]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-primary-render: - shard-glk10: NOTRUN -> [SKIP][398] +112 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-glk10/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-pr-sprite-render: - shard-snb: NOTRUN -> [SKIP][399] +230 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-snb5/igt@kms_psr@fbc-pr-sprite-render.html - shard-dg1: NOTRUN -> [SKIP][400] ([i915#1072] / [i915#9732]) +17 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-render.html - shard-tglu: NOTRUN -> [SKIP][401] ([i915#9732]) +23 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-8/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][402] ([i915#9688]) +12 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-8/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][403] ([i915#1072] / [i915#9732]) +22 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][404] ([i915#9732]) +12 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][405] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][406] ([i915#1072] / [i915#9732]) +17 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][407] ([i915#4077] / [i915#9688]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][408] ([i915#15949]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-tglu: NOTRUN -> [SKIP][409] ([i915#15949]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2: NOTRUN -> [SKIP][410] ([i915#15949]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][411] ([i915#15949]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][412] ([i915#5289]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][413] ([i915#5190]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][414] ([i915#5289]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][415] ([i915#5289]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][416] ([i915#5289]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][417] ([i915#3555] / [i915#8809] / [i915#8823]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][418] ([i915#8623]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][419] ([i915#9906]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][420] ([i915#3555] / [i915#9906]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][421] ([i915#9906]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][422] ([i915#9906]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][423] ([i915#9906]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][424] ([i915#8808] / [i915#9906]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][425] ([i915#2436]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][426] ([i915#2436]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][427] ([i915#2434]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@perf@mi-rpc.html - shard-dg1: NOTRUN -> [SKIP][428] ([i915#2434]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start: - shard-mtlp: [PASS][429] -> [FAIL][430] ([i915#4349]) +2 other tests fail [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-mtlp-1/igt@perf_pmu@busy-double-start.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [PASS][431] -> [FAIL][432] ([i915#15997]) +1 other test fail [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@perf_pmu@most-busy-idle-check-all.html - shard-dg1: NOTRUN -> [FAIL][433] ([i915#15997]) +1 other test fail [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all.html - shard-mtlp: [PASS][434] -> [FAIL][435] ([i915#15997]) +1 other test fail [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][436] ([i915#14544] / [i915#8516]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html - shard-dg1: NOTRUN -> [SKIP][437] ([i915#8516]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][438] ([i915#8516]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_udl@share-import: - shard-tglu: NOTRUN -> [SKIP][439] ([i915#16420]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-4/igt@prime_udl@share-import.html * igt@prime_udl@share-import-addfb: - shard-tglu-1: NOTRUN -> [SKIP][440] ([i915#16420]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][441] ([i915#3291] / [i915#3708]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-8/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][442] ([i915#3708]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@prime_vgem@fence-write-hang.html - shard-dg1: NOTRUN -> [SKIP][443] ([i915#3708]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][444] ([i915#9917]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2: - shard-tglu-1: NOTRUN -> [SKIP][445] ([i915#16066]) +8 other tests skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-tglu: [FAIL][446] ([i915#15816]) -> [PASS][447] [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-tglu-5/igt@gem_exec_big@single.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-9/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s0: - shard-rkl: [INCOMPLETE][448] ([i915#13356]) -> [PASS][449] +1 other test pass [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@gem_exec_suspend@basic-s0.html * igt@i915_pm_rpm@system-suspend: - shard-dg1: [DMESG-WARN][450] ([i915#4423]) -> [PASS][451] [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-18/igt@i915_pm_rpm@system-suspend.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@i915_pm_rpm@system-suspend.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: [DMESG-WARN][452] ([i915#4391] / [i915#4423]) -> [PASS][453] [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-14/igt@i915_suspend@basic-s2idle-without-i915.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-rkl: [FAIL][454] ([i915#15662]) -> [PASS][455] [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][456] ([i915#13566]) -> [PASS][457] +1 other test pass [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [FAIL][458] ([i915#13566]) -> [PASS][459] +2 other tests pass [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg1: [FAIL][460] ([i915#4767]) -> [PASS][461] [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-17/igt@kms_fbcon_fbt@fbc-suspend.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-rkl: [SKIP][462] ([i915#15989]) -> [PASS][463] +9 other tests pass [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: [SKIP][464] ([i915#16644] / [i915#3555] / [i915#8228]) -> [PASS][465] [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-3/igt@kms_hdr@static-toggle-dpms.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [SKIP][466] ([i915#15073]) -> [PASS][467] +1 other test pass [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [INCOMPLETE][468] ([i915#14419]) -> [PASS][469] [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [INCOMPLETE][470] ([i915#12276]) -> [PASS][471] [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html #### Warnings #### * igt@gem_ccs@suspend-resume: - shard-rkl: [SKIP][472] ([i915#9323]) -> [SKIP][473] ([i915#14544] / [i915#9323]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-4/igt@gem_ccs@suspend-resume.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][474] ([i915#6335]) -> [SKIP][475] ([i915#14544] / [i915#6335]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][476] ([i915#280]) -> [SKIP][477] ([i915#14544] / [i915#280]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#280]) -> [SKIP][479] ([i915#280]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: [SKIP][480] ([i915#4525]) -> [SKIP][481] ([i915#14544] / [i915#4525]) +2 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-rkl: [SKIP][482] ([i915#3281]) -> [SKIP][483] ([i915#14544] / [i915#3281]) +3 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-wc.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_exec_reloc@basic-gtt-active: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#3281]) -> [SKIP][485] ([i915#3281]) +2 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-active.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-active.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#4613]) -> [SKIP][487] ([i915#4613]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@verify: - shard-rkl: [SKIP][488] ([i915#4613]) -> [SKIP][489] ([i915#14544] / [i915#4613]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-3/igt@gem_lmem_swapping@verify.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_lmem_swapping@verify.html * igt@gem_partial_pwrite_pread@write-display: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#3282]) -> [SKIP][491] ([i915#3282]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: [SKIP][492] ([i915#3282]) -> [SKIP][493] ([i915#14544] / [i915#3282]) +3 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#8411]) -> [SKIP][495] ([i915#8411]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: [SKIP][496] ([i915#15656]) -> [SKIP][497] ([i915#14544] / [i915#15656]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-7/igt@gem_tiled_pread_basic@basic.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][498] ([i915#3297]) -> [SKIP][499] ([i915#14544] / [i915#3297]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: [SKIP][500] ([i915#3281] / [i915#3297]) -> [SKIP][501] ([i915#14544] / [i915#3281] / [i915#3297]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@gem_userptr_blits@relocations.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#3297]) -> [SKIP][503] ([i915#3297]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#2527]) -> [SKIP][505] ([i915#2527]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][506] ([i915#2527]) -> [SKIP][507] ([i915#14544] / [i915#2527]) +1 other test skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@fault-injection: - shard-dg1: [ABORT][508] ([i915#11814]) -> [ABORT][509] ([i915#11814] / [i915#15481]) +1 other test abort [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-18/igt@i915_module_load@fault-injection.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-18/igt@i915_module_load@fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: [SKIP][510] ([i915#8399]) -> [SKIP][511] ([i915#14544] / [i915#8399]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_query@query-topology-unsupported: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#16079]) -> [SKIP][513] ([i915#16079]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@i915_query@query-topology-unsupported.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@i915_query@query-topology-unsupported.html * igt@intel_hwmon@hwmon-write: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#7707]) -> [SKIP][515] ([i915#7707]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@intel_hwmon@hwmon-write.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][516] ([i915#1769] / [i915#3555]) -> [SKIP][517] ([i915#14544] / [i915#1769] / [i915#3555]) +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][518] ([i915#14544] / [i915#5286]) -> [SKIP][519] ([i915#5286]) +2 other tests skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][520] ([i915#5286]) -> [SKIP][521] ([i915#14544] / [i915#5286]) +4 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: [SKIP][522] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][523] ([i915#4538] / [i915#5286]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: [SKIP][524] ([i915#3828]) -> [SKIP][525] ([i915#14544] / [i915#3828]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#3638]) -> [SKIP][527] ([i915#3638]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][528] ([i915#14098] / [i915#6095]) -> [SKIP][529] ([i915#14098] / [i915#14544] / [i915#6095]) +15 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][530] ([i915#6095]) -> [SKIP][531] ([i915#14544] / [i915#6095]) +9 other tests skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][532] ([i915#14544] / [i915#6095]) -> [SKIP][533] ([i915#6095]) +4 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][534] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][535] ([i915#14098] / [i915#6095]) +6 other tests skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][536] ([i915#12313] / [i915#14544]) -> [SKIP][537] ([i915#12313]) +1 other test skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][538] ([i915#14544] / [i915#3742]) -> [SKIP][539] ([i915#3742]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_cdclk@mode-transition.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-rkl: [SKIP][540] ([i915#11151] / [i915#14544]) -> [SKIP][541] ([i915#11151]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-1/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4: - shard-rkl: [SKIP][542] ([i915#14544] / [i915#16471]) -> [SKIP][543] ([i915#16471]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg1: [SKIP][544] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][545] ([i915#11151] / [i915#7828]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-19/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: [SKIP][546] ([i915#11151] / [i915#7828]) -> [SKIP][547] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_chamelium_frames@dp-crc-fast.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-rkl: [SKIP][548] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][549] ([i915#11151] / [i915#7828]) +2 other tests skip [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@content-type-change: - shard-rkl: [SKIP][550] ([i915#15865]) -> [SKIP][551] ([i915#14544] / [i915#15865]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-8/igt@kms_content_protection@content-type-change.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][552] ([i915#14544] / [i915#15330]) -> [SKIP][553] ([i915#15330]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#15865]) -> [SKIP][555] ([i915#15865]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_content_protection@lic-type-1.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-rkl: [SKIP][556] ([i915#3555]) -> [SKIP][557] ([i915#14544] / [i915#3555]) +2 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][558] ([i915#14544] / [i915#3555]) -> [SKIP][559] ([i915#3555]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][560] ([i915#14544]) -> [SKIP][561] +34 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][562] ([i915#14544] / [i915#4103]) -> [SKIP][563] ([i915#4103]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][564] ([i915#4103]) -> [SKIP][565] ([i915#14544] / [i915#4103]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: [SKIP][566] ([i915#14544] / [i915#9723]) -> [SKIP][567] ([i915#9723]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-basic-ultrajoiner: - shard-rkl: [SKIP][568] ([i915#16361]) -> [SKIP][569] ([i915#14544] / [i915#16361]) +5 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_dsc@dsc-basic-ultrajoiner.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_dsc@dsc-basic-ultrajoiner.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][570] ([i915#14544] / [i915#16361]) -> [SKIP][571] ([i915#16361]) +1 other test skip [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_flip@2x-flip-vs-fences: - shard-rkl: [SKIP][572] ([i915#9934]) -> [SKIP][573] ([i915#14544] / [i915#9934]) +1 other test skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@kms_flip@2x-flip-vs-fences.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-modeset: - shard-rkl: [SKIP][574] ([i915#14544] / [i915#9934]) -> [SKIP][575] ([i915#9934]) +3 other tests skip [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: [SKIP][576] ([i915#15643]) -> [SKIP][577] ([i915#14544] / [i915#15643]) +2 other tests skip [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: [SKIP][578] -> [SKIP][579] ([i915#15672]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][580] ([i915#1825]) -> [SKIP][581] ([i915#14544] / [i915#1825]) +3 other tests skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][582] ([i915#14544] / [i915#1825]) -> [SKIP][583] ([i915#1825]) +4 other tests skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-dg1: [SKIP][584] ([i915#15102] / [i915#4423]) -> [SKIP][585] ([i915#15102]) +1 other test skip [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][586] ([i915#15102]) -> [SKIP][587] ([i915#10433] / [i915#15102]) +4 other tests skip [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render: - shard-rkl: [SKIP][588] ([i915#14544] / [i915#15102]) -> [SKIP][589] ([i915#15102]) +11 other tests skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][590] ([i915#10433] / [i915#15102]) -> [SKIP][591] ([i915#15102]) [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][592] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][593] ([i915#15102] / [i915#3023]) +9 other tests skip [592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][594] ([i915#15102] / [i915#3023]) -> [SKIP][595] ([i915#14544] / [i915#15102] / [i915#3023]) +9 other tests skip [594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-rkl: [SKIP][596] ([i915#15102]) -> [SKIP][597] ([i915#14544] / [i915#15102]) +14 other tests skip [596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-4/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][598] -> [SKIP][599] ([i915#14544]) +59 other tests skip [598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [ABORT][600] ([i915#15132]) -> [SKIP][601] ([i915#16644] / [i915#3555] / [i915#8228]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][602] ([i915#12713] / [i915#16644]) -> [SKIP][603] ([i915#16644]) [602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_mst@mst-suspend-read-crc: - shard-rkl: [SKIP][604] ([i915#16451]) -> [SKIP][605] ([i915#14544] / [i915#16451]) [604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-3/igt@kms_mst@mst-suspend-read-crc.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][606] ([i915#14544] / [i915#6301]) -> [SKIP][607] ([i915#6301]) [606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][608] ([i915#15709]) -> [SKIP][609] ([i915#14544] / [i915#15709]) +3 other tests skip [608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-rkl: [SKIP][610] ([i915#14544] / [i915#15709]) -> [SKIP][611] ([i915#15709]) +2 other tests skip [610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][612] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][613] ([i915#12343] / [i915#5354]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: [SKIP][614] ([i915#12343] / [i915#5354]) -> [SKIP][615] ([i915#12343] / [i915#14544] / [i915#5354]) [614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-8/igt@kms_pm_backlight@fade-with-suspend.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-dg1: [SKIP][616] ([i915#4423] / [i915#9685]) -> [SKIP][617] ([i915#9685]) [616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-19/igt@kms_pm_dc@dc5-pageflip-negative.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-15/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][618] ([i915#3828]) -> [SKIP][619] ([i915#9340]) [618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][620] ([i915#15403]) -> [SKIP][621] ([i915#14544] / [i915#15403]) [620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-3/igt@kms_pm_rpm@package-g7.html [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][622] ([i915#11520]) -> [SKIP][623] ([i915#11520] / [i915#14544]) +6 other tests skip [622]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][624] ([i915#11520] / [i915#14544]) -> [SKIP][625] ([i915#11520]) +3 other tests skip [624]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][626] ([i915#14544] / [i915#9683]) -> [SKIP][627] ([i915#9683]) +1 other test skip [626]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-suspend: - shard-rkl: [SKIP][628] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][629] ([i915#1072] / [i915#9732]) +5 other tests skip [628]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_psr@fbc-pr-suspend.html [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-4/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: [SKIP][630] ([i915#1072] / [i915#9732]) -> [SKIP][631] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip [630]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][632] ([i915#14544] / [i915#15949]) -> [SKIP][633] ([i915#15949]) [632]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: [SKIP][634] ([i915#5289]) -> [SKIP][635] ([i915#14544] / [i915#5289]) +1 other test skip [634]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_framebuffer: - shard-dg1: [ABORT][636] ([i915#13179]) -> [ABORT][637] ([i915#13179] / [i915#16508]) +1 other test abort [636]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-14/igt@kms_selftest@drm_framebuffer.html [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-19/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: [SKIP][638] ([i915#8623]) -> [SKIP][639] ([i915#14544] / [i915#8623]) [638]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][640] ([i915#15243] / [i915#3555]) -> [SKIP][641] ([i915#14544] / [i915#15243] / [i915#3555]) [640]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-5/igt@kms_vrr@flip-dpms.html [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][642] ([i915#11920] / [i915#14544]) -> [SKIP][643] ([i915#11920]) [642]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@kms_vrr@lobf.html [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-4/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-rkl: [SKIP][644] ([i915#9906]) -> [SKIP][645] ([i915#14544] / [i915#9906]) [644]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-4/igt@kms_vrr@max-min.html [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@kms_vrr@max-min.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][646] ([i915#2433]) -> [SKIP][647] ([i915#14544] / [i915#2433]) [646]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-1/igt@perf@unprivileged-single-ctx-counters.html [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@module-unload: - shard-dg2: [ABORT][648] ([i915#13029] / [i915#15778]) -> [ABORT][649] ([i915#15778]) [648]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg2-6/igt@perf_pmu@module-unload.html [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg2-1/igt@perf_pmu@module-unload.html - shard-dg1: [ABORT][650] ([i915#13029] / [i915#15778]) -> [ABORT][651] ([i915#15778]) [650]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-dg1-16/igt@perf_pmu@module-unload.html [651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-dg1-14/igt@perf_pmu@module-unload.html - shard-tglu: [ABORT][652] ([i915#15778]) -> [ABORT][653] ([i915#13029] / [i915#15778]) [652]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-tglu-4/igt@perf_pmu@module-unload.html [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-tglu-8/igt@perf_pmu@module-unload.html * igt@prime_udl@share-import: - shard-rkl: [SKIP][654] ([i915#16420]) -> [SKIP][655] ([i915#14544] / [i915#16420]) [654]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-2/igt@prime_udl@share-import.html [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-6/igt@prime_udl@share-import.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: [SKIP][656] ([i915#14544] / [i915#9917]) -> [SKIP][657] ([i915#9917]) [656]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18982/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15718]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15718 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490 [i915#16508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16508 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680 [i915#16789]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16789 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9052 -> IGTPW_15664 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18982: 96ddbb14986632af742523e68f90d51c138c57f0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15664: 88d475ce1257e96e412f238f819fe929f18a3947 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9052: 9052 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15664/index.html [-- Attachment #2: Type: text/html, Size: 220546 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-08-20 11:11 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-08-12 13:07 [PATCH i-g-t v4 0/2] Add CMRR subtests Naladala Ramanaidu 2026-08-12 13:07 ` [PATCH i-g-t v4 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu 2026-08-19 16:03 ` Golani, Mitulkumar Ajitkumar 2026-08-20 11:08 ` Borah, Chaitanya Kumar 2026-08-12 13:07 ` [PATCH i-g-t v4 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests Naladala Ramanaidu 2026-08-19 17:00 ` Golani, Mitulkumar Ajitkumar 2026-08-20 11:10 ` Borah, Chaitanya Kumar 2026-08-20 11:10 ` Borah, Chaitanya Kumar 2026-08-12 14:12 ` ✓ i915.CI.BAT: success for Add CMRR subtests (rev4) Patchwork 2026-08-12 14:14 ` ✓ Xe.CI.BAT: " Patchwork 2026-08-12 17:49 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-08-12 18:01 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox