* [PATCH i-g-t 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test
@ 2026-05-12 7:59 Ray Wu
2026-05-12 7:59 ` [PATCH i-g-t 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos Ray Wu
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Ray Wu @ 2026-05-12 7:59 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 | 93 +++++++++++++++++++++++++++++++
lib/igt_amd.h | 3 +
tests/amdgpu/amd_replay.c | 114 ++++++++++++++++++++++++++++++++++----
3 files changed, 199 insertions(+), 11 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos
2026-05-12 7:59 [PATCH i-g-t 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu
@ 2026-05-12 7:59 ` Ray Wu
2026-05-12 15:31 ` Alex Hung
2026-05-12 7:59 ` [PATCH i-g-t 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test Ray Wu
` (4 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Ray Wu @ 2026-05-12 7:59 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] 9+ messages in thread
* [PATCH i-g-t 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test
2026-05-12 7:59 [PATCH i-g-t 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu
2026-05-12 7:59 ` [PATCH i-g-t 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos Ray Wu
@ 2026-05-12 7:59 ` Ray Wu
2026-05-12 15:40 ` Alex Hung
2026-05-12 13:31 ` ✓ i915.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Ray Wu @ 2026-05-12 7:59 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>
---
lib/igt_amd.c | 93 +++++++++++++++++++++++++++++++++++++++
lib/igt_amd.h | 3 ++
tests/amdgpu/amd_replay.c | 86 ++++++++++++++++++++++++++++++++++++
3 files changed, 182 insertions(+)
diff --git a/lib/igt_amd.c b/lib/igt_amd.c
index a97adad43..89474eb15 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));
+ igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
+ DEBUGFS_EDP_REPLAY_CAP, connector_name);
+ close(fd);
+
+ 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,63 @@ 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
+ * -errno on failure. Errors from the underlying igt debugfs helpers are
+ * passed through; -EINVAL is returned when arguments are invalid
+ * or the file content cannot be parsed.
+ */
+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..fd0b01f05 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,88 @@ 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 RR; under live mode, coasting vtotal should drop back.
+ *
+ * coasting_vtotal_in_static >= coasting_vtotal_in_live
+ *
+ */
+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;
+
+ drmModePageFlip(data->fd, output->config.crtc->crtc_id,
+ data->flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
+ 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 +537,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] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test
2026-05-12 7:59 [PATCH i-g-t 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu
2026-05-12 7:59 ` [PATCH i-g-t 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos Ray Wu
2026-05-12 7:59 ` [PATCH i-g-t 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test Ray Wu
@ 2026-05-12 13:31 ` Patchwork
2026-05-12 14:32 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-12 13:31 UTC (permalink / raw)
To: Ray Wu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1957 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_replay: Add Replay Rate Control test
URL : https://patchwork.freedesktop.org/series/166390/
State : success
== Summary ==
CI Bug Log - changes from IGT_8904 -> IGTPW_15161
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15161 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/bat-dg2-14/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8904 -> IGTPW_15161
CI-20190529: 20190529
CI_DRM_18473: b83102e9c06357b09f2cfbe944269786cb6985c4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15161: bd1066dd392872782e4652faf036a50254a8851b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8904: 07cadbb0bf25b18ac37467c4505f87eb50d4e435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/index.html
[-- Attachment #2: Type: text/html, Size: 2625 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test
2026-05-12 7:59 [PATCH i-g-t 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu
` (2 preceding siblings ...)
2026-05-12 13:31 ` ✓ i915.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test Patchwork
@ 2026-05-12 14:32 ` Patchwork
2026-05-13 1:24 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-13 5:55 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-12 14:32 UTC (permalink / raw)
To: Ray Wu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 964 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_replay: Add Replay Rate Control test
URL : https://patchwork.freedesktop.org/series/166390/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8904_BAT -> XEIGTPW_15161_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8904 -> IGTPW_15161
IGTPW_15161: bd1066dd392872782e4652faf036a50254a8851b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8904: 07cadbb0bf25b18ac37467c4505f87eb50d4e435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4: b83102e9c06357b09f2cfbe944269786cb6985c4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/index.html
[-- Attachment #2: Type: text/html, Size: 1509 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos
2026-05-12 7:59 ` [PATCH i-g-t 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos Ray Wu
@ 2026-05-12 15:31 ` Alex Hung
0 siblings, 0 replies; 9+ messages in thread
From: Alex Hung @ 2026-05-12 15:31 UTC (permalink / raw)
To: Ray Wu, igt-dev; +Cc: sunpeng.li, chiahsuan.chung
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 5/12/26 01:59, Ray Wu wrote:
> [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");
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test
2026-05-12 7:59 ` [PATCH i-g-t 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test Ray Wu
@ 2026-05-12 15:40 ` Alex Hung
0 siblings, 0 replies; 9+ messages in thread
From: Alex Hung @ 2026-05-12 15:40 UTC (permalink / raw)
To: Ray Wu, igt-dev; +Cc: sunpeng.li, chiahsuan.chung
On 5/12/26 01:59, Ray Wu wrote:
> [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>
> ---
> lib/igt_amd.c | 93 +++++++++++++++++++++++++++++++++++++++
> lib/igt_amd.h | 3 ++
> tests/amdgpu/amd_replay.c | 86 ++++++++++++++++++++++++++++++++++++
> 3 files changed, 182 insertions(+)
>
> diff --git a/lib/igt_amd.c b/lib/igt_amd.c
> index a97adad43..89474eb15 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));
> + igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
> + DEBUGFS_EDP_REPLAY_CAP, connector_name);
> + close(fd);
igt_assert_f can terminate this function early and close(fd) will not be
run. Let's move close(fd) up.
> +
> + 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,63 @@ 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
> + * -errno on failure. Errors from the underlying igt debugfs helpers are
> + * passed through; -EINVAL is returned when arguments are invalid
> + * or the file content cannot be parsed.
> + */
> +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..fd0b01f05 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,88 @@ 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 RR; under live mode, coasting vtotal should drop back.
> + *
> + * coasting_vtotal_in_static >= coasting_vtotal_in_live
Should this be "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;
> +
> + drmModePageFlip(data->fd, output->config.crtc->crtc_id,
> + data->flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
drmModePageFlip's return needs to be checked.
> + 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 +537,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) {
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/amdgpu/amd_replay: Add Replay Rate Control test
2026-05-12 7:59 [PATCH i-g-t 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu
` (3 preceding siblings ...)
2026-05-12 14:32 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-13 1:24 ` Patchwork
2026-05-13 5:55 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-13 1:24 UTC (permalink / raw)
To: Ray Wu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 41769 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_replay: Add Replay Rate Control test
URL : https://patchwork.freedesktop.org/series/166390/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8904_FULL -> XEIGTPW_15161_FULL
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with XEIGTPW_15161_FULL need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15161_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_15161_FULL:
### IGT changes ###
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-fullscreen:
- shard-lnl: [SKIP][1] ([Intel XE#7905]) -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-fullscreen.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-fullscreen.html
Known issues
------------
Here are the changes found in XEIGTPW_15161_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#7445])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-10/igt@intel_hwmon@hwmon-write.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-10/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#3718] / [Intel XE#6078])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
- shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#6078])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [PASS][10] -> [DMESG-FAIL][11] ([Intel XE#5545])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#3432]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2390] / [Intel XE#6974])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2320])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][19] -> [FAIL][20] ([Intel XE#7571])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2374] / [Intel XE#6127])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#3149] / [Intel XE#3321]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#301]) +2 other tests fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6703]) +6 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#656] / [Intel XE#7905])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2311]) +15 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#6312]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-5/igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7905])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7061]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4141]) +4 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +13 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#7915]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-3/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#4596] / [Intel XE#5854])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#7340])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1489])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2234] / [Intel XE#2850])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-8/igt@kms_psr@fbc-psr-no-drrs.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7636]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_evict@evict-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7140])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-8/igt@xe_evict@evict-small-multi-queue.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-basic:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7482])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-3/igt@xe_exec_balancer@many-execqueues-cm-virtual-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-multi-queue-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7136])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-rebind-imm.html
* igt@xe_exec_multi_queue@two-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6874]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-basic-smem.html
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#6874])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-4/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#6703]) +141 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset.html
* igt@xe_exec_system_allocator@twice-large-mmap:
- shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#6557] / [Intel XE#6703])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6964])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-8/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html
* igt@xe_page_reclaim@binds-full-pd:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7793])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-8/igt@xe_page_reclaim@binds-full-pd.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][56] -> [FAIL][57] ([Intel XE#6569]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-lnl: [FAIL][58] ([Intel XE#3718] / [Intel XE#7265]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1:
- shard-lnl: [FAIL][60] ([Intel XE#7265]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][62] ([Intel XE#7308]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [SKIP][64] ([Intel XE#7915]) -> [PASS][65] +1 other test pass
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-6/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [ABORT][66] -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-3/igt@xe_module_load@reload-no-display.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@xe_module_load@reload-no-display.html
- shard-lnl: [ABORT][68] -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-4/igt@xe_module_load@reload-no-display.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-lnl-8/igt@xe_module_load@reload-no-display.html
* igt@xe_vm@bind-no-array-conflict:
- shard-bmg: [SKIP][70] ([Intel XE#6703]) -> [PASS][71] +38 other tests pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_vm@bind-no-array-conflict.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@xe_vm@bind-no-array-conflict.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][72] ([Intel XE#2327]) -> [SKIP][73] ([Intel XE#6703])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: [SKIP][74] ([Intel XE#610] / [Intel XE#7387]) -> [SKIP][75] ([Intel XE#6703])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-bmg: [SKIP][76] ([Intel XE#1124]) -> [SKIP][77] ([Intel XE#6703])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-bmg: [SKIP][78] ([Intel XE#6703]) -> [SKIP][79] ([Intel XE#1124])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_bw@linear-tiling-2-displays-target-2160x1440p:
- shard-bmg: [SKIP][80] ([Intel XE#367]) -> [SKIP][81] ([Intel XE#6703])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][82] ([Intel XE#2887]) -> [SKIP][83] ([Intel XE#6703]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][84] ([Intel XE#6703]) -> [SKIP][85] ([Intel XE#2887])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][86] ([Intel XE#7084]) -> [SKIP][87] ([Intel XE#6703])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][88] ([Intel XE#2652]) -> [SKIP][89] ([Intel XE#6703])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-bmg: [SKIP][90] ([Intel XE#2252]) -> [SKIP][91] ([Intel XE#6703]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-bmg: [SKIP][92] ([Intel XE#6974]) -> [SKIP][93] ([Intel XE#6703])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: [SKIP][94] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][95] ([Intel XE#6703])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: [SKIP][96] ([Intel XE#2244]) -> [SKIP][97] ([Intel XE#6703])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@kms_dsc@dsc-with-bpc-formats.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][98] ([Intel XE#4141]) -> [SKIP][99] ([Intel XE#6703]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][100] ([Intel XE#2311]) -> [SKIP][101] ([Intel XE#6703]) +12 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][102] ([Intel XE#6703]) -> [SKIP][103] ([Intel XE#2311]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-shrfb-draw-render.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-blt:
- shard-bmg: [SKIP][104] ([Intel XE#6703]) -> [SKIP][105] ([Intel XE#7061])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-blt.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render:
- shard-bmg: [SKIP][106] ([Intel XE#7061]) -> [SKIP][107] ([Intel XE#6703]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-bmg: [SKIP][108] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][109] ([Intel XE#6703])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][110] ([Intel XE#2313]) -> [SKIP][111] ([Intel XE#6703]) +13 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-render.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][112] ([Intel XE#6703]) -> [SKIP][113] ([Intel XE#2313]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-10/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: [SKIP][114] ([Intel XE#6703]) -> [SKIP][115] ([Intel XE#6911] / [Intel XE#7466])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_joiner@basic-force-ultra-joiner.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][116] ([Intel XE#7591]) -> [SKIP][117] ([Intel XE#6703])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping:
- shard-bmg: [SKIP][118] ([Intel XE#7283]) -> [SKIP][119] ([Intel XE#6703])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: [SKIP][120] ([Intel XE#2505] / [Intel XE#7447]) -> [SKIP][121] ([Intel XE#6703])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@kms_pm_dc@deep-pkgc.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][122] ([Intel XE#6703]) -> [SKIP][123] ([Intel XE#1489])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][124] ([Intel XE#1489]) -> [SKIP][125] ([Intel XE#6703])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-dpms:
- shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#2234] / [Intel XE#2850])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_psr@fbc-psr-dpms.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-3/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-bmg: [SKIP][128] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][129] ([Intel XE#6703]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@kms_psr@psr-cursor-plane-move.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: [SKIP][130] ([Intel XE#2413]) -> [SKIP][131] ([Intel XE#6703])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][132] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][133] ([Intel XE#1729] / [Intel XE#7424])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: [SKIP][134] ([Intel XE#7636]) -> [SKIP][135] ([Intel XE#6703]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@xe_eudebug@basic-exec-queues.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery:
- shard-bmg: [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#7636]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
- shard-bmg: [SKIP][138] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][139] ([Intel XE#6703]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-bmg: [SKIP][140] ([Intel XE#6703]) -> [SKIP][141] ([Intel XE#2322] / [Intel XE#7372])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-4/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-prefetch:
- shard-bmg: [SKIP][142] ([Intel XE#7136]) -> [SKIP][143] ([Intel XE#6703])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-prefetch.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch:
- shard-bmg: [SKIP][144] ([Intel XE#6703]) -> [SKIP][145] ([Intel XE#7136])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic:
- shard-bmg: [SKIP][146] ([Intel XE#6874]) -> [SKIP][147] ([Intel XE#6703]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic.html
* igt@xe_exec_multi_queue@max-queues-basic:
- shard-bmg: [SKIP][148] ([Intel XE#6703]) -> [SKIP][149] ([Intel XE#6874]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-basic.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-8/igt@xe_exec_multi_queue@max-queues-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind:
- shard-bmg: [SKIP][150] ([Intel XE#7138]) -> [SKIP][151] ([Intel XE#6703]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race:
- shard-bmg: [SKIP][152] ([Intel XE#6703]) -> [SKIP][153] ([Intel XE#7138]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race.html
* igt@xe_pat@l2-flush-opt-svm-pat-restrict:
- shard-bmg: [SKIP][154] ([Intel XE#7590]) -> [SKIP][155] ([Intel XE#6703])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-2/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: [SKIP][156] ([Intel XE#6703]) -> [SKIP][157] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_pm@d3hot-i2c.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-4/igt@xe_pm@d3hot-i2c.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: [SKIP][158] ([Intel XE#6703]) -> [SKIP][159] ([Intel XE#944])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_query@multigpu-query-cs-cycles.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/shard-bmg-5/igt@xe_query@multigpu-query-cs-cycles.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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[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#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
[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#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8904 -> IGTPW_15161
IGTPW_15161: bd1066dd392872782e4652faf036a50254a8851b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8904: 07cadbb0bf25b18ac37467c4505f87eb50d4e435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4: b83102e9c06357b09f2cfbe944269786cb6985c4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15161/index.html
[-- Attachment #2: Type: text/html, Size: 50344 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/amdgpu/amd_replay: Add Replay Rate Control test
2026-05-12 7:59 [PATCH i-g-t 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu
` (4 preceding siblings ...)
2026-05-13 1:24 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-05-13 5:55 ` Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-13 5:55 UTC (permalink / raw)
To: Ray Wu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 138443 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_replay: Add Replay Rate Control test
URL : https://patchwork.freedesktop.org/series/166390/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8904_full -> IGTPW_15161_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15161_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15161_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_15161/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_15161_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-18/igt@kms_flip@flip-vs-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-14/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-dg1: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-14/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][4] ([i915#16011]) -> [SKIP][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_hdr@brightness-with-hdr@pipe-a-dp-3-xrgb2101010}:
- shard-dg2: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-10/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-3-xrgb2101010.html
Known issues
------------
Here are the changes found in IGTPW_15161_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#15678])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@drm_buddy@drm_buddy.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#3936])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@gem_busy@semaphore.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-6/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-10/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][14] ([i915#1099]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-snb7/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#5882]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][16] ([i915#13390])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk4/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#4812])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-16/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#4525])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#4525])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#4525]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#6334]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#6344])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-13/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3711])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-cpu-read-active:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-read-active.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +5 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@gem_exec_reloc@basic-range.html
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#14544] / [i915#3281])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][32] ([i915#13196] / [i915#13356]) +1 other test incomplete
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk2/igt@gem_exec_suspend@basic-s3.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-dg2: [PASS][33] -> [ABORT][34] ([i915#15131]) +1 other test abort
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-3/igt@gem_exec_suspend@basic-s3-devices.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-10/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4860]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4860]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#2190])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-10/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][39] ([i915#2190])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk9/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613] / [i915#7582])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613] / [i915#7582])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-10/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-3/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#14544] / [i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-4/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][47] ([i915#4613]) +7 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk2/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap@basic:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@gem_mmap@basic.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-3/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3282])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-6/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3282]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][52] ([i915#14702] / [i915#2658])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#13398])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-1.html
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-7/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4885])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-7/igt@gem_tiled_blits@basic.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#14544] / [i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#3297]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3297]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#2856])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-10/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#2527] / [i915#2856])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#2856])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-5/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#2527]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#14118])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_module_load@fault-injection:
- shard-dg2: NOTRUN -> [ABORT][70] ([i915#15342] / [i915#15481])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-3/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-dg2: NOTRUN -> [ABORT][71] ([i915#15481])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-3/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-tglu: NOTRUN -> [ABORT][72] ([i915#15342]) +1 other test abort
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-glk: NOTRUN -> [ABORT][73] ([i915#15342]) +1 other test abort
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk6/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-dg2: NOTRUN -> [DMESG-WARN][74] ([i915#15342])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-3/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][75] ([i915#15479]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][76] -> [INCOMPLETE][77] ([i915#13356] / [i915#13820]) +1 other test incomplete
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#6590]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-3/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][79] -> [FAIL][80] ([i915#12964]) +1 other test fail
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#14498])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8437])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#6245])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][84] ([i915#12061] / [i915#15560])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: NOTRUN -> [DMESG-FAIL][85] ([i915#12061]) +1 other test dmesg-fail
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@i915_selftest@live@workarounds.html
- shard-mtlp: NOTRUN -> [DMESG-FAIL][86] ([i915#12061])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@debugfs-reader:
- shard-glk11: NOTRUN -> [INCOMPLETE][87] ([i915#4817])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk11/igt@i915_suspend@debugfs-reader.html
* igt@kms_atomic_interruptible@legacy-dpms:
- shard-dg1: [PASS][88] -> [DMESG-WARN][89] ([i915#4423])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-17/igt@kms_atomic_interruptible@legacy-dpms.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-15/igt@kms_atomic_interruptible@legacy-dpms.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [PASS][90] -> [FAIL][91] ([i915#15662]) +1 other test fail
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#5286]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#5286]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][94] +13 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#5286]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][96] -> [FAIL][97] ([i915#15733] / [i915#5138])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3638]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#3828])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#14544] / [i915#3828])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#3828])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#3828])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-19/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#3828])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#4538]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5190]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#14544]) +5 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#10307] / [i915#6095]) +101 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#12313]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6095]) +19 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#12313]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#12313]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#12313] / [i915#14544])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#6095]) +186 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/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-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544] / [i915#6095]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#12805])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#6095]) +64 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][119] ([i915#14694] / [i915#15582]) +1 other test incomplete
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [PASS][120] -> [INCOMPLETE][121] ([i915#15582])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][122] ([i915#15582])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#6095]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#6095]) +69 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#6095]) +29 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#14098] / [i915#6095]) +44 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#11151] / [i915#7828]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-glk10: NOTRUN -> [SKIP][128] +186 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-14/igt@kms_chamelium_frames@dp-crc-single.html
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +6 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-4/igt@kms_chamelium_frames@dp-crc-single.html
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-2/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#14544] / [i915#7828])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#14544] / [i915#15865])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@content-type-change:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#15865]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#15330] / [i915#3299])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#15330] / [i915#3116])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#15330])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#15330])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-10/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#15330])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#15865])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_content_protection@legacy-hdcp14.html
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#15865]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_content_protection@legacy-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#15865])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-17/igt@kms_content_protection@legacy-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#15865]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-5/igt@kms_content_protection@legacy-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#15865])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-1/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: NOTRUN -> [FAIL][147] ([i915#13566]) +1 other test fail
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#13049])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: NOTRUN -> [FAIL][149] ([i915#13566]) +2 other tests fail
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#13049]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#13049] / [i915#14544])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#8814])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [PASS][153] -> [FAIL][154] ([i915#13566])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
- shard-tglu: [PASS][155] -> [FAIL][156] ([i915#13566]) +1 other test fail
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#3555]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3555]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#13049])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#13049])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#13046] / [i915#5354])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#4213])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#4103]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#9809])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#13691])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#13749])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-9/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3840])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3840] / [i915#9053])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#4854])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#9337])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#658])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#9934]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-5/igt@kms_flip@2x-blocking-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3637] / [i915#9934]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#3637] / [i915#9934]) +5 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#9934]) +7 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#9934])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][179] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][180] ([i915#12314] / [i915#12745])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#14544] / [i915#9934])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#9934]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-19/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3637] / [i915#9934]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
- shard-rkl: [PASS][184] -> [FAIL][185] ([i915#10826]) +1 other test fail
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][186] ([i915#13027]) +1 other test fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-4/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][187] ([i915#12745] / [i915#4839])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk10/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][188] ([i915#12745])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#15643]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#15643]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#15643]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#15643]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#15104] / [i915#15990])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#15104] / [i915#15990])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#14544] / [i915#1825]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#15991] / [i915#1825]) +10 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#15990] / [i915#8708]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][198] -> [INCOMPLETE][199] ([i915#10056])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][200] ([i915#10056])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk8/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#15989]) +6 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: [PASS][202] -> [SKIP][203] ([i915#15989]) +13 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-glk: [PASS][204] -> [SKIP][205] +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#15989]) +15 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][207] +55 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#15991]) +17 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-farfromfence-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#15989]) +17 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary:
- shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#15989]) +10 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy:
- shard-dg2: [PASS][211] -> [SKIP][212] ([i915#15989]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][213] ([i915#16056])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk11/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#5439])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#5439])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-5/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#15104] / [i915#15990])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#15102]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#15102] / [i915#3458]) +4 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#15102] / [i915#3023]) +14 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#1825]) +31 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#15102] / [i915#3458])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#15102]) +20 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#15990]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#15990]) +7 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#15102]) +20 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#15990]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][227] +16 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#15991]) +16 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][229] +46 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#15102]) +11 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#15989]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#15989]) +17 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#15102]) +32 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#15991] / [i915#5354]) +12 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#15990] / [i915#8708]) +4 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#15990] / [i915#8708])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#15102]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render:
- shard-glk11: NOTRUN -> [SKIP][238] +142 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk11/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][239] +88 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-9/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][240] +59 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-snb5/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#13030])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#16012]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#16012]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#16012]) +5 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/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-4-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#16011]) +7 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-18/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#16012] / [i915#3555] / [i915#8228])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-dg2: [PASS][247] -> [SKIP][248] ([i915#16011] / [i915#3555] / [i915#8228])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-10/igt@kms_hdr@static-swap.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#16011]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#16011] / [i915#3555] / [i915#8228])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#16011] / [i915#3555] / [i915#8228])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#16011]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#16011]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#16011]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#15460])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-9/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#15459])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#15458])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@kms_joiner@basic-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#15458])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#15638] / [i915#15722])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#15638] / [i915#15722])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#6301])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][263] +6 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15709])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#15709]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#15608]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#15709]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#15709]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#15709])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-17/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#15608]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15709]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-3/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#13026])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][273] ([i915#12178])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][274] ([i915#7862]) +1 other test fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk11: NOTRUN -> [FAIL][275] ([i915#10647] / [i915#12169])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/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][276] ([i915#10647]) +1 other test fail
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk10: NOTRUN -> [FAIL][277] ([i915#10647] / [i915#12177])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][278] ([i915#10647]) +1 other test fail
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#13958])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#13958])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-y.html
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#13958] / [i915#14544])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#13958])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-y.html
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#13958])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-19/igt@kms_plane_multiple@2x-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#13958])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-2/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#14259])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_plane_multiple@tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#14259])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-12/igt@kms_plane_multiple@tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#14259])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-10/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#14259])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-8/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#15887] / [i915#9809])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [PASS][290] -> [SKIP][291] ([i915#6953])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#15329]) +3 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#15329]) +4 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#15329]) +4 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15329]) +4 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#3828])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-10/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#9340])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#4077]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-15/igt@kms_pm_rpm@cursor.html
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#4077]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][300] -> [SKIP][301] ([i915#15073])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][302] -> [SKIP][303] ([i915#15073]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [PASS][304] -> [SKIP][305] ([i915#15073])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#15073])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][307] -> [INCOMPLETE][308] ([i915#14419])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#6524])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#6524]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-10/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#6524] / [i915#6805])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-3/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#11520]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#11520]) +7 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#12316])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][315] ([i915#11520]) +15 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][316] ([i915#11520]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#11520]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#11520] / [i915#14544]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk11: NOTRUN -> [SKIP][319] ([i915#11520]) +3 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#11520]) +6 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][321] ([i915#11520])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-snb6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#11520])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#9688]) +11 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-7/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-pr-sprite-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][325] +758 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +19 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#1072] / [i915#9732]) +5 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-19/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#1072] / [i915#9732]) +10 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#9732]) +19 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#9732]) +10 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#15949])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#15949])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][333] ([i915#15492])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk8/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][334] ([i915#5289])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#5289]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#3555] / [i915#8809] / [i915#8823])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [PASS][337] -> [ABORT][338] ([i915#15132]) +1 other test abort
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-1/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#15243] / [i915#3555]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#14544] / [i915#9906])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#15243] / [i915#3555])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#11920])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@kms_vrr@lobf.html
* igt@perf_pmu@rc6-suspend:
- shard-rkl: [PASS][343] -> [INCOMPLETE][344] ([i915#13520])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@perf_pmu@rc6-suspend.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#3291] / [i915#3708])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#3708])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-mtlp: NOTRUN -> [FAIL][347] ([i915#12910]) +10 other tests fail
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-4/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#9917])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#9917])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-tglu-1: NOTRUN -> [FAIL][350] ([i915#12910])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#9917])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-19/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_eio@in-flight-suspend:
- shard-dg1: [DMESG-WARN][352] ([i915#4391] / [i915#4423]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-17/igt@gem_eio@in-flight-suspend.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-15/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_endless@dispatch@ccs0:
- shard-dg2: [TIMEOUT][354] ([i915#3778] / [i915#7016]) -> [PASS][355] +1 other test pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-5/igt@gem_exec_endless@dispatch@ccs0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-8/igt@gem_exec_endless@dispatch@ccs0.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-dg1: [DMESG-WARN][356] ([i915#4423]) -> [PASS][357] +2 other tests pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-15/igt@gem_exec_suspend@basic-s3-devices.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-17/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [INCOMPLETE][358] ([i915#13356]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [WARN][360] ([i915#13790] / [i915#2681]) -> [PASS][361] +1 other test pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [INCOMPLETE][362] ([i915#13356] / [i915#15172]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-glk1/igt@i915_pm_rpm@system-suspend-execbuf.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk3/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [INCOMPLETE][364] ([i915#4817]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [FAIL][366] ([i915#13566]) -> [PASS][367] +1 other test pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][368] ([i915#13566]) -> [PASS][369] +3 other tests pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-tglu-9/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-snb: [FAIL][370] ([i915#14600]) -> [PASS][371] +1 other test pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2: [SKIP][372] ([i915#15989]) -> [PASS][373] +5 other tests pass
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-pwrite:
- shard-rkl: [SKIP][374] ([i915#15989]) -> [PASS][375] +4 other tests pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-pwrite.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render:
- shard-glk: [SKIP][376] -> [PASS][377] +7 other tests pass
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-glk2/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk8/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-glk: [INCOMPLETE][378] ([i915#13026]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [SKIP][380] ([i915#6953] / [i915#9423]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][382] ([i915#15073]) -> [PASS][383] +3 other tests pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [SKIP][384] ([i915#15073]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][386] ([i915#15073]) -> [PASS][387] +1 other test pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_setmode@basic:
- shard-tglu: [FAIL][388] ([i915#15106]) -> [PASS][389] +2 other tests pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-tglu-4/igt@kms_setmode@basic.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-tglu-9/igt@kms_setmode@basic.html
- shard-mtlp: [FAIL][390] ([i915#15106]) -> [PASS][391] +1 other test pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-mtlp-3/igt@kms_setmode@basic.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-mtlp-6/igt@kms_setmode@basic.html
* igt@perf_pmu@rc6-suspend:
- shard-dg2: [ABORT][392] ([i915#15131]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-10/igt@perf_pmu@rc6-suspend.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-6/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-dg2: [FAIL][394] ([i915#4349]) -> [PASS][395] +5 other tests pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-8/igt@perf_pmu@render-node-busy-idle@vcs1.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@perf_pmu@render-node-busy-idle@vcs1.html
- shard-dg1: [FAIL][396] ([i915#4349]) -> [PASS][397] +3 other tests pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vcs1.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-15/igt@perf_pmu@render-node-busy-idle@vcs1.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][398] ([i915#8411]) -> [SKIP][399] ([i915#14544] / [i915#8411])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: [SKIP][400] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][401] ([i915#3555] / [i915#9323]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: [SKIP][402] ([i915#9323]) -> [SKIP][403] ([i915#14544] / [i915#9323]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@gem_ccs@suspend-resume.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][404] ([i915#14544] / [i915#6335]) -> [SKIP][405] ([i915#6335])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: [SKIP][406] ([i915#4525]) -> [SKIP][407] ([i915#14544] / [i915#4525])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@gem_exec_balancer@parallel-contexts.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: [SKIP][408] ([i915#14544] / [i915#3281]) -> [SKIP][409] ([i915#3281]) +9 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-rkl: [SKIP][410] ([i915#3281]) -> [SKIP][411] ([i915#14544] / [i915#3281]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: [SKIP][412] ([i915#4613]) -> [SKIP][413] ([i915#14544] / [i915#4613])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@gem_lmem_swapping@heavy-random.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][414] ([i915#14544] / [i915#3282]) -> [SKIP][415] ([i915#3282]) +3 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: [SKIP][416] ([i915#3282]) -> [SKIP][417] ([i915#14544] / [i915#3282]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-2/igt@gem_readwrite@beyond-eob.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@gem_readwrite@beyond-eob.html
* igt@gem_softpin@evict-snoop:
- shard-rkl: [SKIP][418] ([i915#14544]) -> [SKIP][419] +42 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@gem_softpin@evict-snoop.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: [SKIP][420] ([i915#14544] / [i915#3297]) -> [SKIP][421] ([i915#3297])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: [SKIP][422] ([i915#14544] / [i915#2527]) -> [SKIP][423] ([i915#2527]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][424] ([i915#8399]) -> [SKIP][425] ([i915#14544] / [i915#8399])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][426] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][427] ([i915#1769] / [i915#3555])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#5286]) -> [SKIP][429] ([i915#5286]) +4 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-rkl: [SKIP][430] ([i915#5286]) -> [SKIP][431] ([i915#14544] / [i915#5286]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: [SKIP][432] ([i915#4538] / [i915#5286]) -> [SKIP][433] ([i915#4423] / [i915#4538] / [i915#5286])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][434] ([i915#3828]) -> [SKIP][435] ([i915#14544] / [i915#3828])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#3638]) -> [SKIP][437] ([i915#3638])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs:
- shard-rkl: [SKIP][438] ([i915#14098] / [i915#6095]) -> [SKIP][439] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-8/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: [SKIP][440] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][441] ([i915#14098] / [i915#6095]) +16 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#6095]) -> [SKIP][443] ([i915#6095]) +7 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][444] ([i915#11151] / [i915#7828]) -> [SKIP][445] ([i915#11151] / [i915#14544] / [i915#7828])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][446] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][447] ([i915#11151] / [i915#7828]) +6 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#15865]) -> [SKIP][449] ([i915#15865])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_content_protection@content-type-change.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@uevent:
- shard-rkl: [SKIP][450] ([i915#15865]) -> [SKIP][451] ([i915#14544] / [i915#15865]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-3/igt@kms_content_protection@uevent.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: [SKIP][452] ([i915#13049] / [i915#3359]) -> [SKIP][453] ([i915#13049])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][454] ([i915#4103]) -> [SKIP][455] ([i915#14544] / [i915#4103])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: [SKIP][456] ([i915#14544] / [i915#4103]) -> [SKIP][457] ([i915#4103])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][458] ([i915#3555] / [i915#3804]) -> [SKIP][459] ([i915#14544] / [i915#3555] / [i915#3804])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][460] ([i915#3804]) -> [SKIP][461] ([i915#14544] / [i915#3804])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][462] ([i915#13707] / [i915#14544]) -> [SKIP][463] ([i915#13707])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#3840] / [i915#9053]) -> [SKIP][465] ([i915#3840] / [i915#9053])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][466] ([i915#3955]) -> [SKIP][467] ([i915#14544] / [i915#3955])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#9934]) -> [SKIP][469] ([i915#9934]) +2 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-rkl: [SKIP][470] ([i915#9934]) -> [SKIP][471] ([i915#14544] / [i915#9934]) +3 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: [SKIP][472] ([i915#15643]) -> [SKIP][473] ([i915#14544] / [i915#15643])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][474] ([i915#1825]) -> [SKIP][475] ([i915#14544] / [i915#1825]) +10 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#1825]) -> [SKIP][477] ([i915#1825]) +17 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][478] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][479] ([i915#15102] / [i915#3458]) +3 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][480] ([i915#15102] / [i915#3458]) -> [SKIP][481] ([i915#10433] / [i915#15102] / [i915#3458])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg1: [SKIP][482] -> [SKIP][483] ([i915#4423])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#15102]) -> [SKIP][485] ([i915#15102]) +17 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-msflip-blt:
- shard-dg1: [SKIP][486] ([i915#15989] / [i915#4423]) -> [SKIP][487] ([i915#15989])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-19/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-msflip-blt.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#9766]) -> [SKIP][489] ([i915#9766])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-rkl: [SKIP][490] ([i915#15102] / [i915#3023]) -> [SKIP][491] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-rte.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-rkl: [SKIP][492] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][493] ([i915#15102] / [i915#3023]) +6 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][494] ([i915#15102]) -> [SKIP][495] ([i915#14544] / [i915#15102]) +6 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-rkl: [SKIP][496] -> [SKIP][497] ([i915#14544]) +19 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][498] ([i915#14544] / [i915#15458]) -> [SKIP][499] ([i915#15458])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][500] ([i915#15458]) -> [SKIP][501] ([i915#14544] / [i915#15458])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][502] ([i915#14544] / [i915#6301]) -> [SKIP][503] ([i915#6301])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#15709]) -> [SKIP][505] ([i915#15709]) +3 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][506] ([i915#3555]) -> [SKIP][507] ([i915#14544] / [i915#3555]) +1 other test skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#15329]) -> [SKIP][509] ([i915#15329]) +3 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#15948]) -> [SKIP][511] ([i915#15948])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][512] ([i915#15948]) -> [SKIP][513] ([i915#14544] / [i915#15948]) +1 other test skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][514] ([i915#14544] / [i915#9340]) -> [SKIP][515] ([i915#9340])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: [SKIP][516] ([i915#3828]) -> [SKIP][517] ([i915#9340])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][518] ([i915#11520]) -> [SKIP][519] ([i915#11520] / [i915#14544]) +1 other test skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][520] ([i915#11520] / [i915#14544]) -> [SKIP][521] ([i915#11520]) +2 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-rkl: [SKIP][522] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][523] ([i915#1072] / [i915#9732]) +9 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-2/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-rkl: [SKIP][524] ([i915#1072] / [i915#9732]) -> [SKIP][525] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-8/igt@kms_psr@pr-primary-mmap-cpu.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][526] ([i915#12755] / [i915#15867]) -> [SKIP][527] ([i915#15867])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: [SKIP][528] ([i915#15867]) -> [SKIP][529] ([i915#12755] / [i915#15867])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: [SKIP][530] ([i915#14544] / [i915#3555]) -> [SKIP][531] ([i915#3555])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: [SKIP][532] ([i915#14544] / [i915#8623]) -> [SKIP][533] ([i915#8623])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: [SKIP][534] ([i915#14544] / [i915#9906]) -> [SKIP][535] ([i915#9906]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [INCOMPLETE][536] ([i915#13356]) -> [INCOMPLETE][537] ([i915#13356] / [i915#14242])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-glk8/igt@perf_pmu@rc6-suspend.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-glk9/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][539] ([i915#3291] / [i915#3708])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@prime_vgem@basic-read.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-3/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#3708]) -> [SKIP][541] ([i915#3708])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-6/igt@prime_vgem@fence-write-hang.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-8/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][542] ([i915#9917]) -> [SKIP][543] ([i915#14544] / [i915#9917])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[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#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[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#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[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#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[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#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[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#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[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#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887
[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#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#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#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[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#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[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#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[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#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[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#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_8904 -> IGTPW_15161
CI-20190529: 20190529
CI_DRM_18473: b83102e9c06357b09f2cfbe944269786cb6985c4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15161: bd1066dd392872782e4652faf036a50254a8851b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8904: 07cadbb0bf25b18ac37467c4505f87eb50d4e435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15161/index.html
[-- Attachment #2: Type: text/html, Size: 184974 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-05-13 5:55 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-12 7:59 [PATCH i-g-t 0/2] tests/amdgpu/amd_replay: Add Replay Rate Control test Ray Wu
2026-05-12 7:59 ` [PATCH i-g-t 1/2] tests/amdgpu/amd_replay: fix operator precedence and typos Ray Wu
2026-05-12 15:31 ` Alex Hung
2026-05-12 7:59 ` [PATCH i-g-t 2/2] tests/amdgpu/amd_replay: add Replay Rate Control IGT test Ray Wu
2026-05-12 15:40 ` Alex Hung
2026-05-12 13:31 ` ✓ i915.CI.BAT: success for tests/amdgpu/amd_replay: Add Replay Rate Control test Patchwork
2026-05-12 14:32 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-13 1:24 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-13 5:55 ` ✗ 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