* [PATCH i-g-t v5 0/2] Runtime alteration of debuglog level
@ 2024-07-12 3:14 Pranay Samala
2024-07-12 3:14 ` [PATCH i-g-t v5 1/2] lib/igt_sysfs: Implement dynamic adjustment of debug log level Pranay Samala
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Pranay Samala @ 2024-07-12 3:14 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, kunal1.joshi, bhanuprakash.modem, sameer.lattannavar,
pranay.samala
In certain scenarios, tests may fail due to insufficient disk space,
even though they fulfill all requirements.
To resolve this issue, adjust the debug log level before initiating
the test. Rather than manually editing the debug log level each time,
aim to dynamically adjust it.
This approach involves modifying the log level within the test using
the debugfs entry, with an exit handler ensuring default settings are
restored after testing.
Pranay Samala (2):
lib/igt_sysfs: Implement dynamic adjustment of debug log level
tests/kms_atomic_transition: Reducing debug loglevel dynamically
lib/igt_sysfs.c | 108 ++++++++++++++++++++++++++++++++++
lib/igt_sysfs.h | 5 ++
tests/kms_atomic_transition.c | 13 ++++
3 files changed, 126 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t v5 1/2] lib/igt_sysfs: Implement dynamic adjustment of debug log level 2024-07-12 3:14 [PATCH i-g-t v5 0/2] Runtime alteration of debuglog level Pranay Samala @ 2024-07-12 3:14 ` Pranay Samala 2024-07-12 3:14 ` [PATCH i-g-t v5 2/2] tests/kms_atomic_transition: Reducing debug loglevel dynamically Pranay Samala ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Pranay Samala @ 2024-07-12 3:14 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, bhanuprakash.modem, sameer.lattannavar, pranay.samala Adjust debug log levels dynamically to prevent machine disk overflow during excessive test debug logs. Introduce function to modify log levels as needed, with an exit handler restoring default settings post-test. v2: - Using proper function name to represent its functionality (Bhanu) - Added Documentation for each functions (Bhanu) - Removed the magic number and instead reading the default value first (Bhanu) - Using recommended apis for better handling (Bhanu) v3: - Adding module drm_open_param function to open the sysfs directory (Bhanu) - Reducing the current drm loglevel by step value to make it more robust (Bhanu) v4: - Remove all the extra new lines (Bhanu) - Remove the unused declaration (Bhanu) - Edit API to only update the requested drm debug log value from the caller (Bhanu) v5: - Add TODO for multiple exit handler installation (Bhanu) Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- lib/igt_sysfs.c | 108 ++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_sysfs.h | 5 +++ 2 files changed, 113 insertions(+) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index ffeec1ca2..42b2af41a 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -412,6 +412,114 @@ int igt_sysfs_get_num_gt(int device) return num_gts; } +/** + * igt_sysfs_drm_module_params_open: + * + * This opens the sysfs directory corresponding to drm module + * parameters. + * + * Returns: + * The directory fd, or -1 on failure. + */ +int igt_sysfs_drm_module_params_open(void) +{ + char path[] = "/sys/module/drm/parameters"; + + if (access(path, F_OK)) + return -1; + + return open(path, O_RDONLY); +} + +static int log_level = -1; + +/** + * igt_drm_debug_level_get: + * + * This reads the current debug log level of the machine on + * which the test is currently executing. + * + * Returns: + * The current log level, or -1 on error. + */ +int igt_drm_debug_level_get(int dir) +{ + char buf[20]; + + if (log_level >= 0) + return log_level; + + if (igt_sysfs_read(dir, "debug", buf, sizeof(buf) - 1) < 0) + return -1; + + return atoi(buf); +} + +/** + * igt_drm_debug_level_reset: + * + * This modifies the current debug log level of the machine + * to the default value post-test. + * + */ +void igt_drm_debug_level_reset(void) +{ + char buf[20]; + int dir; + + if (log_level < 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_assert(igt_sysfs_set(dir, "debug", buf)); + + close(dir); +} + +static void igt_drm_debug_level_reset_exit_handler(int sig) +{ + igt_drm_debug_level_reset(); +} + +/** + * igt_drm_debug_level_update: + * @debug_level: new debug level to set + * + * This modifies the current drm debug log level to the new value. + */ +void igt_drm_debug_level_update(unsigned int new_log_level) +{ + char buf[20]; + int dir; + + dir = igt_sysfs_drm_module_params_open(); + if (dir < 0) + return; + + log_level = igt_drm_debug_level_get(dir); + if (log_level < 0) { + close(dir); + return; + } + + igt_debug("Setting DRM debug level to %d\n", new_log_level); + snprintf(buf, sizeof(buf), "%d", new_log_level); + igt_assert(igt_sysfs_set(dir, "debug", buf)); + + close(dir); + + /* + * 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_sysfs_write: * @dir: sysfs directory diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 6c604d939..5d050c786 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -138,6 +138,11 @@ 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); +int igt_sysfs_drm_module_params_open(void); + /** * igt_sysfs_rw_attr: * @dir: file descriptor for parent directory -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t v5 2/2] tests/kms_atomic_transition: Reducing debug loglevel dynamically 2024-07-12 3:14 [PATCH i-g-t v5 0/2] Runtime alteration of debuglog level Pranay Samala 2024-07-12 3:14 ` [PATCH i-g-t v5 1/2] lib/igt_sysfs: Implement dynamic adjustment of debug log level Pranay Samala @ 2024-07-12 3:14 ` Pranay Samala 2024-07-12 5:23 ` ✓ CI.xeBAT: success for Runtime alteration of debuglog level (rev5) Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Pranay Samala @ 2024-07-12 3:14 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, bhanuprakash.modem, sameer.lattannavar, pranay.samala This test is debug logs are too much and was killed due to exceeding disk usage limit on the less disk space machines. So dynamically reducing the debug log level to 13. v2: - Using "" for the defined header file (Bhanu) - Not using exit handler in this file (Bhanu) - Not using any magic number (Bhanu) v3: - Calling loglevel init functionality in lib file (Bhanu) - Here 2 means the log level will be reduced by 2 (Bhanu) v4: - Send the required debuglevel to directly to api only if debug log level is greater than 10 (Bhanu) v5: - Add a check to open_params function as it may return -1 on failure (Bhanu) Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/kms_atomic_transition.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c index 29dd8ac4e..f7f1edd31 100644 --- a/tests/kms_atomic_transition.c +++ b/tests/kms_atomic_transition.c @@ -34,6 +34,7 @@ #include "igt_rand.h" #include "drmtest.h" #include "sw_sync.h" +#include "igt_sysfs.h" #include <errno.h> #include <pthread.h> #include <stdbool.h> @@ -1174,6 +1175,8 @@ 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,6 +1188,16 @@ 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) + return; + + current_log_level = igt_drm_debug_level_get(dir); + close(dir); + + if (current_log_level > 10) + igt_drm_debug_level_update(10); } igt_describe("Check toggling of primary plane with vblank"); -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for Runtime alteration of debuglog level (rev5) 2024-07-12 3:14 [PATCH i-g-t v5 0/2] Runtime alteration of debuglog level Pranay Samala 2024-07-12 3:14 ` [PATCH i-g-t v5 1/2] lib/igt_sysfs: Implement dynamic adjustment of debug log level Pranay Samala 2024-07-12 3:14 ` [PATCH i-g-t v5 2/2] tests/kms_atomic_transition: Reducing debug loglevel dynamically Pranay Samala @ 2024-07-12 5:23 ` Patchwork 2024-07-12 5:29 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-07-12 5:23 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4727 bytes --] == Series Details == Series: Runtime alteration of debuglog level (rev5) URL : https://patchwork.freedesktop.org/series/135823/ State : success == Summary == CI Bug Log - changes from XEIGT_7925_BAT -> XEIGTPW_11402_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (6 -> 7) ------------------------------ Additional (1): bat-lnl-1 Known issues ------------ Here are the changes found in XEIGTPW_11402_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-lnl-1: NOTRUN -> [SKIP][1] ([Intel XE#1466]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_dsc@dsc-basic: - bat-lnl-1: NOTRUN -> [SKIP][2] ([Intel XE#599]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-connector-state: - bat-lnl-1: NOTRUN -> [SKIP][3] ([Intel XE#352]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_hdmi_inject@inject-audio: - bat-lnl-1: NOTRUN -> [SKIP][4] ([Intel XE#1470]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html * igt@sriov_basic@enable-vfs-autoprobe-off: - bat-lnl-1: NOTRUN -> [SKIP][5] ([Intel XE#1091]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_evict@evict-beng-mixed-threads-small-multi-vm: - bat-lnl-1: NOTRUN -> [SKIP][6] ([Intel XE#688]) +17 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html * igt@xe_gt_freq@freq_fixed_idle: - bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#1462]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@xe_gt_freq@freq_fixed_idle.html * igt@xe_mmap@vram: - bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#1416]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xehpc: - bat-lnl-1: NOTRUN -> [SKIP][9] ([Intel XE#1420]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-lnl-1: NOTRUN -> [SKIP][10] ([Intel XE#977]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-lnl-1: NOTRUN -> [SKIP][11] ([Intel XE#979]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-lnl-1: NOTRUN -> [FAIL][12] ([Intel XE#1442]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/bat-lnl-1/igt@xe_pm_residency@gt-c6-on-idle.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1442 [Intel XE#1462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1462 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [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_7925 -> IGTPW_11402 * Linux: xe-1597-3bcdb3f9a5370e29bc971883307487527c3e6a65 -> xe-1600-cb6a07aa3e34d8069308e9b4f6afc176c15a7304 IGTPW_11402: 11402 IGT_7925: def41c762723c9ba046a3ffe722d046cd12e993d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1597-3bcdb3f9a5370e29bc971883307487527c3e6a65: 3bcdb3f9a5370e29bc971883307487527c3e6a65 xe-1600-cb6a07aa3e34d8069308e9b4f6afc176c15a7304: cb6a07aa3e34d8069308e9b4f6afc176c15a7304 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/index.html [-- Attachment #2: Type: text/html, Size: 5574 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for Runtime alteration of debuglog level (rev5) 2024-07-12 3:14 [PATCH i-g-t v5 0/2] Runtime alteration of debuglog level Pranay Samala ` (2 preceding siblings ...) 2024-07-12 5:23 ` ✓ CI.xeBAT: success for Runtime alteration of debuglog level (rev5) Patchwork @ 2024-07-12 5:29 ` Patchwork 2024-07-12 6:20 ` ✗ CI.xeFULL: failure " Patchwork 2024-07-14 12:27 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-07-12 5:29 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7164 bytes --] == Series Details == Series: Runtime alteration of debuglog level (rev5) URL : https://patchwork.freedesktop.org/series/135823/ State : success == Summary == CI Bug Log - changes from CI_DRM_15069 -> IGTPW_11402 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-arlh-2 Missing (2): fi-cfl-8109u fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11402 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-arlh-2: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@debugfs_test@basic-hwmon.html * igt@fbdev@eof: - bat-arlh-2: NOTRUN -> [SKIP][2] ([i915#11345]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@fbdev@eof.html * igt@fbdev@info: - bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@fbdev@info.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#10213]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11343]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#10197]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#10196]) +4 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#10206]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#10209]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@workarounds: - bat-adlp-6: [PASS][10] -> [INCOMPLETE][11] ([i915#9413]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/bat-adlp-6/igt@i915_selftest@live@workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-adlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-arlh-2: NOTRUN -> [SKIP][12] ([i915#10200]) +9 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-1: - bat-dg2-8: [PASS][13] -> [FAIL][14] ([i915#11379]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/bat-dg2-8/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-1.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-dg2-8/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-1.html * igt@kms_pm_backlight@basic-brightness: - bat-arlh-2: NOTRUN -> [SKIP][15] ([i915#11346]) +32 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@kms_pm_backlight@basic-brightness.html * igt@kms_setmode@basic-clone-single-crtc: - bat-arlh-2: NOTRUN -> [SKIP][16] ([i915#10208] / [i915#8809]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#10212]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-arlh-2: NOTRUN -> [SKIP][18] ([i915#10214]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arlh-2: NOTRUN -> [SKIP][19] ([i915#10216]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-arlh-2/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-dg2-11: [DMESG-FAIL][20] ([i915#9500]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/bat-dg2-11/igt@i915_selftest@live@workarounds.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-dg2-11/igt@i915_selftest@live@workarounds.html - bat-dg2-9: [DMESG-FAIL][22] ([i915#9500]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/bat-dg2-9/igt@i915_selftest@live@workarounds.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/bat-dg2-9/igt@i915_selftest@live@workarounds.html [i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206 [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11379]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11379 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 [i915#9500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9500 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7925 -> IGTPW_11402 CI-20190529: 20190529 CI_DRM_15069: 0b9174f237436b60b1c6fd9d5fbacbfcde660e3e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11402: 11402 IGT_7925: def41c762723c9ba046a3ffe722d046cd12e993d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/index.html [-- Attachment #2: Type: text/html, Size: 8277 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for Runtime alteration of debuglog level (rev5) 2024-07-12 3:14 [PATCH i-g-t v5 0/2] Runtime alteration of debuglog level Pranay Samala ` (3 preceding siblings ...) 2024-07-12 5:29 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-07-12 6:20 ` Patchwork 2024-07-14 12:27 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-07-12 6:20 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 33423 bytes --] == Series Details == Series: Runtime alteration of debuglog level (rev5) URL : https://patchwork.freedesktop.org/series/135823/ State : failure == Summary == CI Bug Log - changes from XEIGT_7925_full -> XEIGTPW_11402_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11402_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11402_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 (3 -> 3) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11402_full: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@xe_exec_reset@close-fd: - shard-lnl: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-6/igt@xe_exec_reset@close-fd.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-2/igt@xe_exec_reset@close-fd.html * igt@xe_exec_store@persistent: - shard-lnl: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-7/igt@xe_exec_store@persistent.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-5/igt@xe_exec_store@persistent.html * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race: - shard-dg2-set2: [PASS][7] -> [ABORT][8] +4 other tests abort [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-433/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html #### Warnings #### * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [TIMEOUT][9] ([Intel XE#2105]) -> [ABORT][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-466/igt@xe_exec_reset@parallel-gt-reset.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html Known issues ------------ Here are the changes found in XEIGTPW_11402_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#873]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#664]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +8 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1477]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#367]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#367]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1399]) +16 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1152]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-2/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-8/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-436/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#373]) +10 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-6/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#307]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1468]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1424]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#455]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-436/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1413]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-2/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#309]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#323]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#701]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-435/igt@kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#701]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@kms_feature_discovery@chamelium.html * igt@kms_flip: - shard-lnl: NOTRUN -> [INCOMPLETE][35] ([Intel XE#1960]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-6/igt@kms_flip.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1421]) +6 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-8/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1401]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1397]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#352]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#651]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#651]) +17 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#656]) +31 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1469]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#653]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1470]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1450]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1450] / [Intel XE#599]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#356]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#599]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][52] -> [FAIL][53] ([Intel XE#361]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#498]) +9 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#305]) +7 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#736]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#1489]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-433/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1128]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1406]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-6/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-cursor-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#929]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-435/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1127]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1437]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#362]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_writeback@writeback-fb-id: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#756]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@kms_writeback@writeback-fb-id.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1447]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_evict@evict-beng-cm-threads-large: - shard-dg2-set2: [PASS][66] -> [TIMEOUT][67] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-436/igt@xe_evict@evict-beng-cm-threads-large.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-464/igt@xe_evict@evict-beng-cm-threads-large.html * igt@xe_evict@evict-beng-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#688]) +9 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [PASS][69] -> [TIMEOUT][70] ([Intel XE#1473] / [Intel XE#392]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-463/igt@xe_evict@evict-beng-mixed-threads-large.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-436/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1392]) +6 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1201] / [Intel XE#288]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][73] -> [SKIP][74] ([Intel XE#1192] / [Intel XE#1201]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-464/igt@xe_live_ktest@xe_bo.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-463/igt@xe_live_ktest@xe_bo.html * igt@xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#560]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-6/igt@xe_media_fill@media-fill.html * igt@xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#378]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-2/igt@xe_module_load@force-load.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#979]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1420]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1948]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s3-basic: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#584]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-8/igt@xe_pm@s3-basic.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#366]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-2/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_query@multigpu-query-config: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#944]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-8/igt@xe_query@multigpu-query-config.html #### Possible fixes #### * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [DMESG-WARN][83] ([Intel XE#1162]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-463/igt@core_setmaster@master-drop-set-user.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-463/igt@core_setmaster@master-drop-set-user.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-lnl: [FAIL][85] ([Intel XE#1659]) -> [PASS][86] +1 other test pass [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2-set2: [DMESG-WARN][87] -> [PASS][88] +1 other test pass [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_plane@plane-position-hole: - shard-lnl: [DMESG-FAIL][89] ([Intel XE#324]) -> [PASS][90] +1 other test pass [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-4/igt@kms_plane@plane-position-hole.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@kms_plane@plane-position-hole.html * {igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2}: - shard-lnl: [DMESG-WARN][91] ([Intel XE#324]) -> [PASS][92] +3 other tests pass [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][93] ([Intel XE#718]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][95] ([Intel XE#899]) -> [PASS][96] +1 other test pass [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@xe_live_ktest@xe_migrate: - shard-lnl: [SKIP][97] ([Intel XE#1192]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-6/igt@xe_live_ktest@xe_migrate.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html * igt@xe_module_load@reload: - shard-dg2-set2: [DMESG-WARN][99] ([Intel XE#2019]) -> [PASS][100] +1 other test pass [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-435/igt@xe_module_load@reload.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-435/igt@xe_module_load@reload.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][101] ([Intel XE#1551] / [Intel XE#569]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-433/igt@xe_pm@s3-basic-exec.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-466/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [DMESG-WARN][103] ([Intel XE#569]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-464/igt@xe_pm@s3-vm-bind-prefetch.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s4-mocs: - shard-lnl: [ABORT][105] ([Intel XE#1794]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-2/igt@xe_pm@s4-mocs.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-7/igt@xe_pm@s4-mocs.html * igt@xe_vm@large-userptr-split-misaligned-binds-4194304: - shard-lnl: [INCOMPLETE][107] -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-7/igt@xe_vm@large-userptr-split-misaligned-binds-4194304.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-8/igt@xe_vm@large-userptr-split-misaligned-binds-4194304.html #### Warnings #### * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6: - shard-dg2-set2: [DMESG-FAIL][109] ([Intel XE#1551]) -> [FAIL][110] ([Intel XE#616]) +1 other test fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-464/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-435/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][111] ([Intel XE#1729]) -> [SKIP][112] ([Intel XE#1201] / [Intel XE#362]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_wedged@wedged-at-any-timeout: - shard-lnl: [DMESG-FAIL][113] ([Intel XE#1760]) -> [DMESG-WARN][114] ([Intel XE#1330] / [Intel XE#1760]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7925/shard-lnl-6/igt@xe_wedged@wedged-at-any-timeout.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/shard-lnl-4/igt@xe_wedged@wedged-at-any-timeout.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330 [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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [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#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [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#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1960]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1960 [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [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#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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_7925 -> IGTPW_11402 * Linux: xe-1597-3bcdb3f9a5370e29bc971883307487527c3e6a65 -> xe-1600-cb6a07aa3e34d8069308e9b4f6afc176c15a7304 IGTPW_11402: 11402 IGT_7925: def41c762723c9ba046a3ffe722d046cd12e993d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1597-3bcdb3f9a5370e29bc971883307487527c3e6a65: 3bcdb3f9a5370e29bc971883307487527c3e6a65 xe-1600-cb6a07aa3e34d8069308e9b4f6afc176c15a7304: cb6a07aa3e34d8069308e9b4f6afc176c15a7304 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11402/index.html [-- Attachment #2: Type: text/html, Size: 38181 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for Runtime alteration of debuglog level (rev5) 2024-07-12 3:14 [PATCH i-g-t v5 0/2] Runtime alteration of debuglog level Pranay Samala ` (4 preceding siblings ...) 2024-07-12 6:20 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-07-14 12:27 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-07-14 12:27 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 89176 bytes --] == Series Details == Series: Runtime alteration of debuglog level (rev5) URL : https://patchwork.freedesktop.org/series/135823/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15069_full -> IGTPW_11402_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11402_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11402_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11402_full: ### IGT changes ### #### Possible regressions #### * igt@drm_fdinfo@memory-info-purgeable@lmem0: - shard-dg1: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-14/igt@drm_fdinfo@memory-info-purgeable@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@drm_fdinfo@memory-info-purgeable@lmem0.html * igt@gem_exec_big@single: - shard-tglu: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-tglu-9/igt@gem_exec_big@single.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-3/igt@gem_exec_big@single.html New tests --------- New tests have been introduced between CI_DRM_15069_full and IGTPW_11402_full: ### New IGT tests (4) ### * igt@kms_flip@dpms-vs-vblank-race-interruptible@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [3.0] s * igt@kms_flip@dpms-vs-vblank-race-interruptible@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [2.95] s * igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [2.90] s * igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [2.96] s Known issues ------------ Here are the changes found in IGTPW_11402_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-10/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +18 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@isolation@vcs1: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@drm_fdinfo@isolation@vcs1.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: [PASS][10] -> [FAIL][11] ([i915#7742]) +1 other test fail [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [PASS][12] -> [ABORT][13] ([i915#8190]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-glk1/igt@gem_barrier_race@remote-request@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-glk1/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-8/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-8/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-15/igt@gem_eio@reset-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4036]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_endless@dispatch@rcs0: - shard-dg2: [PASS][30] -> [TIMEOUT][31] ([i915#3778] / [i915#7016]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-6/igt@gem_exec_endless@dispatch@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-7/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2846]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html - shard-glk: NOTRUN -> [FAIL][34] ([i915#2846]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-glk7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-11/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][37] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@gem_exec_fair@basic-throttle.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473] / [i915#4771]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-7/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: NOTRUN -> [FAIL][42] ([i915#2842]) +2 other tests fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_reloc@basic-cpu: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +10 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +10 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#2190]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg1: [PASS][51] -> [FAIL][52] ([i915#10378]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-16/igt@gem_lmem_swapping@heavy-random@lmem0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: NOTRUN -> [FAIL][53] ([i915#10378]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4565]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-3/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][58] ([i915#5493]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-glk3/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) +14 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@isolation: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@gem_mmap_gtt@isolation.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-8/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][66] ([i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-glk2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-2: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-9/igt@gem_pxp@create-regular-context-2.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-8/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-7/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_readwrite@new-obj: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][76] ([i915#8411]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-15/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4885]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3281] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@gem_userptr_blits@relocations.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3281] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@allowed-all: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-param: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#8399]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-tglu: NOTRUN -> [WARN][89] ([i915#2681]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][90] -> [FAIL][91] ([i915#3591]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#8925]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#4387]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#6245]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4212]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4212]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#8709]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8709]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8709]) +11 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#6228]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#9531]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#5286]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-5/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#5286]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5286]) +6 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][109] -> [DMESG-FAIL][110] ([i915#2017]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][111] +19 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][112] ([i915#3638]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3638]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][117] +30 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][118] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#6095]) +111 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#6095]) +67 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][122] +245 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-glk7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#6095]) +165 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#6095]) +23 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6095]) +11 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#3742]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#7213]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#7828]) +12 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-15/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7828]) +12 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-10/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#7828]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-6/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +8 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#7828]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#7118] / [i915#9424]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#7116] / [i915#9424]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3299]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#3116] / [i915#3299]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#8063]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7118]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-8/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#8814]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#11453]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#11453]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html - shard-tglu: NOTRUN -> [SKIP][143] ([i915#11453]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-5/igt@kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3359]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#9809]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][147] ([i915#4103]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#3555]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-6/igt@kms_display_modes@extended-mode-basic.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3555]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#1257]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#8812]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#3840]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3840]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#3840]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3840] / [i915#9053]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#1839]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#658]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-10/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][159] ([i915#658]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-8/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][160] +17 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3637]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-3/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#8381]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#9934]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3637]) +5 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#8381]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@plain-flip-ts-check@b-vga1: - shard-snb: [PASS][166] -> [FAIL][167] ([i915#2122]) +1 other test fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-snb4/igt@kms_flip@plain-flip-ts-check@b-vga1.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-snb7/igt@kms_flip@plain-flip-ts-check@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#2587] / [i915#2672]) +6 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#2672]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#2672]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#2672]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#5354]) +42 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-snb: [PASS][174] -> [SKIP][175] +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#5439]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#8708]) +30 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3023]) +12 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][179] +59 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#5439]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#9766]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#10433] / [i915#3458]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#8708]) +14 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#1825]) +28 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#1825]) +9 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3458]) +18 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3458]) +17 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8228]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#6301]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#6301]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][193] ([i915#10647]) +1 other test fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#6953] / [i915#9423]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#9423]) +7 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9423]) +7 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#9423]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9423]) +11 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#5176]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#5235]) +9 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#5235]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#5235]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5235] / [i915#9423]) +19 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#5235]) +15 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#5354]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#5354]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#9685]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-snb: NOTRUN -> [SKIP][208] +28 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-snb6/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#5978]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-10/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3361]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#9340]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#8430]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][213] -> [SKIP][214] ([i915#9519]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][215] -> [SKIP][216] ([i915#9519]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#6524]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#6524] / [i915#6805]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#11520]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#9808]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-6/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#11520]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#11520]) +6 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#11520]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr@fbc-pr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-11/igt@kms_psr@fbc-pr-primary-page-flip.html * igt@kms_psr@fbc-psr-sprite-mmap-cpu@edp-1: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#9688]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-4/igt@kms_psr@fbc-psr-sprite-mmap-cpu@edp-1.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#9732]) +9 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-7/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#1072] / [i915#9732]) +28 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#1072] / [i915#9732]) +19 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#1072] / [i915#9732]) +16 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-3/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#4235]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#4235]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#5289]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#11131] / [i915#5190]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#11131]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#3555]) +12 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@clone-exclusive-crtc: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#3555]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-8/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8809]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-7/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][238] ([i915#10959]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#8623]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-rkl: [PASS][240] -> [FAIL][241] ([i915#9196]) +1 other test fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-rkl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html - shard-tglu: [PASS][242] -> [FAIL][243] ([i915#9196]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#9906]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#9906]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#2437]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2437] / [i915#9412]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][248] ([i915#2437] / [i915#9412]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#2437] / [i915#9412]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#2435]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][251] -> [FAIL][252] ([i915#4349]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][253] ([i915#6806]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][254] ([i915#10537] / [i915#5793]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#8516]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-2/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][256] ([i915#8516]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#3708]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3708] / [i915#4077]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@prime_vgem@coherency-gtt.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][259] ([i915#9781]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][260] ([i915#9781]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-glk7/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-mtlp: [INCOMPLETE][261] -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-mtlp-2/igt@gem_eio@reset-stress.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-2/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][263] ([i915#5784]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-15/igt@gem_eio@unwedge-stress.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [FAIL][265] ([i915#10378]) -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi@lmem0: - shard-dg1: [DMESG-WARN][267] ([i915#1982] / [i915#4391] / [i915#4423]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-13/igt@gem_lmem_swapping@parallel-multi@lmem0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@gem_lmem_swapping@parallel-multi@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][269] ([i915#5493]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_ppgtt@blt-vs-render-ctxn: - shard-dg2: [INCOMPLETE][271] ([i915#11634]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-3/igt@gem_ppgtt@blt-vs-render-ctxn.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-8/igt@gem_ppgtt@blt-vs-render-ctxn.html * igt@i915_module_load@load: - shard-dg1: [SKIP][273] ([i915#6227]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-17/igt@i915_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-14/igt@i915_module_load@load.html - shard-dg2: [SKIP][275] ([i915#6227]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-6/igt@i915_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][277] ([i915#9820]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][279] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [ABORT][281] -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][283] ([i915#5138]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [DMESG-FAIL][285] -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][287] ([i915#2346]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-tglu: [DMESG-WARN][289] ([i915#10166]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-tglu-6/igt@kms_cursor_legacy@torture-bo@pipe-a.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-3/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a1: - shard-snb: [FAIL][291] ([i915#2122]) -> [PASS][292] +3 other tests pass [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-snb7/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-snb2/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a3: - shard-dg2: [FAIL][293] ([i915#2122]) -> [PASS][294] +1 other test pass [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a3.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a3.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a4: - shard-dg1: [FAIL][295] ([i915#2122]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-17/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a4.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-15/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a4.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1: - shard-rkl: [FAIL][297] ([i915#2122]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-4/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@basic: - shard-dg1: [DMESG-WARN][299] ([i915#1982] / [i915#4423]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-13/igt@kms_frontbuffer_tracking@basic.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][301] ([i915#9519]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg1: [INCOMPLETE][303] -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-17/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-13/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-snb: [FAIL][305] ([i915#9196]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][307] ([i915#9196]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html #### Warnings #### * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: [SKIP][309] ([i915#4270] / [i915#4423]) -> [SKIP][310] ([i915#4270]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-1.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][311] ([i915#9424]) -> [SKIP][312] ([i915#9433]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-15/igt@kms_content_protection@mei-interface.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-17/igt@kms_content_protection@mei-interface.html - shard-tglu: [SKIP][313] ([i915#6944] / [i915#9424]) -> [SKIP][314] ([i915#8063]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-tglu-6/igt@kms_content_protection@mei-interface.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-tglu-3/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][315] ([i915#11453] / [i915#3359]) -> [SKIP][316] ([i915#11453]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: [SKIP][317] ([i915#11453]) -> [SKIP][318] ([i915#11453] / [i915#3359]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x170.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][319] ([i915#10433] / [i915#3458]) -> [SKIP][320] ([i915#3458]) +3 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][321] ([i915#3458]) -> [SKIP][322] ([i915#10433] / [i915#3458]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][323] ([i915#4816]) -> [SKIP][324] ([i915#4070] / [i915#4816]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][325] ([i915#4281]) -> [SKIP][326] ([i915#3361]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html * igt@kms_psr@fbc-pr-cursor-mmap-cpu: - shard-dg1: [SKIP][327] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][328] ([i915#1072] / [i915#9732]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg1-13/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg1-18/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: [SKIP][329] ([i915#1072] / [i915#9732]) -> [SKIP][330] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-5/igt@kms_psr@fbc-psr-primary-blt.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: [SKIP][331] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][332] ([i915#1072] / [i915#9732]) +8 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15069/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/shard-dg2-6/igt@kms_psr@psr2-primary-mmap-gtt.html [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10537 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11634]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11634 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5793 [i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063 [i915#8190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8190 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7925 -> IGTPW_11402 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15069: 0b9174f237436b60b1c6fd9d5fbacbfcde660e3e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11402: 11402 IGT_7925: def41c762723c9ba046a3ffe722d046cd12e993d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11402/index.html [-- Attachment #2: Type: text/html, Size: 110285 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-07-14 12:27 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-07-12 3:14 [PATCH i-g-t v5 0/2] Runtime alteration of debuglog level Pranay Samala 2024-07-12 3:14 ` [PATCH i-g-t v5 1/2] lib/igt_sysfs: Implement dynamic adjustment of debug log level Pranay Samala 2024-07-12 3:14 ` [PATCH i-g-t v5 2/2] tests/kms_atomic_transition: Reducing debug loglevel dynamically Pranay Samala 2024-07-12 5:23 ` ✓ CI.xeBAT: success for Runtime alteration of debuglog level (rev5) Patchwork 2024-07-12 5:29 ` ✓ Fi.CI.BAT: " Patchwork 2024-07-12 6:20 ` ✗ CI.xeFULL: failure " Patchwork 2024-07-14 12:27 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox