* [PATCH i-g-t 0/2] Refactor DRM Debug Severity Handling for enhanced precision
@ 2025-03-10 17:15 Pranay Samala
2025-03-10 17:15 ` [PATCH i-g-t 1/2] lib/igt_sysfs: Update DRM debug severity handling to use bitmask for verbosity control Pranay Samala
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Pranay Samala @ 2025-03-10 17:15 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar, pranay.samala
This commit refactors the DRM debug severity logic to provide more
precise control over the debug output by using bitwise operations.
The previous approach lacked flexibility, as it set the debug log
directly, but this change ensures that only specific bits in the
DRM debug mask are modified.
By unsetting unwanted bits and allowing the function to set only the
passed bits, we gain more granular control over the logging output.
Pranay Samala (2):
lib/igt_sysfs: Update DRM debug severity handling to use bitmask for
verbosity control
tests/kms: Simplify DRM debug severity update
lib/igt_sysfs.c | 54 +++++++++++++------------
lib/igt_sysfs.h | 19 +++++++--
tests/intel/kms_dp_linktrain_fallback.c | 12 ++----
tests/kms_atomic_transition.c | 11 +----
tests/kms_cursor_legacy.c | 10 +----
5 files changed, 50 insertions(+), 56 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t 1/2] lib/igt_sysfs: Update DRM debug severity handling to use bitmask for verbosity control 2025-03-10 17:15 [PATCH i-g-t 0/2] Refactor DRM Debug Severity Handling for enhanced precision Pranay Samala @ 2025-03-10 17:15 ` Pranay Samala 2025-03-11 8:49 ` Jani Nikula 2025-03-10 17:15 ` [PATCH i-g-t 2/2] tests/kms: Simplify DRM debug severity update Pranay Samala ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Pranay Samala @ 2025-03-10 17:15 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar, pranay.samala, Leo Li, Jani Nikula, Uma Shankar, Ramanaidu Naladala This approach ensures precise control by modifying specific bits in the DRM debug mask. Updated the DRM debug severity logic to use bitwise operations to unset unwanted bits in the debug mask. The function now only sets the bits that are passed, allowing for more granular control over the logging output. Cc: Leo Li <sunpeng.li@amd.com> Cc: Jani Nikula <jani.nikula@intel.com> Cc: Uma Shankar <uma.shankar@intel.com> Cc: Kunal Joshi <kunal1.joshi@intel.com> Cc: Karthik B S <karthik.b.s@intel.com> Cc: Ramanaidu Naladala <ramanaidu.naladala@intel.com> Cc: Sameer Lattannavar <sameer.lattannavar@intel.com> Fixes: 56b91193b825 ("lib/igt_sysfs: Implement dynamic adjustment of debug log level") Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- lib/igt_sysfs.c | 54 ++++++++++++++++++++++++++----------------------- lib/igt_sysfs.h | 19 ++++++++++++++--- 2 files changed, 45 insertions(+), 28 deletions(-) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index 2e4c2ee63..2a3cb68e4 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -443,69 +443,71 @@ int igt_sysfs_drm_module_params_open(void) return open(path, O_RDONLY); } -static int log_level = -1; +static int log_severity = -1; /** - * igt_drm_debug_level_get: + * igt_drm_debug_severity_get: * - * This reads the current debug log level of the machine on + * This reads the current debug log severity of the machine on * which the test is currently executing. * * Returns: - * The current log level, or -1 on error. + * The current log severity, or -1 on error. */ -int igt_drm_debug_level_get(int dir) +int igt_drm_debug_severity_get(int dir) { char buf[20]; - if (log_level >= 0) - return log_level; + if (log_severity >= 0) + return log_severity; - if (igt_sysfs_read(dir, "debug", buf, sizeof(buf) - 1) < 0) + if (igt_sysfs_read(dir, "debug", buf, sizeof(buf)) < 0) return -1; return atoi(buf); } /** - * igt_drm_debug_level_reset: + * igt_drm_debug_severity_reset: * - * This modifies the current debug log level of the machine + * This modifies the current debug log severity of the machine * to the default value post-test. * */ -void igt_drm_debug_level_reset(void) +void igt_drm_debug_severity_reset(void) { char buf[20]; int dir; - if (log_level < 0) + if (log_severity < 0) return; dir = igt_sysfs_drm_module_params_open(); if (dir < 0) return; - igt_debug("Resetting DRM debug level to %d\n", log_level); - snprintf(buf, sizeof(buf), "%d", log_level); + igt_debug("Resetting DRM debug severity to 0x%x\n", log_severity); + snprintf(buf, sizeof(buf), "%d", log_severity); igt_assert(igt_sysfs_set(dir, "debug", buf)); close(dir); } -static void igt_drm_debug_level_reset_exit_handler(int sig) +static void igt_drm_debug_severity_reset_exit_handler(int sig) { - igt_drm_debug_level_reset(); + igt_drm_debug_severity_reset(); } /** - * igt_drm_debug_level_update: - * @debug_level: new debug level to set + * igt_drm_debug_severity_update: + * @debug_severity: new debug severity to set * - * This modifies the current drm debug log level to the new value. + * This modifies the current drm debug log severity to the new value. */ -void igt_drm_debug_level_update(unsigned int new_log_level) + +void igt_drm_debug_severity_update(enum drm_debug_category category_to_set) { + unsigned int new_log_severity; char buf[20]; int dir; @@ -513,14 +515,16 @@ void igt_drm_debug_level_update(unsigned int new_log_level) if (dir < 0) return; - log_level = igt_drm_debug_level_get(dir); - if (log_level < 0) { + log_severity = igt_drm_debug_severity_get(dir); + if (log_severity < 0) { close(dir); return; } - igt_debug("Setting DRM debug level to %d\n", new_log_level); - snprintf(buf, sizeof(buf), "%d", new_log_level); + new_log_severity = category_to_set; + + igt_debug("Setting DRM debug severity to 0x%x\n", new_log_severity); + snprintf(buf, sizeof(buf), "%d", new_log_severity); igt_assert(igt_sysfs_set(dir, "debug", buf)); close(dir); @@ -529,7 +533,7 @@ void igt_drm_debug_level_update(unsigned int new_log_level) * TODO: Check whether multiple exit handlers will get installed, * if we call this api multiple times */ - igt_install_exit_handler(igt_drm_debug_level_reset_exit_handler); + igt_install_exit_handler(igt_drm_debug_severity_reset_exit_handler); } /** diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 86345f3d1..c2e15320d 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -143,9 +143,22 @@ void igt_sysfs_set_boolean(int dir, const char *attr, bool value); void bind_fbcon(bool enable); void fbcon_blink_enable(bool enable); -void igt_drm_debug_level_update(unsigned int new_log_level); -void igt_drm_debug_level_reset(void); -int igt_drm_debug_level_get(int dir); +enum drm_debug_category { + DRM_UT_CORE = 1 << 0, + DRM_UT_DRIVER = 1 << 1, + DRM_UT_KMS = 1 << 2, + DRM_UT_PRIME = 1 << 3, + DRM_UT_ATOMIC = 1 << 4, + DRM_UT_VBL = 1 << 5, + DRM_UT_STATE = 1 << 6, + DRM_UT_LEASE = 1 << 7, + DRM_UT_DP = 1 << 8, + DRM_UT_DRMRES = 1 << 9, +}; + +void igt_drm_debug_severity_update(enum drm_debug_category category_to_set); +void igt_drm_debug_severity_reset(void); +int igt_drm_debug_severity_get(int dir); int igt_sysfs_drm_module_params_open(void); /** -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_sysfs: Update DRM debug severity handling to use bitmask for verbosity control 2025-03-10 17:15 ` [PATCH i-g-t 1/2] lib/igt_sysfs: Update DRM debug severity handling to use bitmask for verbosity control Pranay Samala @ 2025-03-11 8:49 ` Jani Nikula 0 siblings, 0 replies; 8+ messages in thread From: Jani Nikula @ 2025-03-11 8:49 UTC (permalink / raw) To: Pranay Samala, igt-dev Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar, pranay.samala, Leo Li, Uma Shankar, Ramanaidu Naladala On Mon, 10 Mar 2025, Pranay Samala <pranay.samala@intel.com> wrote: > This approach ensures precise control by modifying > specific bits in the DRM debug mask. > > Updated the DRM debug severity logic to use bitwise > operations to unset unwanted bits in the debug mask. > The function now only sets the bits that are passed, > allowing for more granular control over the logging output. Please don't call it "severity" when drm debug is about "category". You can't say one category is more "severe" than another. > > Cc: Leo Li <sunpeng.li@amd.com> > Cc: Jani Nikula <jani.nikula@intel.com> > Cc: Uma Shankar <uma.shankar@intel.com> > Cc: Kunal Joshi <kunal1.joshi@intel.com> > Cc: Karthik B S <karthik.b.s@intel.com> > Cc: Ramanaidu Naladala <ramanaidu.naladala@intel.com> > Cc: Sameer Lattannavar <sameer.lattannavar@intel.com> > > Fixes: 56b91193b825 ("lib/igt_sysfs: Implement dynamic adjustment of debug log level") > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > lib/igt_sysfs.c | 54 ++++++++++++++++++++++++++----------------------- > lib/igt_sysfs.h | 19 ++++++++++++++--- > 2 files changed, 45 insertions(+), 28 deletions(-) > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > index 2e4c2ee63..2a3cb68e4 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -443,69 +443,71 @@ int igt_sysfs_drm_module_params_open(void) > return open(path, O_RDONLY); > } > > -static int log_level = -1; > +static int log_severity = -1; > > /** > - * igt_drm_debug_level_get: > + * igt_drm_debug_severity_get: > * > - * This reads the current debug log level of the machine on > + * This reads the current debug log severity of the machine on > * which the test is currently executing. > * > * Returns: > - * The current log level, or -1 on error. > + * The current log severity, or -1 on error. > */ > -int igt_drm_debug_level_get(int dir) > +int igt_drm_debug_severity_get(int dir) > { > char buf[20]; > > - if (log_level >= 0) > - return log_level; > + if (log_severity >= 0) > + return log_severity; > > - if (igt_sysfs_read(dir, "debug", buf, sizeof(buf) - 1) < 0) > + if (igt_sysfs_read(dir, "debug", buf, sizeof(buf)) < 0) > return -1; > > return atoi(buf); > } > > /** > - * igt_drm_debug_level_reset: > + * igt_drm_debug_severity_reset: > * > - * This modifies the current debug log level of the machine > + * This modifies the current debug log severity of the machine > * to the default value post-test. > * > */ > -void igt_drm_debug_level_reset(void) > +void igt_drm_debug_severity_reset(void) > { > char buf[20]; > int dir; > > - if (log_level < 0) > + if (log_severity < 0) > return; > > dir = igt_sysfs_drm_module_params_open(); > if (dir < 0) > return; > > - igt_debug("Resetting DRM debug level to %d\n", log_level); > - snprintf(buf, sizeof(buf), "%d", log_level); > + igt_debug("Resetting DRM debug severity to 0x%x\n", log_severity); > + snprintf(buf, sizeof(buf), "%d", log_severity); > igt_assert(igt_sysfs_set(dir, "debug", buf)); > > close(dir); > } > > -static void igt_drm_debug_level_reset_exit_handler(int sig) > +static void igt_drm_debug_severity_reset_exit_handler(int sig) > { > - igt_drm_debug_level_reset(); > + igt_drm_debug_severity_reset(); > } > > /** > - * igt_drm_debug_level_update: > - * @debug_level: new debug level to set > + * igt_drm_debug_severity_update: > + * @debug_severity: new debug severity to set > * > - * This modifies the current drm debug log level to the new value. > + * This modifies the current drm debug log severity to the new value. > */ > -void igt_drm_debug_level_update(unsigned int new_log_level) > + > +void igt_drm_debug_severity_update(enum drm_debug_category category_to_set) This should accept a mask instead of a single category, and the function and parameter naming should reflect that. > { > + unsigned int new_log_severity; > char buf[20]; > int dir; > > @@ -513,14 +515,16 @@ void igt_drm_debug_level_update(unsigned int new_log_level) > if (dir < 0) > return; > > - log_level = igt_drm_debug_level_get(dir); > - if (log_level < 0) { > + log_severity = igt_drm_debug_severity_get(dir); > + if (log_severity < 0) { > close(dir); > return; > } This doesn't seem to handle nested updates. The reset will put this back to the previous value, not the original value. > > - igt_debug("Setting DRM debug level to %d\n", new_log_level); > - snprintf(buf, sizeof(buf), "%d", new_log_level); > + new_log_severity = category_to_set; > + > + igt_debug("Setting DRM debug severity to 0x%x\n", new_log_severity); > + snprintf(buf, sizeof(buf), "%d", new_log_severity); > igt_assert(igt_sysfs_set(dir, "debug", buf)); > > close(dir); > @@ -529,7 +533,7 @@ void igt_drm_debug_level_update(unsigned int new_log_level) > * TODO: Check whether multiple exit handlers will get installed, > * if we call this api multiple times > */ > - igt_install_exit_handler(igt_drm_debug_level_reset_exit_handler); > + igt_install_exit_handler(igt_drm_debug_severity_reset_exit_handler); > } > > /** > diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h > index 86345f3d1..c2e15320d 100644 > --- a/lib/igt_sysfs.h > +++ b/lib/igt_sysfs.h > @@ -143,9 +143,22 @@ void igt_sysfs_set_boolean(int dir, const char *attr, bool value); > void bind_fbcon(bool enable); > void fbcon_blink_enable(bool enable); > > -void igt_drm_debug_level_update(unsigned int new_log_level); > -void igt_drm_debug_level_reset(void); > -int igt_drm_debug_level_get(int dir); > +enum drm_debug_category { > + DRM_UT_CORE = 1 << 0, > + DRM_UT_DRIVER = 1 << 1, > + DRM_UT_KMS = 1 << 2, > + DRM_UT_PRIME = 1 << 3, > + DRM_UT_ATOMIC = 1 << 4, > + DRM_UT_VBL = 1 << 5, > + DRM_UT_STATE = 1 << 6, > + DRM_UT_LEASE = 1 << 7, > + DRM_UT_DP = 1 << 8, > + DRM_UT_DRMRES = 1 << 9, > +}; > + > +void igt_drm_debug_severity_update(enum drm_debug_category category_to_set); > +void igt_drm_debug_severity_reset(void); > +int igt_drm_debug_severity_get(int dir); > int igt_sysfs_drm_module_params_open(void); > > /** -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 2/2] tests/kms: Simplify DRM debug severity update 2025-03-10 17:15 [PATCH i-g-t 0/2] Refactor DRM Debug Severity Handling for enhanced precision Pranay Samala 2025-03-10 17:15 ` [PATCH i-g-t 1/2] lib/igt_sysfs: Update DRM debug severity handling to use bitmask for verbosity control Pranay Samala @ 2025-03-10 17:15 ` Pranay Samala 2025-03-11 8:55 ` Jani Nikula 2025-03-11 0:47 ` ✓ Xe.CI.BAT: success for Refactor DRM Debug Severity Handling for enhanced precision Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Pranay Samala @ 2025-03-10 17:15 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar, pranay.samala This fixes directly sends the bits to be include in the DRM debug mask using "igt_drm_debug_severity_update(DRM_UT_KMS)". If any other verbosity is needed then it can also be included doing bitwise OR in the parametes. Fixes: a2ab0ec12ef4 ("tests/kms_atomic_transition: Reducing debug loglevel dynamically") Fixes: 4baeb7397d71 ("tests/intel/kms_dp_linktrain_fallback: Reduce debug loglevel dynamically") Fixes: 7a8a3744466f ("tests/kms_cursor_legacy: Reduce debug loglevel dynamically") Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/intel/kms_dp_linktrain_fallback.c | 12 +++--------- tests/kms_atomic_transition.c | 11 +---------- tests/kms_cursor_legacy.c | 10 +--------- 3 files changed, 5 insertions(+), 28 deletions(-) diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c index 6a872efd2..66687a3d2 100644 --- a/tests/intel/kms_dp_linktrain_fallback.c +++ b/tests/intel/kms_dp_linktrain_fallback.c @@ -613,7 +613,6 @@ igt_main data_t data = {}; igt_fixture { - int dir, current_log_level; data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); kmstest_set_vt_graphics_mode(); @@ -621,18 +620,13 @@ igt_main igt_display_require_output(&data.display); for_each_pipe(&data.display, data.pipe) data.n_pipes++; - dir = igt_sysfs_drm_module_params_open(); - if (dir >= 0) { - current_log_level = igt_drm_debug_level_get(dir); - close(dir); - - if (current_log_level > 10) - igt_drm_debug_level_update(10); - } /* * Some environments may have environment * variable set to ignore long hpd, disable it for this test */ + + igt_drm_debug_severity_update(DRM_UT_KMS); + igt_assert_f(igt_ignore_long_hpd(data.drm_fd, false), "Unable to disable ignore long hpd\n"); } diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c index 0342af206..6c5bfa188 100644 --- a/tests/kms_atomic_transition.c +++ b/tests/kms_atomic_transition.c @@ -1171,8 +1171,6 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) int pipe_count = 0; igt_fixture { - int dir, current_log_level; - data.drm_fd = drm_open_driver_master(DRIVER_ANY); kmstest_set_vt_graphics_mode(); @@ -1185,14 +1183,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_connected_output(&data.display, output) count++; - dir = igt_sysfs_drm_module_params_open(); - if (dir >= 0) { - current_log_level = igt_drm_debug_level_get(dir); - close(dir); - - if (current_log_level > 10) - igt_drm_debug_level_update(10); - } + igt_drm_debug_severity_update(DRM_UT_KMS); } igt_describe("Check toggling of primary plane with vblank"); diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c index 44f031e7b..e317fbf30 100644 --- a/tests/kms_cursor_legacy.c +++ b/tests/kms_cursor_legacy.c @@ -1839,7 +1839,6 @@ igt_main }; igt_fixture { - int dir, current_log_level; display.drm_fd = drm_open_driver_master(DRIVER_ANY); kmstest_set_vt_graphics_mode(); @@ -1851,14 +1850,7 @@ igt_main */ intel_psr2_restore = i915_psr2_sel_fetch_to_psr1(display.drm_fd, NULL); - dir = igt_sysfs_drm_module_params_open(); - if (dir >= 0) { - current_log_level = igt_drm_debug_level_get(dir); - close(dir); - - if (current_log_level > 10) - igt_drm_debug_level_update(10); - } + igt_drm_debug_severity_update(DRM_UT_KMS); } igt_describe("Test checks how many cursor updates we can fit between vblanks " -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms: Simplify DRM debug severity update 2025-03-10 17:15 ` [PATCH i-g-t 2/2] tests/kms: Simplify DRM debug severity update Pranay Samala @ 2025-03-11 8:55 ` Jani Nikula 0 siblings, 0 replies; 8+ messages in thread From: Jani Nikula @ 2025-03-11 8:55 UTC (permalink / raw) To: Pranay Samala, igt-dev Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar, pranay.samala On Mon, 10 Mar 2025, Pranay Samala <pranay.samala@intel.com> wrote: > This fixes directly sends the bits to be include in the > DRM debug mask using "igt_drm_debug_severity_update(DRM_UT_KMS)". That category alone is not enough for the test. In general, we ask bug reporters to use something like 0x1e mask for drm.debug. Maybe we can reduce from that for specific tests, but KMS alone is not enough. > If any other verbosity is needed then it can also be > included doing bitwise OR in the parametes. Perhaps, but the interface becomes cumbersome to use. And the function's parameter indicates a single enum, not a mask of enumerators. And the interface doesn't support a test using different sets of categories for different parts of the test, if so desired. BR, Jani. > Fixes: a2ab0ec12ef4 ("tests/kms_atomic_transition: Reducing debug loglevel dynamically") > Fixes: 4baeb7397d71 ("tests/intel/kms_dp_linktrain_fallback: Reduce debug loglevel dynamically") > Fixes: 7a8a3744466f ("tests/kms_cursor_legacy: Reduce debug loglevel dynamically") > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/intel/kms_dp_linktrain_fallback.c | 12 +++--------- > tests/kms_atomic_transition.c | 11 +---------- > tests/kms_cursor_legacy.c | 10 +--------- > 3 files changed, 5 insertions(+), 28 deletions(-) > > diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c > index 6a872efd2..66687a3d2 100644 > --- a/tests/intel/kms_dp_linktrain_fallback.c > +++ b/tests/intel/kms_dp_linktrain_fallback.c > @@ -613,7 +613,6 @@ igt_main > data_t data = {}; > > igt_fixture { > - int dir, current_log_level; > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | > DRIVER_XE); > kmstest_set_vt_graphics_mode(); > @@ -621,18 +620,13 @@ igt_main > igt_display_require_output(&data.display); > for_each_pipe(&data.display, data.pipe) > data.n_pipes++; > - dir = igt_sysfs_drm_module_params_open(); > - if (dir >= 0) { > - current_log_level = igt_drm_debug_level_get(dir); > - close(dir); > - > - if (current_log_level > 10) > - igt_drm_debug_level_update(10); > - } > /* > * Some environments may have environment > * variable set to ignore long hpd, disable it for this test > */ > + > + igt_drm_debug_severity_update(DRM_UT_KMS); > + > igt_assert_f(igt_ignore_long_hpd(data.drm_fd, false), > "Unable to disable ignore long hpd\n"); > } > diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c > index 0342af206..6c5bfa188 100644 > --- a/tests/kms_atomic_transition.c > +++ b/tests/kms_atomic_transition.c > @@ -1171,8 +1171,6 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > int pipe_count = 0; > > igt_fixture { > - int dir, current_log_level; > - > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > > kmstest_set_vt_graphics_mode(); > @@ -1185,14 +1183,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > for_each_connected_output(&data.display, output) > count++; > > - dir = igt_sysfs_drm_module_params_open(); > - if (dir >= 0) { > - current_log_level = igt_drm_debug_level_get(dir); > - close(dir); > - > - if (current_log_level > 10) > - igt_drm_debug_level_update(10); > - } > + igt_drm_debug_severity_update(DRM_UT_KMS); > } > > igt_describe("Check toggling of primary plane with vblank"); > diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c > index 44f031e7b..e317fbf30 100644 > --- a/tests/kms_cursor_legacy.c > +++ b/tests/kms_cursor_legacy.c > @@ -1839,7 +1839,6 @@ igt_main > }; > > igt_fixture { > - int dir, current_log_level; > display.drm_fd = drm_open_driver_master(DRIVER_ANY); > kmstest_set_vt_graphics_mode(); > > @@ -1851,14 +1850,7 @@ igt_main > */ > intel_psr2_restore = i915_psr2_sel_fetch_to_psr1(display.drm_fd, NULL); > > - dir = igt_sysfs_drm_module_params_open(); > - if (dir >= 0) { > - current_log_level = igt_drm_debug_level_get(dir); > - close(dir); > - > - if (current_log_level > 10) > - igt_drm_debug_level_update(10); > - } > + igt_drm_debug_severity_update(DRM_UT_KMS); > } > > igt_describe("Test checks how many cursor updates we can fit between vblanks " -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for Refactor DRM Debug Severity Handling for enhanced precision 2025-03-10 17:15 [PATCH i-g-t 0/2] Refactor DRM Debug Severity Handling for enhanced precision Pranay Samala 2025-03-10 17:15 ` [PATCH i-g-t 1/2] lib/igt_sysfs: Update DRM debug severity handling to use bitmask for verbosity control Pranay Samala 2025-03-10 17:15 ` [PATCH i-g-t 2/2] tests/kms: Simplify DRM debug severity update Pranay Samala @ 2025-03-11 0:47 ` Patchwork 2025-03-11 1:05 ` ✓ i915.CI.BAT: " Patchwork 2025-03-11 20:44 ` ✗ Xe.CI.Full: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-03-11 0:47 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1609 bytes --] == Series Details == Series: Refactor DRM Debug Severity Handling for enhanced precision URL : https://patchwork.freedesktop.org/series/146093/ State : success == Summary == CI Bug Log - changes from XEIGT_8270_BAT -> XEIGTPW_12738_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12738_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_intel_bb@intel-bb-blit-none: - bat-adlp-vf: [PASS][1] -> [ABORT][2] ([Intel XE#4491]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-none.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-none.html [Intel XE#4491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4491 Build changes ------------- * IGT: IGT_8270 -> IGTPW_12738 * Linux: xe-2789-714f93e4c086c6e07187597bd446752f5f65b544 -> xe-2790-335577160971c946611913d1a8e88ee7b00ae804 IGTPW_12738: 12738 IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2789-714f93e4c086c6e07187597bd446752f5f65b544: 714f93e4c086c6e07187597bd446752f5f65b544 xe-2790-335577160971c946611913d1a8e88ee7b00ae804: 335577160971c946611913d1a8e88ee7b00ae804 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/index.html [-- Attachment #2: Type: text/html, Size: 2185 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for Refactor DRM Debug Severity Handling for enhanced precision 2025-03-10 17:15 [PATCH i-g-t 0/2] Refactor DRM Debug Severity Handling for enhanced precision Pranay Samala ` (2 preceding siblings ...) 2025-03-11 0:47 ` ✓ Xe.CI.BAT: success for Refactor DRM Debug Severity Handling for enhanced precision Patchwork @ 2025-03-11 1:05 ` Patchwork 2025-03-11 20:44 ` ✗ Xe.CI.Full: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-03-11 1:05 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2417 bytes --] == Series Details == Series: Refactor DRM Debug Severity Handling for enhanced precision URL : https://patchwork.freedesktop.org/series/146093/ State : success == Summary == CI Bug Log - changes from IGT_8270 -> IGTPW_12738 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12738/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12738 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-arls-5/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12738/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@dmabuf@all-tests: - bat-apl-1: [INCOMPLETE][3] ([i915#12904]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-apl-1/igt@dmabuf@all-tests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12738/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-mtlp-8/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12738/bat-mtlp-8/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8270 -> IGTPW_12738 * Linux: CI_DRM_16259 -> CI_DRM_16260 CI-20190529: 20190529 CI_DRM_16259: fd356d116b876e8778d2a52820c832f95dcdd3d5 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16260: 9afa34d65af6f42d982c4c154121b4762e70a70a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12738: 12738 IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12738/index.html [-- Attachment #2: Type: text/html, Size: 3157 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for Refactor DRM Debug Severity Handling for enhanced precision 2025-03-10 17:15 [PATCH i-g-t 0/2] Refactor DRM Debug Severity Handling for enhanced precision Pranay Samala ` (3 preceding siblings ...) 2025-03-11 1:05 ` ✓ i915.CI.BAT: " Patchwork @ 2025-03-11 20:44 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-03-11 20:44 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 80886 bytes --] == Series Details == Series: Refactor DRM Debug Severity Handling for enhanced precision URL : https://patchwork.freedesktop.org/series/146093/ State : failure == Summary == CI Bug Log - changes from XEIGT_8270_full -> XEIGTPW_12738_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12738_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12738_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 (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12738_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@xe_oa@buffer-fill: - shard-lnl: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-4/igt@xe_oa@buffer-fill.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@xe_oa@buffer-fill.html * igt@xe_oa@buffer-fill@ccs-0: - shard-lnl: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@xe_oa@buffer-fill@ccs-0.html Known issues ------------ Here are the changes found in XEIGTPW_12738_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#3768]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-463/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#3768]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#3768]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#664]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3279]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3658]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +16 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2328]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1467]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#607]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#607]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1477]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +13 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +16 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2191]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2191]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1512]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#367]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#367]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#367]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +18 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +16 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +44 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2907]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#3432]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#3432]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#787]) +189 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#2705] / [Intel XE#4522]) +1 other test incomplete [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#4417]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#4417]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#4416]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-7/igt@kms_cdclk@plane-scaling.html - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2724]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#4416]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#306]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@kms_chamelium_color@ctm-blue-to-red.html - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2325]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#306]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2252]) +10 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#373]) +12 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#373]) +10 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#1178]) +2 other tests fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#3278]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +1 other test fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#307]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2390]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#307]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][56] ([Intel XE#1188]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#1188]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-466/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2320]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#308]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2321]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2321]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1424]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2291]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#323]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#323]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2286]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2-set2: [PASS][68] -> [SKIP][69] ([Intel XE#309]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#309]) +6 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#309]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2291]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1508]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2-set2: [PASS][74] -> [SKIP][75] ([Intel XE#4302]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@kms_display_modes@extended-mode-basic.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#1340]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4354]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-7/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#4354]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#2244]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2244]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#703]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@kms_feature_discovery@display-3x.html - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2373]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_feature_discovery@display-3x.html - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#703]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2374]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#310]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1421]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#310]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][89] ([Intel XE#3321]) +4 other tests fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [PASS][90] -> [SKIP][91] ([Intel XE#2316]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2316]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: NOTRUN -> [TIMEOUT][93] ([Intel XE#1504]) +1 other test timeout [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-3/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: - shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#886]) +2 other tests fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#301]) +3 other tests fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6: - shard-dg2-set2: [PASS][98] -> [FAIL][99] ([Intel XE#301]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-lnl: NOTRUN -> [FAIL][100] ([Intel XE#886]) +1 other test fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#455]) +11 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2293]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1401]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1397]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2312]) +14 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [PASS][109] -> [SKIP][110] ([Intel XE#656]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#4141]) +12 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#651]) +22 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#651]) +33 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2311]) +39 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#653]) +29 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1469]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2313]) +31 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#656]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#656]) +47 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2340]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@kms_getfb@getfb2-accept-ccs.html - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2340]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdr@invalid-hdr: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#1503]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_hdr@invalid-hdr.html * igt@kms_invalid_mode@clock-too-high: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1450] / [Intel XE#2568]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1450]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#346]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#346]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#346]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#4298]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#4328]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane@plane-position-covered@pipe-a-plane-3: - shard-lnl: [PASS][130] -> [DMESG-FAIL][131] ([Intel XE#324]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: NOTRUN -> [FAIL][132] ([Intel XE#616]) +1 other test fail [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@kms_plane_cursor@viewport.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2393]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#599]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2763]) +15 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2763]) +9 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2763]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#870]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#870]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][141] -> [FAIL][142] ([Intel XE#718]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1439] / [Intel XE#3141]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1489]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2893]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#1489]) +8 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1128]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-466/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1406]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2234] / [Intel XE#2850]) +18 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2939]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2414]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-270: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1127]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1127]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#1435]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1435]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-dg2-set2: [PASS][159] -> [SKIP][160] ([Intel XE#455]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][161] ([Intel XE#899]) +2 other tests fail [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@universal-plane-functional: - shard-lnl: NOTRUN -> [DMESG-WARN][162] ([Intel XE#324]) +2 other tests dmesg-warn [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-7/igt@kms_universal_plane@universal-plane-functional.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2168]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-bmg: [PASS][164] -> [SKIP][165] ([Intel XE#1499]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_vrr@negative-basic.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#756]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#756]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#1091] / [Intel XE#2849]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1447]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#1123]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#1126]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2905]) +10 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@xe_eudebug@basic-close.html - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#2905]) +15 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-6/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#2905]) +10 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2905] / [Intel XE#3889]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt@xe_evict@evict-beng-small: - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#688]) +5 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#1392]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2322]) +9 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][180] -> [SKIP][181] ([Intel XE#1392]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#1392]) +7 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#288]) +28 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#2229]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#4045]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@xe_mmap@pci-membarrier-bad-pagesize.html * igt@xe_module_load@force-load: - shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#378]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@xe_module_load@force-load.html * igt@xe_module_load@load: - shard-bmg: ([PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206]) -> ([PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [SKIP][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227]) ([Intel XE#2457]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@xe_module_load@load.html * igt@xe_oa@invalid-create-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][228] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@xe_oa@invalid-create-userspace-config.html * igt@xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][229] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][230] ([Intel XE#977]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][231] ([Intel XE#2236]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@xe_pat@pat-index-xelpg.html - shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#979]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html - shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#979]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][234] ([Intel XE#2427]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#1061]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-3/igt@xe_peer2peer@write.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][236] ([Intel XE#1173]) +1 other test fail [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-463/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][237] ([Intel XE#2284]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@xe_pm@d3cold-basic.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][238] ([Intel XE#584]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: NOTRUN -> [ABORT][239] ([Intel XE#4268]) +1 other test abort [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html - shard-dg2-set2: NOTRUN -> [ABORT][240] ([Intel XE#4268]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: NOTRUN -> [ABORT][241] ([Intel XE#4268]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][242] ([Intel XE#944]) +4 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-8/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][243] ([Intel XE#944]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][244] ([Intel XE#944]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@xe_query@multigpu-query-topology.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-bmg: NOTRUN -> [SKIP][245] ([Intel XE#4130]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-basic.html - shard-dg2-set2: NOTRUN -> [SKIP][246] ([Intel XE#4130]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@xe_sriov_auto_provisioning@selfconfig-basic.html - shard-lnl: NOTRUN -> [SKIP][247] ([Intel XE#4130]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-4/igt@xe_sriov_auto_provisioning@selfconfig-basic.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][248] ([Intel XE#3342]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-3/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-dg2-set2: NOTRUN -> [SKIP][249] ([Intel XE#4351]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-466/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][250] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [SKIP][252] ([Intel XE#309]) -> [PASS][253] +3 other tests pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [SKIP][254] ([Intel XE#2291]) -> [PASS][255] +3 other tests pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][256] ([Intel XE#4302]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][258] ([Intel XE#2316]) -> [PASS][259] +2 other tests pass [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-dg2-set2: [SKIP][260] ([Intel XE#310]) -> [PASS][261] +1 other test pass [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-466/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: [FAIL][262] ([Intel XE#301]) -> [PASS][263] +7 other tests pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [FAIL][264] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][265] +1 other test pass [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][266] ([Intel XE#656]) -> [PASS][267] +4 other tests pass [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2-set2: [SKIP][268] ([Intel XE#4328]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@kms_joiner@basic-force-big-joiner.html - shard-bmg: [SKIP][270] ([Intel XE#3012]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane@plane-position-covered@pipe-a-plane-4: - shard-lnl: [DMESG-FAIL][272] ([Intel XE#324]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html * igt@kms_rmfb@close-fd@pipe-a-edp-1: - shard-lnl: [DMESG-WARN][274] ([Intel XE#324]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@kms_rmfb@close-fd@pipe-a-edp-1.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-lnl-1/igt@kms_rmfb@close-fd@pipe-a-edp-1.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][276] ([Intel XE#1392]) -> [PASS][277] +1 other test pass [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html #### Warnings #### * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][278] ([Intel XE#787]) -> [SKIP][279] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][280] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][281] ([Intel XE#787]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][282] ([Intel XE#1178]) -> [SKIP][283] ([Intel XE#2341]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_content_protection@atomic.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [SKIP][284] ([Intel XE#455]) -> [FAIL][285] ([Intel XE#1188]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_content_protection@uevent.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-466/igt@kms_content_protection@uevent.html - shard-bmg: [SKIP][286] ([Intel XE#2341]) -> [FAIL][287] ([Intel XE#1188]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_content_protection@uevent.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-7/igt@kms_content_protection@uevent.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][288] ([Intel XE#2312]) -> [SKIP][289] ([Intel XE#2311]) +12 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][290] ([Intel XE#656]) -> [SKIP][291] ([Intel XE#651]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][292] ([Intel XE#2311]) -> [SKIP][293] ([Intel XE#2312]) +6 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][294] ([Intel XE#2312]) -> [SKIP][295] ([Intel XE#4141]) +8 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][296] ([Intel XE#4141]) -> [SKIP][297] ([Intel XE#2312]) +6 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][298] ([Intel XE#651]) -> [SKIP][299] ([Intel XE#656]) +5 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][300] ([Intel XE#2313]) -> [SKIP][301] ([Intel XE#2312]) +8 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][302] ([Intel XE#2312]) -> [SKIP][303] ([Intel XE#2313]) +5 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][304] ([Intel XE#656]) -> [SKIP][305] ([Intel XE#653]) +6 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][306] ([Intel XE#653]) -> [SKIP][307] ([Intel XE#656]) +9 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][308] ([Intel XE#362]) -> [FAIL][309] ([Intel XE#1729]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][310] ([Intel XE#2426]) -> [SKIP][311] ([Intel XE#2509]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_pm@s4-basic-exec: - shard-bmg: [ABORT][312] ([Intel XE#4054]) -> [ABORT][313] ([Intel XE#4268]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_pm@s4-basic-exec.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-bmg-6/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-mocs: - shard-dg2-set2: [ABORT][314] ([Intel XE#4268]) -> [ABORT][315] ([Intel XE#4054]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_pm@s4-mocs.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/shard-dg2-464/igt@xe_pm@s4-mocs.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [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#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4054 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8270 -> IGTPW_12738 * Linux: xe-2789-714f93e4c086c6e07187597bd446752f5f65b544 -> xe-2790-335577160971c946611913d1a8e88ee7b00ae804 IGTPW_12738: 12738 IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2789-714f93e4c086c6e07187597bd446752f5f65b544: 714f93e4c086c6e07187597bd446752f5f65b544 xe-2790-335577160971c946611913d1a8e88ee7b00ae804: 335577160971c946611913d1a8e88ee7b00ae804 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12738/index.html [-- Attachment #2: Type: text/html, Size: 95134 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-03-11 20:44 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-03-10 17:15 [PATCH i-g-t 0/2] Refactor DRM Debug Severity Handling for enhanced precision Pranay Samala 2025-03-10 17:15 ` [PATCH i-g-t 1/2] lib/igt_sysfs: Update DRM debug severity handling to use bitmask for verbosity control Pranay Samala 2025-03-11 8:49 ` Jani Nikula 2025-03-10 17:15 ` [PATCH i-g-t 2/2] tests/kms: Simplify DRM debug severity update Pranay Samala 2025-03-11 8:55 ` Jani Nikula 2025-03-11 0:47 ` ✓ Xe.CI.BAT: success for Refactor DRM Debug Severity Handling for enhanced precision Patchwork 2025-03-11 1:05 ` ✓ i915.CI.BAT: " Patchwork 2025-03-11 20:44 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox