* [PATCH i-g-t, v2 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test
@ 2026-05-13 7:03 Ray Wu
2026-05-13 7:03 ` [PATCH i-g-t, v2 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos Ray Wu
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Ray Wu @ 2026-05-13 7:03 UTC (permalink / raw)
To: igt-dev; +Cc: alex.hung, sunpeng.li, chiahsuan.chung, ray.wu
This series adds an IGT subtest for Panel Replay's rate control feature on AMD eDP panels,
and fixes a few pre-existing logic bugs in amd_replay that were uncovered while reviewing the new test.
Panel Replay rate control extends the panel's coasting vtotal while the screen is static
(lowering refresh rate for power savings) and restores it once live updates resume.
The behaviour is observable through the per-connector replay_coasting_vtotal debugfs node,
but is currently not exercised by IGT, so silent regressions in either the driver state machine
or the panel firmware are possible.
Patch 1 is a pure bug fix for existing replay subtests:
- The `test_mode == (A || B)` and `test_mode == A || B` conditionals
in page_flip_test() / run_check_replay() always evaluated truthy,
so the guarded state checks ran regardless of test_mode.
- Three igt_fail_on_f() range checks combined `state < N` with
`state >= N+1` using `&&`, which can never be true; those
assertions effectively never fired.
- Two "mdoe" -> "mode" typos in igt_describe() strings.
Patch 2 adds the new test on top:
- Two helpers in lib/igt_amd:
* igt_amd_replay_support_rate_control() returns true when the
connector's replay_capability advertises
"Rate control support: yes".
* igt_amd_read_replay_coasting_vtotal() reads
replay_coasting_vtotal; returns 0 on success or -errno on
failure.
- A new "replay_rate_control" subtest:
1. Drive page flips so Panel Replay engages.
2. Wait for the screen to settle, sample static coasting vtotal.
3. Drive page flips to put replay back into live mode, sample
live coasting vtotal.
4. Assert static > live (lower refresh rate while static).
Ray Wu (2):
tests/amdgpu/amd_replay: fix operator precedence and typos
tests/amdgpu/amd_replay: add Replay Rate Control IGT test
lib/igt_amd.c | 94 ++++++++++++++++++++++++++++++
lib/igt_amd.h | 3 +
tests/amdgpu/amd_replay.c | 116 ++++++++++++++++++++++++++++++++++----
3 files changed, 202 insertions(+), 11 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t, v2 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos 2026-05-13 7:03 [PATCH i-g-t, v2 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu @ 2026-05-13 7:03 ` Ray Wu 2026-05-13 7:03 ` [PATCH i-g-t, v2 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test Ray Wu ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Ray Wu @ 2026-05-13 7:03 UTC (permalink / raw) To: igt-dev; +Cc: alex.hung, sunpeng.li, chiahsuan.chung, ray.wu [Why] Several existing replay subtests had logic bugs that silently disabled their state checks: - `test_mode == (A || B)` and `test_mode == A || B` do not check whether test_mode matches A or B; both evaluate to a constant truthy expression, so the guarded code always ran. - Three igt_fail_on_f() range checks were written as `state < N && state >= N+1`, which can never be true; the assertions never fired regardless of replay_state. Two "mdoe" typos in igt_describe() strings were also present. [How] - Rewrite the conditionals as `(test_mode == A) || (test_mode == B)`. - Replace `&&` with `||` in the three range assertions so they fail when state is outside the expected range. - Fix the two typos. Signed-off-by: Ray Wu <ray.wu@amd.com> --- tests/amdgpu/amd_replay.c | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/tests/amdgpu/amd_replay.c b/tests/amdgpu/amd_replay.c index 775bed190..4b795f5ba 100644 --- a/tests/amdgpu/amd_replay.c +++ b/tests/amdgpu/amd_replay.c @@ -236,14 +236,17 @@ static void page_flip_test(struct test_data *data, igt_output_t *output, igt_require(ret == 0); kmstest_wait_for_pageflip(data->fd); - if (test_mode == (TEST_MODE_CONSTANT_LIVE || TEST_MODE_INTERMITTENT_LIVE) - && frame_count > 5) { + if ((test_mode == TEST_MODE_CONSTANT_LIVE || + test_mode == TEST_MODE_INTERMITTENT_LIVE) && + frame_count > 5) { /* Panel Replay state needs few frame to enter the live mode */ replay_state = igt_amd_read_replay_state(data->fd, output->name); dpcd_read_byte(data->fd, output->config.connector, 0x378, &panel_dpcd); igt_debug("replay_state live mode = 0x%X\n", replay_state); - igt_fail_on_f(replay_state < REPLAY_STATE_4 && replay_state >= REPLAY_STATE_5, - "State should be REPLAY_STATE_4 (Active with single frame update)\n"); + igt_fail_on_f(replay_state < REPLAY_STATE_4 || + replay_state >= REPLAY_STATE_5, + "State should be REPLAY_STATE_4 " + "(Active with single frame update)\n"); igt_fail_on_f(panel_dpcd == 0, "Panel is not in replay mode\n"); } @@ -302,15 +305,17 @@ static void run_check_replay(struct test_data *data, enum test_mode test_mode) page_flip_test(data, output, test_mode, 20); /* Check Panel Replay state in static screen */ - if (test_mode == TEST_MODE_STATIC_SCREEN || TEST_MODE_INTERMITTENT_LIVE) { + if (test_mode == TEST_MODE_STATIC_SCREEN || + test_mode == TEST_MODE_INTERMITTENT_LIVE) { /* Panel Replay state takes some time to settle its value on static screen */ sleep(1); replay_state = igt_amd_read_replay_state(data->fd, output->name); dpcd_read_byte(data->fd, output->config.connector, 0x378, &panel_dpcd); igt_debug("replay_state static mode = 0x%X\n", replay_state); - igt_fail_on_f(replay_state < REPLAY_STATE_3 && replay_state >= REPLAY_STATE_4, - "State should be REPLAY_STATE_3 (Active)\n"); + igt_fail_on_f(replay_state < REPLAY_STATE_3 || + replay_state >= REPLAY_STATE_4, + "State should be REPLAY_STATE_3 (Active)\n"); igt_fail_on_f(panel_dpcd == 0, "Panel is not in replay mode\n"); } @@ -325,8 +330,9 @@ static void run_check_replay(struct test_data *data, enum test_mode test_mode) dpcd_read_byte(data->fd, output->config.connector, 0x378, &panel_dpcd); igt_debug("replay_state TEST_MODE_INTERMITTENT_LIVE after flip = 0x%X\n", replay_state); - igt_fail_on_f(replay_state < REPLAY_STATE_3 && replay_state >= REPLAY_STATE_4, - "State should be REPLAY_STATE_3 (Active)\n"); + igt_fail_on_f(replay_state < REPLAY_STATE_3 || + replay_state >= REPLAY_STATE_4, + "State should be REPLAY_STATE_3 (Active)\n"); igt_fail_on_f(panel_dpcd == 0, "Panel is not in replay mode\n"); } @@ -439,10 +445,10 @@ int igt_main_args("", long_options, help_str, opt_handler, NULL) igt_describe("Test whether Panel Replay can be enabled with static screen"); igt_subtest("replay_static_screen") run_check_replay(&data, TEST_MODE_STATIC_SCREEN); - igt_describe("Test whether Panel Replay can be enabled with intermittent live mdoe"); + igt_describe("Test whether Panel Replay can be enabled with intermittent live mode"); igt_subtest("replay_intermittent_live") run_check_replay(&data, TEST_MODE_INTERMITTENT_LIVE); - igt_describe("Test whether Panel Replay can be enabled with constant live mdoe"); + igt_describe("Test whether Panel Replay can be enabled with constant live mode"); igt_subtest("replay_constant_live") run_check_replay(&data, TEST_MODE_CONSTANT_LIVE); igt_describe("Test whether Panel Replay can be enabled after resume from suspend"); -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t, v2 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test 2026-05-13 7:03 [PATCH i-g-t, v2 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu 2026-05-13 7:03 ` [PATCH i-g-t, v2 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos Ray Wu @ 2026-05-13 7:03 ` Ray Wu 2026-05-13 16:43 ` ✓ i915.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Ray Wu @ 2026-05-13 7:03 UTC (permalink / raw) To: igt-dev; +Cc: alex.hung, sunpeng.li, chiahsuan.chung, ray.wu [Why] Panel Replay rate control lowers the panel refresh rate while the screen is static by extending coasting vtotal, and restores it when the screen becomes live again. There is currently no IGT coverage for this behaviour. [How] Add two helpers in lib/igt_amd: - igt_amd_replay_support_rate_control(): true when the connector's replay_capability advertises "Rate control support: yes". - igt_amd_read_replay_coasting_vtotal(): reads replay_coasting_vtotal; returns 0 on success or -errno on failure. Add a "replay_rate_control" subtest that engages Panel Replay via page flips, samples the coasting vtotal in static and live modes, and asserts that the static value is strictly greater than the live value. Skips cleanly when eDP, Panel Replay, or rate control support is missing. Signed-off-by: Ray Wu <ray.wu@amd.com> --- v2: - Move close(fd) before igt_assert_f() to avoid fd leak. (Alex) - Correct the rate control comment. (Alex) - Check drmModePageFlip() return value. (Alex) --- lib/igt_amd.c | 94 +++++++++++++++++++++++++++++++++++++++ lib/igt_amd.h | 3 ++ tests/amdgpu/amd_replay.c | 88 ++++++++++++++++++++++++++++++++++++ 3 files changed, 185 insertions(+) diff --git a/lib/igt_amd.c b/lib/igt_amd.c index a97adad43..8ad3be7a7 100644 --- a/lib/igt_amd.c +++ b/lib/igt_amd.c @@ -20,7 +20,9 @@ * OTHER DEALINGS IN THE SOFTWARE. */ +#include <errno.h> #include <fcntl.h> +#include <string.h> #include <sys/stat.h> #include "igt_amd.h" @@ -1082,6 +1084,40 @@ bool igt_amd_replay_support_drv(int drm_fd, char *connector_name) return strstr(buf, "Driver support: yes") && strstr(buf, "Config support: yes"); } +/** + * igt_amd_replay_support_rate_control: check if Panel Replay rate control is supported + * @drm_fd: DRM file descriptor + * @connector_name: The connector's name, on which we're reading the status + * + * Return: + * true - "Rate control support: yes" found in replay_capability + * false - rate control not supported, field not present (older kernel), + * or any read/debugfs error + */ +bool igt_amd_replay_support_rate_control(int drm_fd, char *connector_name) +{ + char buf[128]; + int ret; + int fd; + + fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY); + if (fd < 0) { + igt_info("output %s: debugfs not found\n", connector_name); + + return false; + } + + ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_CAP, buf, sizeof(buf)); + close(fd); + igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n", + DEBUGFS_EDP_REPLAY_CAP, connector_name); + + if (ret < 1) + return false; + + return strstr(buf, "Rate control support: yes"); +} + /** * igt_amd_output_has_replay_state: check if eDP connector has replay_state debugfs entry * @drm_fd: DRM file descriptor @@ -1177,6 +1213,64 @@ enum replay_state igt_amd_read_replay_state(int drm_fd, char *connector_name) return convert_replay_state(raw_state); } +/** + * @brief Read Panel Replay current coasting vtotal from debugfs interface + * @param drm_fd DRM file descriptor + * @param connector_name The connector's name, on which we're reading the status + * @param vtotal Out: parsed vtotal value (only valid when return value is 0) + * + * Reads /sys/kernel/debug/dri/<N>/<connector>/replay_current_coasting_vtotal, + * which contains a single decimal number (e.g. "4938"). + * + * Return: + * 0 on success, *vtotal contains the parsed value + * -EINVAL invalid arguments, or the file content cannot be parsed + * -ENODATA the debugfs file is empty + * -errno other errors passed through from the underlying igt + * debugfs helpers (e.g. -ENOENT, -EACCES on debugfs open) + */ +int igt_amd_read_replay_coasting_vtotal(int drm_fd, char *connector_name, + uint32_t *vtotal) +{ + char buf[32] = {0}; + int fd, ret; + unsigned long parsed; + char *endp; + + if (!vtotal) + return -EINVAL; + + fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY); + if (fd < 0) { + ret = -errno; + igt_info("Couldn't open connector %s debugfs directory (%s)\n", + connector_name, strerror(-ret)); + return ret; + } + + ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_COASTING_VTOTAL, + buf, sizeof(buf) - 1); + close(fd); + + if (ret < 1) { + igt_info("Reading %s for connector %s failed (%s)\n", + DEBUGFS_EDP_REPLAY_COASTING_VTOTAL, connector_name, + ret < 0 ? strerror(-ret) : "empty"); + return ret < 0 ? ret : -ENODATA; + } + + parsed = strtoul(buf, &endp, 10); + if (endp == buf) { + igt_info("%s for connector %s: unparseable value '%s'\n", + DEBUGFS_EDP_REPLAY_COASTING_VTOTAL, connector_name, + buf); + return -EINVAL; + } + + *vtotal = (uint32_t)parsed; + return 0; +} + /** * igt_amd_output_has_psr_cap: check if eDP connector has psr_capability debugfs entry * @drm_fd: DRM file descriptor diff --git a/lib/igt_amd.h b/lib/igt_amd.h index a45122b68..7f11e1d38 100644 --- a/lib/igt_amd.h +++ b/lib/igt_amd.h @@ -49,6 +49,7 @@ #define MULTIPLIER_TO_LR 270000 #define DEBUGFS_EDP_REPLAY_CAP "replay_capability" #define DEBUGFS_EDP_REPLAY_STATE "replay_state" +#define DEBUGFS_EDP_REPLAY_COASTING_VTOTAL "replay_coasting_vtotal" #define DEBUGFS_EDP_PSR_CAP "psr_capability" #define DEBUGFS_EDP_PSR_STATE "psr_state" #define DEBUGFS_ALLOW_EDP_HOTPLUG_DETECT "allow_edp_hotplug_detection" @@ -227,6 +228,8 @@ bool igt_amd_output_has_ilr_setting(int drm_fd, char *connector_name); bool igt_amd_output_has_replay_cap(int drm_fd, char *connector_name); bool igt_amd_replay_support_sink(int drm_fd, char *connector_name); bool igt_amd_replay_support_drv(int drm_fd, char *connector_name); +bool igt_amd_replay_support_rate_control(int drm_fd, char *connector_name); +int igt_amd_read_replay_coasting_vtotal(int drm_fd, char *connector_name, uint32_t *vtotal); bool igt_amd_output_has_replay_state(int drm_fd, char *connector_name); enum replay_state igt_amd_read_replay_state(int drm_fd, char *connector_name); bool igt_amd_output_has_psr_cap(int drm_fd, char *connector_name); diff --git a/tests/amdgpu/amd_replay.c b/tests/amdgpu/amd_replay.c index 4b795f5ba..db2b565b5 100644 --- a/tests/amdgpu/amd_replay.c +++ b/tests/amdgpu/amd_replay.c @@ -5,6 +5,7 @@ #include <dirent.h> #include <fcntl.h> +#include <string.h> #include "igt_amd.h" @@ -397,6 +398,90 @@ static void run_check_replay_suspend(struct test_data *data) test_fini(data); } +/* + * Verify replay rate control: when the screen is static, coasting vtotal should + * be extended to lower the refresh rate; under live mode, coasting vtotal should + * drop back. Equal values mean rate control did not engage, which is a failure. + * + * static_coasting_vtotal > live_coasting_vtotal + */ +static void run_check_replay_rate_control(struct test_data *data) +{ + int edp_idx; + igt_output_t *output; + uint32_t static_coasting_vtotal = 0; + uint32_t live_coasting_vtotal = 0; + int ret; + + test_init(data); + + edp_idx = check_conn_type(data, DRM_MODE_CONNECTOR_eDP); + igt_skip_on_f(edp_idx == -1, "no eDP connector found\n"); + + /* check if eDP supports Panel Replay. */ + igt_skip_on(!replay_mode_supported(data)); + + igt_skip_on_f(!igt_amd_replay_support_rate_control(data->fd, + data->output->name), + "Replay rate control not supported; skip test\n"); + + for_each_connected_output(&data->display, output) { + if (output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) + continue; + + igt_create_color_fb(data->fd, data->mode->hdisplay, + data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, + 0.6, 0.6, 0.6, &data->ref_fb); + igt_create_color_fb(data->fd, data->mode->hdisplay, + data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, + 0.0, 0.4, 0.14, &data->ref_fb2); + + igt_plane_set_fb(data->primary, &data->ref_fb); + igt_display_commit_atomic(&data->display, + DRM_MODE_ATOMIC_ALLOW_MODESET, 0); + data->flip_fb = &data->ref_fb; + + ret = drmModePageFlip(data->fd, output->config.crtc->crtc_id, + data->flip_fb->fb_id, + DRM_MODE_PAGE_FLIP_EVENT, NULL); + igt_assert_eq(ret, 0); + kmstest_wait_for_pageflip(data->fd); + + /* Do some page flips and let replay enable */ + page_flip_test(data, output, TEST_MODE_FLIP_ONLY, + FLIP_FRAME_BEFORE_TEST); + + /* Panel Replay state takes time to settle on static screen */ + sleep(1); + ret = igt_amd_read_replay_coasting_vtotal(data->fd, + output->name, + &static_coasting_vtotal); + igt_assert_f(ret == 0, + "failed to read static-mode coasting vtotal: %s\n", + strerror(-ret)); + + /* Drive page flips to put replay into live mode */ + page_flip_test(data, output, TEST_MODE_FLIP_ONLY, 20); + ret = igt_amd_read_replay_coasting_vtotal(data->fd, + output->name, + &live_coasting_vtotal); + igt_assert_f(ret == 0, + "failed to read live-mode coasting vtotal: %s\n", + strerror(-ret)); + + igt_fail_on_f(static_coasting_vtotal <= live_coasting_vtotal, + "coasting vtotal in static (%u) must be > live (%u)\n", + static_coasting_vtotal, live_coasting_vtotal); + + igt_remove_fb(data->fd, &data->ref_fb); + igt_remove_fb(data->fd, &data->ref_fb2); + data->ref_fb.fb_id = 0; + data->ref_fb2.fb_id = 0; + } + + test_fini(data); +} + static int opt_handler(int option, int option_index, void *data) { switch (option) { @@ -454,6 +539,9 @@ int igt_main_args("", long_options, help_str, opt_handler, NULL) igt_describe("Test whether Panel Replay can be enabled after resume from suspend"); igt_subtest("replay_suspend") run_check_replay_suspend(&data); + igt_describe("Test whether Panel Replay can be enabled with rate control mode"); + igt_subtest("replay_rate_control") run_check_replay_rate_control(&data); + igt_fixture() { if (opt.visual_confirm) { -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) 2026-05-13 7:03 [PATCH i-g-t, v2 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu 2026-05-13 7:03 ` [PATCH i-g-t, v2 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos Ray Wu 2026-05-13 7:03 ` [PATCH i-g-t, v2 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test Ray Wu @ 2026-05-13 16:43 ` Patchwork 2026-05-13 17:50 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-05-13 16:43 UTC (permalink / raw) To: Ray Wu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7470 bytes --] == Series Details == Series: tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) URL : https://patchwork.freedesktop.org/series/166390/ State : success == Summary == CI Bug Log - changes from IGT_8909 -> IGTPW_15178 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-adls-6 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15178 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@dmabuf@all-tests.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic@basic: - bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@gem_tiled_pread_basic@basic.html * igt@i915_selftest@live@sanitycheck: - fi-kbl-7567u: [PASS][4] -> [DMESG-WARN][5] ([i915#13735]) +79 other tests dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8909/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html * igt@i915_selftest@live@workarounds: - bat-dg2-9: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8909/bat-dg2-9/igt@i915_selftest@live@workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-dg2-9/igt@i915_selftest@live@workarounds.html * igt@intel_hwmon@hwmon-read: - bat-adls-6: NOTRUN -> [SKIP][8] ([i915#7707]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@intel_hwmon@hwmon-read.html * igt@kms_busy@basic@flip: - fi-kbl-7567u: [PASS][9] -> [DMESG-WARN][10] ([i915#13735] / [i915#180]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8909/fi-kbl-7567u/igt@kms_busy@basic@flip.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/fi-kbl-7567u/igt@kms_busy@basic@flip.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][11] ([i915#4103]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#3840]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][14] ([i915#5354]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [PASS][15] -> [DMESG-WARN][16] ([i915#13735] / [i915#15673] / [i915#180]) +52 other tests dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8909/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][17] ([i915#1072] / [i915#9732]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][18] ([i915#3555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][19] ([i915#3291]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-adls-6/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][20] ([i915#12061]) -> [PASS][21] +1 other test pass [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8909/bat-arls-5/igt@i915_selftest@live@workarounds.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][22] ([i915#12061]) -> [PASS][23] +1 other test pass [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8909/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-mtlp-9/igt@i915_selftest@live@workarounds.html - bat-arls-6: [DMESG-FAIL][24] ([i915#12061]) -> [PASS][25] +1 other test pass [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8909/bat-arls-6/igt@i915_selftest@live@workarounds.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8909 -> IGTPW_15178 * Linux: CI_DRM_18479 -> CI_DRM_18484 CI-20190529: 20190529 CI_DRM_18479: 8fbb3d48e61c7e68cefdba85c3fa3ba59e7a93b4 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18484: 21b42374be17d486baf9392b56377afde67a778d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15178: 30988e58050ddeb89c11541e8d0b127e6c0e9101 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8909: e68d82b442e3909dd053c97542aeb029707124cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/index.html [-- Attachment #2: Type: text/html, Size: 9005 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) 2026-05-13 7:03 [PATCH i-g-t, v2 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu ` (2 preceding siblings ...) 2026-05-13 16:43 ` ✓ i915.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) Patchwork @ 2026-05-13 17:50 ` Patchwork 2026-05-14 15:45 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-14 17:13 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-05-13 17:50 UTC (permalink / raw) To: Ray Wu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1176 bytes --] == Series Details == Series: tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) URL : https://patchwork.freedesktop.org/series/166390/ State : success == Summary == CI Bug Log - changes from XEIGT_8909_BAT -> XEIGTPW_15178_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8909 -> IGTPW_15178 * Linux: xe-5053-8fbb3d48e61c7e68cefdba85c3fa3ba59e7a93b4 -> xe-5058-21b42374be17d486baf9392b56377afde67a778d IGTPW_15178: 30988e58050ddeb89c11541e8d0b127e6c0e9101 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8909: e68d82b442e3909dd053c97542aeb029707124cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5053-8fbb3d48e61c7e68cefdba85c3fa3ba59e7a93b4: 8fbb3d48e61c7e68cefdba85c3fa3ba59e7a93b4 xe-5058-21b42374be17d486baf9392b56377afde67a778d: 21b42374be17d486baf9392b56377afde67a778d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/index.html [-- Attachment #2: Type: text/html, Size: 1735 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) 2026-05-13 7:03 [PATCH i-g-t, v2 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu ` (3 preceding siblings ...) 2026-05-13 17:50 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-05-14 15:45 ` Patchwork 2026-05-14 17:13 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-05-14 15:45 UTC (permalink / raw) To: Ray Wu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 25463 bytes --] == Series Details == Series: tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) URL : https://patchwork.freedesktop.org/series/166390/ State : failure == Summary == CI Bug Log - changes from XEIGT_8909_FULL -> XEIGTPW_15178_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15178_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15178_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15178_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@modeset-transition: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-8/igt@kms_atomic_transition@modeset-transition.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-7/igt@kms_atomic_transition@modeset-transition.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma: - shard-lnl: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html Known issues ------------ Here are the changes found in XEIGTPW_15178_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#7679]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-1/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2325] / [Intel XE#7358]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-5/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-8/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2320]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#301]) +1 other test fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#3321]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2311]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-8/igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#4141]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2313]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#7915]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-10/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-1/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1489]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2234] / [Intel XE#2850]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-6/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3904] / [Intel XE#7342]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_vrr@max-min: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#4227]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-lnl-4/igt@kms_vrr@max-min.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-lnl-4/igt@kms_vrr@max-min.html * igt@xe_eudebug@discovery-race-sigint: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7636]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-4/igt@xe_eudebug@discovery-race-sigint.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2322] / [Intel XE#7372]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7136]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch.html * igt@xe_exec_multi_queue@two-queues-basic-smem: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6874]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-basic-smem.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-busy: - shard-bmg: [PASS][28] -> [DMESG-FAIL][29] ([Intel XE#6652]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-busy.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-busy.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7138]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html * igt@xe_multigpu_svm@mgpu-latency-copy-prefetch: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6964]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-6/igt@xe_multigpu_svm@mgpu-latency-copy-prefetch.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2284] / [Intel XE#7370]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][33] -> [FAIL][34] ([Intel XE#6569]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html #### Possible fixes #### * igt@kms_cursor_edge_walk@256x256-top-edge: - shard-bmg: [FAIL][35] ([Intel XE#6841]) -> [PASS][36] +1 other test pass [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-9/igt@kms_cursor_edge_walk@256x256-top-edge.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][37] ([Intel XE#7571]) -> [PASS][38] +1 other test pass [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][39] ([Intel XE#301]) -> [PASS][40] +1 other test pass [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@d-dp2: - shard-bmg: [FAIL][41] ([Intel XE#3321]) -> [PASS][42] +1 other test pass [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-dp2: - shard-bmg: [DMESG-FAIL][43] ([Intel XE#5545]) -> [PASS][44] +1 other test pass [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-dp2.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-9/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-dp2.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][45] ([Intel XE#6703]) -> [PASS][46] +38 other tests pass [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [SKIP][47] ([Intel XE#7308]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-10/igt@kms_hdmi_inject@inject-audio.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][49] ([Intel XE#7915]) -> [PASS][50] +1 other test pass [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-5/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][51] ([Intel XE#7340]) -> [PASS][52] +1 other test pass [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][53] ([Intel XE#6361]) -> [PASS][54] +1 other test pass [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [FAIL][55] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][56] +1 other test pass [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-lnl-1/igt@kms_vrr@flip-basic-fastset.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-bmg: [FAIL][57] ([Intel XE#7992]) -> [PASS][58] +1 other test pass [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-6/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html #### Warnings #### * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][59] ([Intel XE#6703]) -> [SKIP][60] ([Intel XE#1124]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][61] ([Intel XE#6703]) -> [SKIP][62] ([Intel XE#2887]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html * igt@kms_content_protection@lic-type-1: - shard-bmg: [SKIP][63] ([Intel XE#6703]) -> [SKIP][64] ([Intel XE#7642]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_content_protection@lic-type-1.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-10/igt@kms_content_protection@lic-type-1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][65] ([Intel XE#6703]) -> [FAIL][66] ([Intel XE#3321]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x: - shard-bmg: [SKIP][67] ([Intel XE#6703]) -> [SKIP][68] ([Intel XE#7179]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-9/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][69] ([Intel XE#4141]) -> [INCOMPLETE][70] ([Intel XE#1727]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][71] ([Intel XE#6703]) -> [SKIP][72] ([Intel XE#2311]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt: - shard-bmg: [SKIP][73] ([Intel XE#6703]) -> [SKIP][74] ([Intel XE#7061]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][75] ([Intel XE#6703]) -> [SKIP][76] ([Intel XE#2313]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_panel_fitting@legacy: - shard-bmg: [SKIP][77] ([Intel XE#6703]) -> [SKIP][78] ([Intel XE#2486]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_panel_fitting@legacy.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-2/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-bmg: [SKIP][79] ([Intel XE#6703]) -> [SKIP][80] ([Intel XE#7283]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][81] ([Intel XE#6703]) -> [SKIP][82] ([Intel XE#1489]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][83] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][84] ([Intel XE#2509] / [Intel XE#7437]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_eudebug@attach-debug-metadata: - shard-bmg: [SKIP][85] ([Intel XE#6703]) -> [SKIP][86] ([Intel XE#7636]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@xe_eudebug@attach-debug-metadata.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-4/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority: - shard-bmg: [SKIP][87] ([Intel XE#6703]) -> [SKIP][88] ([Intel XE#6874]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority.html * igt@xe_pxp@display-black-pxp-fb: - shard-bmg: [SKIP][89] ([Intel XE#6703]) -> [SKIP][90] ([Intel XE#4733] / [Intel XE#7417]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@xe_pxp@display-black-pxp-fb.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-1/igt@xe_pxp@display-black-pxp-fb.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [SKIP][91] ([Intel XE#6703]) -> [FAIL][92] ([Intel XE#6569]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8909/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/shard-bmg-10/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 Build changes ------------- * IGT: IGT_8909 -> IGTPW_15178 * Linux: xe-5053-8fbb3d48e61c7e68cefdba85c3fa3ba59e7a93b4 -> xe-5058-21b42374be17d486baf9392b56377afde67a778d IGTPW_15178: 30988e58050ddeb89c11541e8d0b127e6c0e9101 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8909: e68d82b442e3909dd053c97542aeb029707124cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5053-8fbb3d48e61c7e68cefdba85c3fa3ba59e7a93b4: 8fbb3d48e61c7e68cefdba85c3fa3ba59e7a93b4 xe-5058-21b42374be17d486baf9392b56377afde67a778d: 21b42374be17d486baf9392b56377afde67a778d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15178/index.html [-- Attachment #2: Type: text/html, Size: 29303 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) 2026-05-13 7:03 [PATCH i-g-t, v2 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu ` (4 preceding siblings ...) 2026-05-14 15:45 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-05-14 17:13 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-05-14 17:13 UTC (permalink / raw) To: Ray Wu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 139839 bytes --] == Series Details == Series: tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) URL : https://patchwork.freedesktop.org/series/166390/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18484_full -> IGTPW_15178_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15178_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15178_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_15178/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15178_full: ### IGT changes ### #### Possible regressions #### * igt@kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-8/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-16/igt@kms_feature_discovery@chamelium.html New tests --------- New tests have been introduced between CI_DRM_18484_full and IGTPW_15178_full: ### New IGT tests (6) ### * igt@gem_exec_fence@2x-plain-flip-ts-check-interruptible: - Statuses : - Exec time: [None] s * igt@gem_exec_fence@compute-square: - Statuses : - Exec time: [None] s * igt@gem_exec_fence@cursora-vs-flipa-atomic-transitions-varying-size: - Statuses : - Exec time: [None] s * igt@gem_exec_fence@getfb2-handle-closed: - Statuses : - Exec time: [None] s * igt@gem_exec_fence@psrhdr-rgb101010-draw-mmap-gtt: - Statuses : - Exec time: [None] s * igt@gem_exec_fence@unbind-cold-reset-rebind: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_15178_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][3] ([i915#11078]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-5/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][4] ([i915#11814]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html * igt@drm_buddy@drm_buddy: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#15678]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-2/igt@drm_buddy@drm_buddy.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#3936]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][7] ([i915#3936]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#3936]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-9/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#13008]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@gem_ccs@large-ctrl-surf-copy.html - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#13008]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#13008]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-12/igt@gem_ccs@large-ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#13008]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][15] ([i915#13356]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-5/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-clear@smem0: - shard-mtlp: [PASS][21] -> [INCOMPLETE][22] ([i915#16020]) +1 other test incomplete [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-mtlp-7/igt@gem_create@create-clear@smem0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@gem_create@create-clear@smem0.html * igt@gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk10: NOTRUN -> [INCOMPLETE][24] ([i915#13356]) +1 other test incomplete [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk10/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-hang.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hang.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][28] ([i915#1099]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-snb1/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@reset-stress@blt: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#15314]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-2/igt@gem_eio@reset-stress@blt.html * igt@gem_eio@reset-stress@bsd: - shard-snb: NOTRUN -> [FAIL][31] ([i915#8898]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-snb6/igt@gem_eio@reset-stress@bsd.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-7/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][34] ([i915#6334]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#6344]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines: - shard-dg2: [PASS][36] -> [ABORT][37] ([i915#13562]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg2-5/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-8/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-15/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_reloc@basic-gtt-active: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#14544] / [i915#3281]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-active.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-write-cpu: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-6/igt@gem_exec_reloc@basic-write-cpu.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-16/igt@gem_exec_reloc@basic-write-cpu.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-2/igt@gem_exec_reloc@basic-write-cpu.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][45] -> [INCOMPLETE][46] ([i915#13356]) +1 other test incomplete [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy.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_15178/shard-rkl-3/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][51] ([i915#2190]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-8/igt@gem_lmem_swapping@parallel-multi.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#284]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-4/igt@gem_media_vme.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@gem_mmap_gtt@bad-object.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-12/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-8/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-15/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-16/igt@gem_partial_pwrite_pread@write-snoop.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-8/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pread@exhaustion: - shard-glk10: NOTRUN -> [WARN][66] ([i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk10/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@gem_pread@snoop.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#13398]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@read-write: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@gem_readwrite@read-write.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][74] ([i915#3323]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3281] / [i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-4/igt@gem_userptr_blits@relocations.html - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3281] / [i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3281] / [i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3281] / [i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4958]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4958]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][81] +147 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-snb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-19/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#2856]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-8/igt@gen9_exec_parse@unaligned-jump.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#13786]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@i915_fb_tiling@basic-x-tiling.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#13786]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@i915_fb_tiling@basic-x-tiling.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#13786]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_module_load@fault-injection@i915_driver_mmio_probe: - shard-dg1: NOTRUN -> [INCOMPLETE][91] ([i915#15481]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-13/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-tglu: NOTRUN -> [ABORT][92] ([i915#15342]) +1 other test abort [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-10/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-glk: NOTRUN -> [ABORT][93] ([i915#15342]) +1 other test abort [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#15479]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-10/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#8399]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][96] -> [INCOMPLETE][97] ([i915#13356] / [i915#13820]) +1 other test incomplete [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#6590]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-3/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@engine-order: - shard-glk: [PASS][99] -> [FAIL][100] ([i915#14896]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk9/igt@i915_pm_rps@engine-order.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@i915_pm_rps@engine-order.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#11681]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#11681]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#16079]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][106] -> [INCOMPLETE][107] ([i915#4817]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-dg2: [PASS][108] -> [ABORT][109] ([i915#15140]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg2-6/igt@i915_suspend@forcewake.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-10/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#5190]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#12761]) +1 other test incomplete [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk9/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][112] ([i915#1769]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][116] ([i915#1769]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#14544] / [i915#5286]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#5286]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#5286]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][123] -> [FAIL][124] ([i915#15733] / [i915#5138]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#3828]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#3828]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6187]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#12313]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#14544] / [i915#6095]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6095]) +19 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +59 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +217 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +73 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#6095]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [PASS][144] -> [ABORT][145] ([i915#15132]) +3 other tests abort [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][146] ([i915#15582]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#10307] / [i915#6095]) +88 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#14098] / [i915#6095]) +43 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#6095]) +39 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][151] +562 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#3742]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-4/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][153] +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][154] +7 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_chamelium_frames@dp-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-15/igt@kms_chamelium_frames@dp-crc-fast.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-9/igt@kms_chamelium_frames@dp-crc-fast.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_color@deep-color: - shard-rkl: [PASS][161] -> [SKIP][162] ([i915#12655] / [i915#3555]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_color@deep-color.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#15865]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#15865]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@kms_content_protection@atomic-dpms-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][165] ([i915#15865]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-2/igt@kms_content_protection@atomic-dpms-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#15865]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@atomic-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#15865]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#15330]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#15865]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu-1: NOTRUN -> [FAIL][171] ([i915#13566]) +3 other tests fail [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#13049]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][173] ([i915#13566]) +1 other test fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#13049]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][175] ([i915#13049]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#13049]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#13049]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#13049]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-max-size.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#3555]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-max-size.html - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8814]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][182] +49 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#9809]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html - shard-dg2: NOTRUN -> [SKIP][184] ([i915#13046] / [i915#5354]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][185] ([i915#15804]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#4103]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#4103]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#13748]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@kms_dp_link_training@uhbr-sst.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#13748]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@kms_dp_link_training@uhbr-sst.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#13748]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-7/igt@kms_dp_link_training@uhbr-sst.html - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#13749]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@kms_dp_link_training@uhbr-sst.html - shard-dg2: NOTRUN -> [SKIP][192] ([i915#13748]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#13707]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-2/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#9878]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3955]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#2065]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-10/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#16081]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#9337]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#4881]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9934]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-panning: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#9934]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-8/igt@kms_flip@2x-flip-vs-panning-interruptible.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#9934]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@kms_flip@2x-flip-vs-panning-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3637] / [i915#9934]) +8 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-3/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg1: [PASS][208] -> [FAIL][209] ([i915#13027]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-19/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-dg1: NOTRUN -> [FAIL][210] ([i915#13027]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#15643]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#15643]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#15643]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][215] ([i915#15643]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#15643]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][217] ([i915#15643] / [i915#5190]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#15643]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#15104] / [i915#15990]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#15104] / [i915#15990]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#15104] / [i915#15990]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#15990] / [i915#8708]) +10 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#15990] / [i915#8708]) +6 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#15990] / [i915#8708]) +4 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#15990] / [i915#4423] / [i915#8708]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#15991] / [i915#1825]) +8 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#1825]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][228] -> [INCOMPLETE][229] ([i915#10056]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#10056]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#5439]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#15989]) +13 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#15989]) +12 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#15991]) +18 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][235] +30 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-pwrite: - shard-glk: [PASS][236] -> [SKIP][237] +10 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-pwrite.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk9/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#15102]) +11 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#15102]) +11 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#15990]) +11 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#15990]) +6 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][242] +88 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#15990]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#15989]) +7 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#15989]) +11 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#15989]) +20 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: [PASS][247] -> [SKIP][248] ([i915#15989]) +14 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#15991]) +22 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][250] ([i915#16056]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk11/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#14544] / [i915#9766]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][252] ([i915#9766]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][253] ([i915#9766]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][254] ([i915#9766]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#15102]) +43 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#15102]) +25 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#15102] / [i915#3023]) +9 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102]) +13 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#15991] / [i915#5354]) +9 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15989]) +15 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][261] +66 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#16012] / [i915#3555] / [i915#8228]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#16012] / [i915#3555] / [i915#8228]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-6/igt@kms_hdr@bpc-switch-suspend.html - shard-dg2: NOTRUN -> [SKIP][264] ([i915#16012] / [i915#3555] / [i915#8228]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html - shard-rkl: NOTRUN -> [SKIP][265] ([i915#16012] / [i915#3555] / [i915#8228]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#16012] / [i915#3555] / [i915#8228]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-19/igt@kms_hdr@bpc-switch-suspend.html - shard-snb: NOTRUN -> [FAIL][267] ([i915#16018]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-snb5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#16012]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html - shard-snb: NOTRUN -> [FAIL][269] ([i915#16013]) +1 other test fail [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-snb5/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#16012]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#16012]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#16012]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][273] ([i915#16012]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-15/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#16011]) +7 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#16011]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#16011] / [i915#3555] / [i915#8228]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb16161616f: - shard-glk10: NOTRUN -> [SKIP][277] +141 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk10/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb16161616f.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#16011]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][279] ([i915#15436]) +1 other test incomplete [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#16011]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#15458]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#15458]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][283] ([i915#15458]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-4/igt@kms_joiner@basic-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15458]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#6301]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][286] ([i915#6301]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#6301]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#6301]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-16/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#6301]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-3/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#13409] / [i915#13476]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#14712]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#15608]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#15709]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#15709]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15608]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#15709]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#15709]) +2 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#15709]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#15709]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][300] ([i915#13026]) +1 other test incomplete [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk11/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk11: NOTRUN -> [FAIL][301] ([i915#10647] / [i915#12169]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [FAIL][302] ([i915#10647]) +1 other test fail [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-128: - shard-rkl: NOTRUN -> [FAIL][303] ([i915#15913]) +1 other test fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-128.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-64: - shard-rkl: NOTRUN -> [FAIL][304] ([i915#15912]) +1 other test fail [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-64.html * igt@kms_plane_lowres@tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#3555]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-y: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#13958]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#14259]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_plane_multiple@tiling-4.html - shard-dg1: NOTRUN -> [SKIP][308] ([i915#14259]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@kms_plane_multiple@tiling-4.html - shard-tglu: NOTRUN -> [SKIP][309] ([i915#14259]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-2/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][310] -> [SKIP][311] ([i915#6953]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#15329] / [i915#3555] / [i915#6953]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#15329]) +3 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#5354]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-8/igt@kms_pm_backlight@basic-brightness.html - shard-dg1: NOTRUN -> [SKIP][315] ([i915#5354]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-16/igt@kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][316] ([i915#9812]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#5354]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@kms_pm_backlight@fade.html - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9812]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#15948]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-9/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][320] -> [SKIP][321] ([i915#14544] / [i915#15073]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][322] -> [SKIP][323] ([i915#15073]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#15073]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][325] -> [SKIP][326] ([i915#15073]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#6524]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-8/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#11520]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][329] ([i915#11520]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-snb5/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#11520]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#11520]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-15/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#12316]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-7/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][333] ([i915#11520]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-glk11: NOTRUN -> [SKIP][334] ([i915#11520]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk11/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#11520]) +6 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][336] ([i915#11520]) +14 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk3/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][337] ([i915#11520]) +4 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#9683]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9683]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#9683]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +10 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9688]) +7 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +10 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#9732]) +18 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-2/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@pr-suspend: - shard-glk11: NOTRUN -> [SKIP][345] +49 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk11/igt@kms_psr@pr-suspend.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#9732]) +12 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +7 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-16/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-no-drrs: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#1072] / [i915#14544] / [i915#9732]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][349] ([i915#15949]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][350] ([i915#15500]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#5289]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#3555]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_framebuffer: - shard-dg1: NOTRUN -> [ABORT][353] ([i915#13179]) +1 other test abort [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-16/igt@kms_selftest@drm_framebuffer.html - shard-snb: NOTRUN -> [ABORT][354] ([i915#13179]) +1 other test abort [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-snb5/igt@kms_selftest@drm_framebuffer.html - shard-mtlp: NOTRUN -> [ABORT][355] ([i915#13179]) +1 other test abort [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-7/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][356] ([i915#13179]) +1 other test abort [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic: - shard-tglu: [PASS][357] -> [FAIL][358] ([i915#15106]) +2 other tests fail [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-tglu-9/igt@kms_setmode@basic.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-8/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#3555]) +5 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-10/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#3555] / [i915#8809]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-3/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#8623]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: [PASS][362] -> [INCOMPLETE][363] ([i915#12276]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#9906]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#11920]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-mtlp: [PASS][366] -> [FAIL][367] ([i915#15420]) +1 other test fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-mtlp-4/igt@kms_vrr@negative-basic.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@kms_vrr@negative-basic.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#2434]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][369] ([i915#9100]) +1 other test fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][370] -> [FAIL][371] ([i915#15453]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-6/igt@perf_pmu@all-busy-idle-check-all.html - shard-dg1: [PASS][372] -> [FAIL][373] ([i915#15453]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [PASS][374] -> [FAIL][375] ([i915#15453]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-mtlp-1/igt@perf_pmu@all-busy-idle-check-all.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-6/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@module-unload: - shard-tglu-1: NOTRUN -> [ABORT][376] ([i915#13029] / [i915#15778]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][377] ([i915#13356]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk8/igt@perf_pmu@rc6-suspend.html - shard-rkl: [PASS][378] -> [INCOMPLETE][379] ([i915#13520]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-4/igt@perf_pmu@rc6-suspend.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#8516]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html - shard-tglu-1: NOTRUN -> [SKIP][381] ([i915#8516]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#9917]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9917]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][384] ([i915#9917]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#16066]) +9 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu-1: NOTRUN -> [SKIP][386] ([i915#16066]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#16066]) +18 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][388] ([i915#13356]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [INCOMPLETE][390] ([i915#16021]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: [INCOMPLETE][392] ([i915#13356]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk1/igt@gem_workarounds@suspend-resume-context.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@gem_workarounds@suspend-resume-context.html * igt@i915_module_load@reload-no-display: - shard-dg1: [DMESG-WARN][394] ([i915#13029] / [i915#14545]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-16/igt@i915_module_load@reload-no-display.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-14/igt@i915_module_load@reload-no-display.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [INCOMPLETE][396] ([i915#4817]) -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@fence-restore-untiled: - shard-glk: [INCOMPLETE][398] ([i915#4817]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk5/igt@i915_suspend@fence-restore-untiled.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk5/igt@i915_suspend@fence-restore-untiled.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][400] ([i915#14694] / [i915#15582]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][402] ([i915#13566]) -> [PASS][403] +4 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-mtlp: [FAIL][404] ([i915#15768]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff: - shard-rkl: [SKIP][406] ([i915#15989]) -> [PASS][407] +13 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-pgflip-blt: - shard-glk: [SKIP][408] -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk9/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-pgflip-blt.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu: - shard-dg2: [SKIP][410] ([i915#15989]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: [SKIP][412] ([i915#16012] / [i915#3555] / [i915#8228]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: [SKIP][414] ([i915#16012]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][416] ([i915#12756] / [i915#13409] / [i915#13476]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][418] ([i915#15073]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_properties@get_properties-sanity-non-atomic: - shard-dg1: [DMESG-WARN][420] ([i915#4423]) -> [PASS][421] +3 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-16/igt@kms_properties@get_properties-sanity-non-atomic.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-12/igt@kms_properties@get_properties-sanity-non-atomic.html #### Warnings #### * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: [SKIP][422] ([i915#4525]) -> [SKIP][423] ([i915#14544] / [i915#4525]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-in-fence.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_big@single: - shard-tglu: [FAIL][424] ([i915#15816]) -> [FAIL][425] ([i915#15944]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-tglu-10/igt@gem_exec_big@single.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-tglu-6/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: [SKIP][426] ([i915#6344]) -> [SKIP][427] ([i915#14544] / [i915#6344]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-rkl: [SKIP][428] ([i915#14544] / [i915#3281]) -> [SKIP][429] ([i915#3281]) +2 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-active.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-rkl: [SKIP][430] ([i915#3281]) -> [SKIP][431] ([i915#14544] / [i915#3281]) +3 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-1/igt@gem_exec_reloc@basic-write-wc-noreloc.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: [SKIP][432] ([i915#4613]) -> [SKIP][433] ([i915#14544] / [i915#4613]) +3 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][434] ([i915#13717] / [i915#14544]) -> [SKIP][435] ([i915#13717]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_readwrite@read-write: - shard-rkl: [SKIP][436] ([i915#3282]) -> [SKIP][437] ([i915#14544] / [i915#3282]) +1 other test skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-2/igt@gem_readwrite@read-write.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@gem_readwrite@read-write.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#8411]) -> [SKIP][439] ([i915#8411]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [ABORT][440] ([i915#15131]) -> [INCOMPLETE][441] ([i915#13809]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-1/igt@gem_softpin@noreloc-s3.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][442] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][443] ([i915#3297] / [i915#3323]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][444] ([i915#3282] / [i915#3297]) -> [SKIP][445] ([i915#14544] / [i915#3282] / [i915#3297]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: [SKIP][446] ([i915#3297]) -> [SKIP][447] ([i915#14544] / [i915#3297]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-5/igt@gem_userptr_blits@unsync-overlap.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#2527]) -> [SKIP][449] ([i915#2527]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@gen9_exec_parse@batch-without-end.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][450] ([i915#2527]) -> [SKIP][451] ([i915#14544] / [i915#2527]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-7/igt@gen9_exec_parse@shadow-peek.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@fault-injection: - shard-dg1: [ABORT][452] ([i915#11814]) -> [ABORT][453] ([i915#11814] / [i915#15481]) +1 other test abort [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-14/igt@i915_module_load@fault-injection.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-13/igt@i915_module_load@fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][454] ([i915#8399]) -> [SKIP][455] ([i915#14544] / [i915#8399]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-rkl: [SKIP][456] ([i915#5286]) -> [SKIP][457] ([i915#14544] / [i915#5286]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#5286]) -> [SKIP][459] ([i915#5286]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][460] ([i915#3828]) -> [SKIP][461] ([i915#14544] / [i915#3828]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#3638]) -> [SKIP][463] ([i915#3638]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][464] ([i915#3638]) -> [SKIP][465] ([i915#14544] / [i915#3638]) +1 other test skip [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][466] ([i915#14544] / [i915#6095]) -> [SKIP][467] ([i915#6095]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][468] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][469] ([i915#14098] / [i915#6095]) +4 other tests skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs: - shard-dg1: [SKIP][470] ([i915#4423] / [i915#6095]) -> [SKIP][471] ([i915#6095]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: [INCOMPLETE][472] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][473] ([i915#15582]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][474] ([i915#6095]) -> [SKIP][475] ([i915#14544] / [i915#6095]) +1 other test skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][476] ([i915#14098] / [i915#6095]) -> [SKIP][477] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: [SKIP][478] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][479] ([i915#11151] / [i915#7828]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg1: [SKIP][480] ([i915#15330] / [i915#3299] / [i915#4423]) -> [SKIP][481] ([i915#15330] / [i915#3299]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: [SKIP][482] ([i915#14544] / [i915#15865]) -> [SKIP][483] ([i915#15865]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_content_protection@legacy.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][484] ([i915#13049]) -> [SKIP][485] ([i915#13049] / [i915#14544]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#3555]) -> [SKIP][487] ([i915#3555]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][488] ([i915#4103]) -> [SKIP][489] ([i915#14544] / [i915#4103]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][490] ([i915#13749]) -> [SKIP][491] ([i915#13749] / [i915#14544]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-sst.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#3840] / [i915#9053]) -> [SKIP][493] ([i915#3840] / [i915#9053]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#9934]) -> [SKIP][495] ([i915#9934]) +1 other test skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][496] ([i915#9934]) -> [SKIP][497] ([i915#14544] / [i915#9934]) +2 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: [SKIP][498] ([i915#15643]) -> [SKIP][499] ([i915#14544] / [i915#15643]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: [SKIP][500] -> [SKIP][501] ([i915#15672]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-mtlp-4/igt@kms_force_connector_basic@force-load-detect.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][502] ([i915#14544]) -> [SKIP][503] +21 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-suspend: - shard-glk: [SKIP][504] -> [INCOMPLETE][505] ([i915#16056]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-glk5/igt@kms_frontbuffer_tracking@fbchdr-suspend.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][506] ([i915#1825]) -> [SKIP][507] ([i915#14544] / [i915#1825]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][508] ([i915#15102]) -> [SKIP][509] ([i915#14544] / [i915#15102]) +7 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#15102]) -> [SKIP][511] ([i915#15102]) +6 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-onoff: - shard-dg1: [SKIP][512] ([i915#15989] / [i915#4423]) -> [SKIP][513] ([i915#15989]) +1 other test skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-onoff.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt: - shard-dg1: [SKIP][514] -> [SKIP][515] ([i915#4423]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-18/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg2: [SKIP][516] ([i915#15102]) -> [SKIP][517] ([i915#10433] / [i915#15102]) +3 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][518] ([i915#15102] / [i915#3023]) -> [SKIP][519] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html - shard-dg1: [SKIP][520] ([i915#15102]) -> [SKIP][521] ([i915#15102] / [i915#4423]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][523] ([i915#15102] / [i915#3023]) +5 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][524] -> [SKIP][525] ([i915#14544]) +19 other tests skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#15460]) -> [SKIP][527] ([i915#15460]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#15459]) -> [SKIP][529] ([i915#15459]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#15638] / [i915#15722]) -> [SKIP][531] ([i915#15638] / [i915#15722]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: [SKIP][532] ([i915#13958] / [i915#14544]) -> [SKIP][533] ([i915#13958]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][534] ([i915#9340]) -> [SKIP][535] ([i915#3828]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#6524]) -> [SKIP][537] ([i915#6524]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_prime@d3hot.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-rkl: [SKIP][538] ([i915#11520] / [i915#14544]) -> [SKIP][539] ([i915#11520]) +2 other tests skip [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][540] ([i915#11520]) -> [SKIP][541] ([i915#11520] / [i915#14544]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: [SKIP][542] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][543] ([i915#1072] / [i915#9732]) +5 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-8/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-rkl: [SKIP][544] ([i915#1072] / [i915#9732]) -> [SKIP][545] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-7/igt@kms_psr@psr2-primary-mmap-gtt.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][546] ([i915#15243] / [i915#3555]) -> [SKIP][547] ([i915#14544] / [i915#15243] / [i915#3555]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-rkl-8/igt@kms_vrr@flip-dpms.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-rkl-6/igt@kms_vrr@flip-dpms.html * igt@perf_pmu@module-unload: - shard-dg1: [ABORT][548] ([i915#13029] / [i915#15778]) -> [ABORT][549] ([i915#15778]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18484/shard-dg1-18/igt@perf_pmu@module-unload.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15178/shard-dg1-15/igt@perf_pmu@module-unload.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14896]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14896 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912 [i915#15913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15913 [i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#16013]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16013 [i915#16018]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16018 [i915#16020]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16020 [i915#16021]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16021 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [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#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#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#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [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#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8909 -> IGTPW_15178 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18484: 21b42374be17d486baf9392b56377afde67a778d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15178: 30988e58050ddeb89c11541e8d0b127e6c0e9101 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8909: e68d82b442e3909dd053c97542aeb029707124cf @ 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_15178/index.html [-- Attachment #2: Type: text/html, Size: 183974 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-05-14 17:13 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-13 7:03 [PATCH i-g-t, v2 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu 2026-05-13 7:03 ` [PATCH i-g-t, v2 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos Ray Wu 2026-05-13 7:03 ` [PATCH i-g-t, v2 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test Ray Wu 2026-05-13 16:43 ` ✓ i915.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test (rev2) Patchwork 2026-05-13 17:50 ` ✓ Xe.CI.BAT: " Patchwork 2026-05-14 15:45 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-14 17:13 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox