* [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
@ 2025-02-04 18:27 Jeevan B
0 siblings, 0 replies; 11+ messages in thread
From: Jeevan B @ 2025-02-04 18:27 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Jeevan B
Added new lib changes to find non_joiner_mode and updated test.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Jeevan B (3):
lib/igt_kms: Add lib changes to check joiner is enabled
lib/igt_kms: Add support to check joiner mode limit
tests/intel/kms_joiner: Add a new test to validate non-joiner mode
lib/igt_kms.c | 66 ++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 3 ++
tests/intel/kms_joiner.c | 54 ++++++++++++++++++++++++++++++++
3 files changed, 123 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
@ 2025-02-10 18:36 Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe Jeevan B
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Jeevan B @ 2025-02-10 18:36 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Jeevan B
Added new lib changes to find non_joiner_mode and updated test.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Jeevan B (3):
lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe
lib/igt_kms: Add support to check joiner mode limit
tests/intel/kms_joiner: Add a new test to validate non-joiner mode
lib/igt_kms.c | 76 ++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 3 ++
tests/intel/kms_joiner.c | 58 ++++++++++++++++++++++++++++++
3 files changed, 137 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe
2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
@ 2025-02-10 18:36 ` Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit Jeevan B
` (5 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Jeevan B @ 2025-02-10 18:36 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Jeevan B
Added a library change to check if joiner is enabled or not for the
given pipe.
v2: Update function name and logic to check joiner enabled for
exact pipe.
v3: Update commit message and rename function name and variable
name.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
lib/igt_kms.c | 31 +++++++++++++++++++++++++++++++
lib/igt_kms.h | 1 +
2 files changed, 32 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 90f44b4d3..99d939fc5 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6406,6 +6406,37 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
return found;
}
+/**
+ * igt_is_joiner_enabled_for_pipe:
+ * @drmfd: A drm file descriptor
+ * @pipe: display pipe
+ *
+ * Returns: True if joiner is enabled, false otherwise.
+ */
+bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe)
+{
+ char buf[16384], master_str[64], slave_str[64];
+ int dir, res;
+ int pipe_mask = 0b11;
+
+
+ dir = igt_debugfs_dir(drmfd);
+ igt_assert(dir >= 0);
+
+ res = igt_debugfs_simple_read(dir, "i915_display_info",
+ buf, sizeof(buf));
+ close(dir);
+ igt_assert(res >= 0);
+ pipe_mask <<= pipe;
+
+ snprintf(master_str, sizeof(master_str),
+ "Linked to 0x%X pipes as a master", pipe_mask);
+ snprintf(slave_str, sizeof(slave_str),
+ "Linked to 0x%X pipes as a slave", pipe_mask);
+
+ return (strstr(buf, master_str) && strstr(buf, slave_str));
+}
+
/**
* igt_ultrajoiner_possible:
* @mode: libdrm mode
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 8810123fb..1cfacf87d 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1245,6 +1245,7 @@ int igt_get_max_dotclock(int fd);
bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock);
bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
int max_dotclock, drmModeModeInfo *mode);
+bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe);
bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock);
bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector,
int max_dotclock, drmModeModeInfo *mode);
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit
2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe Jeevan B
@ 2025-02-10 18:36 ` Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
` (4 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Jeevan B @ 2025-02-10 18:36 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Jeevan B
Added library changes to find the highest non-joiner mode.
This helps to get the mode that does not require a big joiner.
v2: Update commit message, create a new library function
to get max hdisplay and fix condtion for selecting mode.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
lib/igt_kms.c | 45 +++++++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 2 ++
2 files changed, 47 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 99d939fc5..d5993fc83 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6406,6 +6406,51 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
return found;
}
+/**
+ * get_max_hdisplay:
+ * @drm_fd: drm file descriptor
+ *
+ * Returns: The maximum hdisplay supported per pipe.
+ */
+static int get_max_hdisplay(int drm_fd)
+{
+ int dev_id = intel_get_drm_devid(drm_fd);
+
+ return (intel_display_ver(dev_id) >= 30) ? HDISPLAY_6K_PER_PIPE :
+ HDISPLAY_5K_PER_PIPE;
+}
+
+/**
+ * non_joiner_mode_found:
+ * @drm_fd: drm file descriptor
+ * @connector: libdrm connector
+ * @max_dot_clock: max dot clock frequency
+ * @mode: libdrm mode to be filled
+ *
+ * Finds the highest possible display mode that does
+ * not require a big joiner.
+ *
+ * Returns: True if a valid non-joiner mode is found,
+ * false otherwise.
+ */
+bool non_joiner_mode_found(int drm_fd, drmModeConnector *connector,
+ int max_dotclock, drmModeModeInfo *mode)
+{
+ int max_hdisplay = get_max_hdisplay(drm_fd);
+
+ for (int i = 0; i < connector->count_modes; i++) {
+ drmModeModeInfo *current_mode = &connector->modes[i];
+
+ if (current_mode->hdisplay == max_hdisplay &&
+ current_mode->clock < max_dotclock) {
+ *mode = *current_mode;
+ return true;
+ }
+ }
+
+ return false;
+}
+
/**
* igt_is_joiner_enabled_for_pipe:
* @drmfd: A drm file descriptor
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 1cfacf87d..bfb89b76a 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1245,6 +1245,8 @@ int igt_get_max_dotclock(int fd);
bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock);
bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
int max_dotclock, drmModeModeInfo *mode);
+bool non_joiner_mode_found(int drm_fd, drmModeConnector *connector,
+ int max_dotclock, drmModeModeInfo *mode);
bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe);
bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock);
bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector,
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit Jeevan B
@ 2025-02-10 18:36 ` Jeevan B
2025-02-10 23:33 ` ✓ i915.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6) Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Jeevan B @ 2025-02-10 18:36 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Jeevan B
We need to ensure that the system does not enable a joiner for modes
that do not require it. This test runs on all pipes and validates
that the highest available resolution and refresh rate within the
max dot clock limit is selected. The test then forces a modeset and
flip on the given pipe and checks the status using the joiner check.
If the joiner is mistakenly enabled for a non-joiner mode, the test
should fail.
v2: Fix nonjoiner_mode_found to find the required case.
Remove clk sort and minor fixes.
v3: Rename nonjoiner to non_joiner and minor modifications.
v4: Add joiner check.
v5: Rename test name and function name, Update test description,
update non_joiner_mode_found logic.
v6: Update commit message and rename test, function name.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_joiner.c | 58 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 58 insertions(+)
diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 086cfeb71..7b8cc87a7 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -74,6 +74,10 @@
*
* SUBTEST: switch-modeset-ultra-joiner-big-joiner
* Description: Verify switching between ultra joiner and big joiner modeset.
+ *
+ * SUBTEST: basic-max-non-joiner
+ * Description: Validate non-joiner mode functionality by enabling corner-case display modes
+ * that vary across different platforms.
*/
IGT_TEST_DESCRIPTION("Test joiner / force joiner");
@@ -85,6 +89,7 @@ typedef struct {
int ultra_joiner_output_count;
int non_big_joiner_output_count;
int non_ultra_joiner_output_count;
+ int non_joiner_output_count;
int mixed_output_count;
int output_count;
int n_pipes;
@@ -94,6 +99,7 @@ typedef struct {
igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
igt_output_t *mixed_output[IGT_MAX_PIPES];
+ igt_output_t *non_joiner_output[IGT_MAX_PIPES];
enum pipe pipe_seq[IGT_MAX_PIPES];
igt_display_t display;
} data_t;
@@ -491,6 +497,42 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
}
}
+static void test_basic_max_non_joiner(data_t *data)
+{
+ int count;
+ enum pipe pipe;
+ igt_output_t **outputs, *output;
+ igt_fb_t fb;
+ igt_plane_t *primary;
+ drmModeModeInfo *mode;
+
+ count = data->non_joiner_output_count;
+ outputs = data->non_joiner_output;
+ igt_display_reset(&data->display);
+
+ for (int i = 0; i < count; i++) {
+ output = outputs[i];
+ mode = igt_output_get_mode(output);
+ for (pipe = 0; pipe < data->n_pipes - 1; pipe++) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ igt_output_set_pipe(output, pipe);
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ igt_create_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &fb);
+ igt_plane_set_fb(primary, &fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_assert_f(!igt_is_joiner_enabled_for_pipe(data->drm_fd, pipe),
+ "Joiner enabled on pipe %c", 'A' + pipe);
+
+ igt_display_reset(&data->display);
+ igt_plane_set_fb(primary, NULL);
+ igt_remove_fb(data->drm_fd, &fb);
+ }
+ }
+ }
+}
+
igt_main
{
bool ultra_joiner_supported, is_dgfx;
@@ -505,6 +547,7 @@ igt_main
data.ultra_joiner_output_count = 0;
data.non_big_joiner_output_count = 0;
data.non_ultra_joiner_output_count = 0;
+ data.non_joiner_output_count = 0;
data.mixed_output_count = 0;
data.output_count = 0;
j = 0;
@@ -523,6 +566,7 @@ igt_main
for_each_connected_output(&data.display, output) {
bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
+ bool non_joiner_found = false;
drmModeConnector *connector = output->config.connector;
/*
@@ -533,6 +577,7 @@ igt_main
*/
bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
+ non_joiner_found = non_joiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
force_joiner_supported = true;
@@ -548,6 +593,9 @@ igt_main
else if (force_joiner_supported)
data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
+ if (non_joiner_found)
+ data.non_joiner_output[data.non_joiner_output_count++] = output;
+
data.output_count++;
}
if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
@@ -713,6 +761,16 @@ igt_main
}
}
+ igt_describe("Verify the basic modeset on the maximum non-joiner mode across "
+ "all pipes");
+ igt_subtest_with_dynamic("basic-max-non-joiner") {
+ igt_require_f(data.n_pipes >= 1,
+ "At least one pipe is required.\n");
+ igt_require_f(data.non_joiner_output_count > 0,
+ "No suitable non-joiner mode found\n");
+ test_basic_max_non_joiner(&data);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6)
2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
` (2 preceding siblings ...)
2025-02-10 18:36 ` [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
@ 2025-02-10 23:33 ` Patchwork
2025-02-10 23:48 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-10 23:33 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3582 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6)
URL : https://patchwork.freedesktop.org/series/143972/
State : success
== Summary ==
CI Bug Log - changes from IGT_8228 -> IGTPW_12571
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/index.html
Participating hosts (43 -> 43)
------------------------------
Additional (1): fi-pnv-d510
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12571 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#13494])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-mtlp-9/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- bat-twl-2: NOTRUN -> [ABORT][3] ([i915#12919] / [i915#13503])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gem_migrate:
- bat-arlh-2: [PASS][4] -> [INCOMPLETE][5] ([i915#12445]) +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-arlh-2/igt@i915_selftest@live@gem_migrate.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/bat-arlh-2/igt@i915_selftest@live@gem_migrate.html
* igt@i915_selftest@live@gt_engines:
- bat-twl-2: NOTRUN -> [ABORT][6] ([i915#12919])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/bat-twl-2/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-arls-5/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/bat-arls-5/igt@i915_selftest@live@workarounds.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][9] +33 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8228 -> IGTPW_12571
CI-20190529: 20190529
CI_DRM_16103: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12571: 82ed111dc3fa1e348d0290f2404bd21a0838b950 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8228: 8228
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/index.html
[-- Attachment #2: Type: text/html, Size: 4497 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6)
2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
` (3 preceding siblings ...)
2025-02-10 23:33 ` ✓ i915.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6) Patchwork
@ 2025-02-10 23:48 ` Patchwork
2025-02-11 7:35 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-11 10:41 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-10 23:48 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1634 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6)
URL : https://patchwork.freedesktop.org/series/143972/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8228_BAT -> XEIGTPW_12571_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12571_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#3890]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[Intel XE#3890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3890
Build changes
-------------
* IGT: IGT_8228 -> IGTPW_12571
* Linux: xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 -> xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4
IGTPW_12571: 82ed111dc3fa1e348d0290f2404bd21a0838b950 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8228: 8228
xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77
xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4: 2fc58ab10139895686001c7e1ee247f15226abc4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/index.html
[-- Attachment #2: Type: text/html, Size: 2210 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6)
2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
` (4 preceding siblings ...)
2025-02-10 23:48 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-02-11 7:35 ` Patchwork
2025-02-11 10:41 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-11 7:35 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100293 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6)
URL : https://patchwork.freedesktop.org/series/143972/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8228_full -> IGTPW_12571_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12571_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12571_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_12571/index.html
Participating hosts (10 -> 11)
------------------------------
Additional (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12571_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_isolation@preservation-reset@vecs0:
- shard-mtlp: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-mtlp-1/igt@gem_ctx_isolation@preservation-reset@vecs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-7/igt@gem_ctx_isolation@preservation-reset@vecs0.html
* igt@gem_ctx_persistence@smoketest:
- shard-dg2: [PASS][3] -> [TIMEOUT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-10/igt@gem_ctx_persistence@smoketest.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-4/igt@gem_ctx_persistence@smoketest.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: [PASS][6] -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-snb4/igt@gem_tiled_swapping@non-threaded.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-snb4/igt@gem_tiled_swapping@non-threaded.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-glk: [PASS][8] -> [FAIL][9] +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-glk9/igt@kms_flip@plain-flip-ts-check-interruptible.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible.html
* {igt@kms_joiner@basic-max-non-joiner} (NEW):
- shard-tglu: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-5/igt@kms_joiner@basic-max-non-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-1/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-5/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][13]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-18/igt@kms_joiner@basic-max-non-joiner.html
* igt@perf_pmu@module-unload:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][14]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][15]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk6/igt@perf_pmu@rc6-suspend.html
New tests
---------
New tests have been introduced between IGT_8228_full and IGTPW_12571_full:
### New IGT tests (4) ###
* igt@gem_exec_schedule@fifo@vecs1:
- Statuses : 1 pass(s)
- Exec time: [0.20] s
* igt@gem_exec_schedule@preempt-engines@vecs1:
- Statuses : 1 pass(s)
- Exec time: [2.28] s
* igt@kms_atomic@plane-cursor-legacy@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_joiner@basic-max-non-joiner:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12571_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8411])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2-9: NOTRUN -> [SKIP][17] ([i915#8411])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][18] ([i915#11814] / [i915#11815] / [i915#9413])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8414]) +13 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414]) +14 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2-9: NOTRUN -> [SKIP][21] ([i915#8414]) +8 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8414]) +17 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-4/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#7697]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-5/igt@gem_basic@multigpu-create-close.html
- shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#9323])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#9323])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#9323])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][31] ([i915#9323])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-9/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#7697])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-5/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#7697])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#7697])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#7697])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#6335])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-4/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [ABORT][37] ([i915#13427])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_freq@sysfs:
- shard-dg2: NOTRUN -> [FAIL][38] ([i915#9561]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-4/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_isolation@nonpriv:
- shard-rkl: [PASS][39] -> [DMESG-WARN][40] ([i915#12964]) +31 other tests dmesg-warn
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-rkl-3/igt@gem_ctx_isolation@nonpriv.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@gem_ctx_isolation@nonpriv.html
* igt@gem_ctx_persistence@engines-persistence:
- shard-snb: NOTRUN -> [SKIP][41] ([i915#1099]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-snb4/igt@gem_ctx_persistence@engines-persistence.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#8555]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#8555])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#8555]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#5882]) +7 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#280])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#280])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#280])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg1: NOTRUN -> [ABORT][49] ([i915#7975])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-18/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-mtlp: [PASS][50] -> [ABORT][51] ([i915#13193]) +4 other tests abort
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-mtlp-1/igt@gem_eio@reset-stress.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-7/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#4771])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4771])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@gem_exec_balancer@bonded-semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4812]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4812]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4525]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@gem_exec_balancer@parallel-bb-first.html
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#4525]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-5/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][59] ([i915#11713])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-7/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][60] ([i915#6334]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk9/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_endless@dispatch@ccs0:
- shard-dg2: [PASS][61] -> [TIMEOUT][62] ([i915#3778] / [i915#7016]) +1 other test timeout
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-3/igt@gem_exec_endless@dispatch@ccs0.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-3/igt@gem_exec_endless@dispatch@ccs0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2-9: NOTRUN -> [SKIP][63] ([i915#3539])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3539] / [i915#4852]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@gem_exec_flush@basic-uc-ro-default.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3539] / [i915#4852])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2-9: NOTRUN -> [SKIP][66] ([i915#3539] / [i915#4852])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3281]) +13 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-dg2-9: NOTRUN -> [SKIP][68] ([i915#3281]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3281]) +9 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-wc-cpu-active:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3281]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-cpu-active.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3281]) +7 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_suspend@basic-s3-devices@smem:
- shard-mtlp: NOTRUN -> [ABORT][72] ([i915#13193]) +1 other test abort
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-4/igt@gem_exec_suspend@basic-s3-devices@smem.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][73] ([i915#7975]) +1 other test abort
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2-9: NOTRUN -> [SKIP][74] ([i915#4860])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4860]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4860]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4860]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][78] ([i915#2190])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#4613]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4613])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@verify:
- shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#4613]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][82] ([i915#4613]) +6 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk9/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#4613]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-9/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#8289])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-3/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4083]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@big-copy:
- shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#4077]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_mmap_gtt@big-copy.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4077]) +15 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4077]) +14 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-3/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#4083]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4083]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4083]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3282]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3282]) +8 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-1/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#3282]) +11 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu: NOTRUN -> [WARN][95] ([i915#2658])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite_snooped:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3282]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-18/igt@gem_pwrite_snooped.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: [PASS][97] -> [TIMEOUT][98] ([i915#12964])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#4270])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#13398])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#13398])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [TIMEOUT][102] ([i915#12917] / [i915#12964]) +3 other tests timeout
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4270])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-rkl: [PASS][104] -> [TIMEOUT][105] ([i915#12917] / [i915#12964])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-2.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2-9: NOTRUN -> [SKIP][106] ([i915#4270]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#4270])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][108] ([i915#5190] / [i915#8428]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#5190] / [i915#8428]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8428]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4079]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@gem_set_tiling_vs_gtt.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#4077]) +15 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4079]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4879])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#3297])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3282] / [i915#3297])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#3282] / [i915#3297])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#3297] / [i915#4880])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#3297] / [i915#4880])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3297])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3297]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: NOTRUN -> [SKIP][122] +10 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@gen3_render_tiledx_blits.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2-9: NOTRUN -> [SKIP][123] +6 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-single:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#2856]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-8/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-dg2-9: NOTRUN -> [SKIP][125] ([i915#2856])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#2527]) +6 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#2527]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#2856]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#2527] / [i915#2856]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-4/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#2527] / [i915#2856]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-dg2: ([PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152]) -> ([PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [DMESG-WARN][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175]) ([i915#13368])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-5/igt@i915_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-10/igt@i915_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-5/igt@i915_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-6/igt@i915_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-1/igt@i915_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-4/igt@i915_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-7/igt@i915_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-10/igt@i915_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-3/igt@i915_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-10/igt@i915_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-4/igt@i915_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-2/igt@i915_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-11/igt@i915_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-1/igt@i915_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-3/igt@i915_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-11/igt@i915_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-1/igt@i915_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-8/igt@i915_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-2/igt@i915_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-11/igt@i915_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-6/igt@i915_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-8/igt@i915_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-1/igt@i915_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-8/igt@i915_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@i915_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-1/igt@i915_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@i915_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-6/igt@i915_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-4/igt@i915_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-6/igt@i915_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-5/igt@i915_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-5/igt@i915_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-3/igt@i915_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@i915_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@i915_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-4/igt@i915_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@i915_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-3/igt@i915_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@i915_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@i915_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@i915_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@i915_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@i915_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@i915_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-8/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: NOTRUN -> [ABORT][176] ([i915#9820])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#6412])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-6/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8436])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#8399])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-5/igt@i915_pm_freq_api@freq-basic-api.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#8399])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#8399])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: NOTRUN -> [FAIL][182] ([i915#12942]) +1 other test fail
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#11681] / [i915#6621])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-1/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#11681] / [i915#6621])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#11681]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#11681]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#11681]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-1/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#7984])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@i915_power@sanity.html
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#7984])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@i915_power@sanity.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#5723])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live:
- shard-rkl: NOTRUN -> [DMESG-FAIL][191] ([i915#12964] / [i915#13550])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: NOTRUN -> [DMESG-FAIL][192] ([i915#13550])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-1/igt@i915_selftest@live@gt_pm.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg2: [PASS][193] -> [ABORT][194] ([i915#13465])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-5/igt@i915_suspend@basic-s2idle-without-i915.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-8/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#4817]) +1 other test incomplete
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk2/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#7707])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#7707])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#4212]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#4212]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][200] ([i915#4215] / [i915#5190])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#12454] / [i915#12712])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#4212]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#8709]) +7 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#8709]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#12967] / [i915#6228])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#12967])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#9531])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [PASS][208] -> [FAIL][209] ([i915#5956])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][210] ([i915#5956])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-3.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][211] -> [FAIL][212] ([i915#11808]) +1 other test fail
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg1: [PASS][213] -> [FAIL][214] ([i915#5956]) +1 other test fail
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg1-18/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#5286]) +7 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#5286]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#5286]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-7/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#5286])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#4538] / [i915#5286]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3638]) +4 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][221] +17 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-3/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#3638]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#4538] / [i915#5190]) +11 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][224] ([i915#4538] / [i915#5190]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#4538]) +7 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#5190])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][227] +72 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#12313]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#6095]) +128 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#10307] / [i915#6095]) +171 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#6095]) +44 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#12313])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#12313])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#6095]) +44 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][236] ([i915#12313]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#12805])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#12805])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][239] ([i915#12796]) +1 other test incomplete
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk9/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@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#6095]) +22 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#12313])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#6095]) +14 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][243] ([i915#10307] / [i915#6095]) +19 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#6095]) +165 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#3742])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#3742])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#3742])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#4087]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#11151] / [i915#7828]) +12 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#11151] / [i915#7828]) +13 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][251] ([i915#11151] / [i915#7828]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#11151] / [i915#7828]) +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#11151] / [i915#7828]) +8 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#11151] / [i915#7828]) +8 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#11151] / [i915#7828]) +16 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-dg2-9: NOTRUN -> [SKIP][256] ([i915#7118] / [i915#9424])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#6944] / [i915#9424]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@kms_content_protection@atomic-dpms.html
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#7118] / [i915#9424])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#6944] / [i915#9424])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-6/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#9424])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#9424])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#3116])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#9424]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-9: NOTRUN -> [SKIP][264] ([i915#9424])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#6944] / [i915#7116] / [i915#7118])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][266] ([i915#7173]) +1 other test fail
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#3555]) +7 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#13049]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#13049])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#13049]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#13049]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-64x64:
- shard-dg1: [PASS][273] -> [DMESG-WARN][274] ([i915#4423]) +1 other test dmesg-warn
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-64x64.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-64x64.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [PASS][275] -> [FAIL][276] ([i915#13566]) +5 other tests fail
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: NOTRUN -> [FAIL][277] ([i915#13566]) +1 other test fail
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#13049])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-rkl: [PASS][279] -> [FAIL][280] ([i915#13566]) +1 other test fail
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-rkl-1/igt@kms_cursor_crc@cursor-random-64x21.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-6/igt@kms_cursor_crc@cursor-random-64x21.html
- shard-glk: NOTRUN -> [DMESG-WARN][281] ([i915#118]) +3 other tests dmesg-warn
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk8/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#8814]) +2 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2-9: NOTRUN -> [SKIP][283] ([i915#3555]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#3555]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8814]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#13049]) +3 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#13046] / [i915#5354]) +3 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: NOTRUN -> [SKIP][288] +35 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#9809])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][290] ([i915#13046] / [i915#5354])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#4103])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#4103] / [i915#4213])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
- shard-glk: [PASS][293] -> [FAIL][294] ([i915#2346])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-glk2/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk8/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#9833])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#9723]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: [PASS][297] -> [SKIP][298] ([i915#3555])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#3804])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: [PASS][300] -> [SKIP][301] ([i915#1257])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-10/igt@kms_dp_aux_dev.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-8/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#12402])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#12402])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#12402])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#12402])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#12402])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#8812])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#3555] / [i915#3840])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-14/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-9: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#3840])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#3840])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-5/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#3840])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#3469])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#1839])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-9: NOTRUN -> [SKIP][314] ([i915#1839])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#9337])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#658])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#4881])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_fence_pin_leak.html
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#4881])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-6/igt@kms_fence_pin_leak.html
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#4881])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][320] -> [FAIL][321] ([i915#11989]) +1 other test fail
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2-9: NOTRUN -> [SKIP][322] ([i915#9934]) +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#9934]) +10 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#3637]) +2 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#9934]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#3637]) +3 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#9934]) +3 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#3637]) +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1:
- shard-rkl: NOTRUN -> [DMESG-WARN][329] ([i915#12964]) +23 other tests dmesg-warn
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-4/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@d-hdmi-a1:
- shard-tglu: [PASS][330] -> [FAIL][331] ([i915#11989]) +2 other tests fail
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-tglu-6/igt@kms_flip@flip-vs-absolute-wf_vblank@d-hdmi-a1.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank@d-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2: [PASS][332] -> [FAIL][333] ([i915#13027]) +1 other test fail
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#8381])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][335] ([i915#12745] / [i915#4839])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][336] ([i915#12745])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-mtlp: [PASS][337] -> [FAIL][338] ([i915#11989]) +3 other tests fail
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check-interruptible.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][339] ([i915#2672] / [i915#3555]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#2672] / [i915#3555]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][341] ([i915#2587] / [i915#2672]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][342] ([i915#2672] / [i915#3555])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][343] ([i915#2672]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#2672]) +8 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#2587] / [i915#2672]) +4 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][346] ([i915#2672] / [i915#8813]) +2 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][347] ([i915#2587] / [i915#2672] / [i915#3555])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#2672]) +3 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#2672] / [i915#3555] / [i915#8813]) +6 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#2587] / [i915#2672] / [i915#3555])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#2587] / [i915#2672])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#2672] / [i915#3555]) +8 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][355] ([i915#3555] / [i915#8810] / [i915#8813])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#3555] / [i915#8810])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][357] ([i915#2672] / [i915#3555] / [i915#5190])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [PASS][358] -> [DMESG-WARN][359] ([i915#12917] / [i915#12964])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [PASS][360] -> [FAIL][361] ([i915#6880]) +1 other test fail
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#1825]) +66 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][363] ([i915#8708]) +6 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#5354]) +27 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#5439])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][366] ([i915#5439]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][367] ([i915#5439])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][368] ([i915#3458]) +8 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][369] +41 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#1825]) +22 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2-9: NOTRUN -> [SKIP][371] ([i915#5354]) +12 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#8708]) +25 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#5439])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#9766])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#8708]) +14 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#3023]) +42 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][377] +40 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#8708]) +3 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#3458]) +20 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][380] ([i915#3458]) +22 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#3555] / [i915#8228])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-6/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][382] ([i915#3555] / [i915#8228])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#3555] / [i915#8228])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-14/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu: NOTRUN -> [SKIP][384] ([i915#3555] / [i915#8228]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][385] ([i915#12713])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][386] ([i915#3555] / [i915#8228])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][387] ([i915#10656]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#12339])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-1/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2-9: NOTRUN -> [SKIP][389] ([i915#12339])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#10656])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-2/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][391] ([i915#10656])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][392] ([i915#1839] / [i915#4816])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg1: NOTRUN -> [SKIP][393] ([i915#6301])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][394] ([i915#13026]) +1 other test incomplete
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][395] ([i915#10647] / [i915#12169])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][396] ([i915#10647]) +3 other tests fail
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][397] ([i915#10647] / [i915#12177])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk1/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][398] ([i915#3555] / [i915#8821])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-9: NOTRUN -> [SKIP][399] ([i915#8806])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][400] ([i915#3555]) +2 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#6953])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][402] ([i915#12247] / [i915#9423])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][403] ([i915#12247]) +15 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][404] ([i915#12247]) +8 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-glk: NOTRUN -> [SKIP][405] +525 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-glk9/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][406] ([i915#12247] / [i915#6953] / [i915#9423])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][407] ([i915#12247] / [i915#6953])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][408] ([i915#12247]) +23 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][409] ([i915#12247]) +22 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][410] ([i915#12247] / [i915#6953]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][411] ([i915#12247] / [i915#3555] / [i915#6953])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][412] ([i915#12247] / [i915#3555])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg2: NOTRUN -> [SKIP][413] ([i915#12247] / [i915#3555] / [i915#9423])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][414] ([i915#12247] / [i915#3555])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][415] ([i915#12247]) +11 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][416] ([i915#12247] / [i915#6953])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][417] ([i915#12247]) +8 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][418] ([i915#12343])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][419] ([i915#12343])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][420] ([i915#12343])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][421] ([i915#9812])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-5/igt@kms_pm_backlight@fade-with-suspend.html
- shard-rkl: NOTRUN -> [SKIP][422] ([i915#5354])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html
- shard-dg1: NOTRUN -> [SKIP][423] ([i915#5354]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-9: NOTRUN -> [SKIP][424] ([i915#9685])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-9/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-mtlp: NOTRUN -> [SKIP][425] ([i915#9292])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][426] ([i915#3828])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][427] ([i915#12912])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-8/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][428] ([i915#9685]) +1 other test skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-3/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][429] ([i915#9685])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-8/igt@kms_pm_dc@dc6-psr.html
- shard-tglu: NOTRUN -> [SKIP][430] ([i915#9685])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][431] ([i915#4281])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][432] ([i915#4281])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][433] ([i915#3828]) +1 other test skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][434] ([i915#8430])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][435] ([i915#9519])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][436] ([i915#9519])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-mtlp-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][437] ([i915#9519])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][438] ([i915#9519]) +1 other test skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][439] -> [SKIP][440] ([i915#9519])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu-1: NOTRUN -> [SKIP][441] ([i915#9519])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][442] ([i915#6524])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/shard-dg1-12/igt@kms_prime@b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12571/index.html
[-- Attachment #2: Type: text/html, Size: 111392 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6)
2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
` (5 preceding siblings ...)
2025-02-11 7:35 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-11 10:41 ` Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-11 10:41 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 79672 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6)
URL : https://patchwork.freedesktop.org/series/143972/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8228_full -> XEIGTPW_12571_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12571_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12571_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12571_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_joiner@basic-max-non-joiner} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-432/igt@kms_joiner@basic-max-non-joiner.html
- shard-lnl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-8/igt@kms_joiner@basic-max-non-joiner.html
- shard-bmg: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_joiner@basic-max-non-joiner.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-dg2-set2: [PASS][4] -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_pm@s2idle-multiple-execs.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-432/igt@xe_pm@s2idle-multiple-execs.html
New tests
---------
New tests have been introduced between XEIGT_8228_full and XEIGTPW_12571_full:
### New IGT tests (1) ###
* igt@kms_joiner@basic-max-non-joiner:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_12571_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-lnl: NOTRUN -> [ABORT][6] ([Intel XE#3914])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-6/igt@core_hotunplug@hotunplug-rescan.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#2550] / [Intel XE#3767]) +7 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#3279])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1407])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1477])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +9 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2191]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1512])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#367]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#367])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +31 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2669]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +10 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +101 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2907])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3432])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#3432])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +9 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][31] ([Intel XE#4010])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#314]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#306]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2325])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_chamelium_color@degamma.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#306])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-8/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2252]) +7 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#373]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#373]) +8 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_color@degamma@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#877]) +1 other test dmesg-warn
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_color@degamma@pipe-d-hdmi-a-3.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_color@degamma@pipe-d-hdmi-a-3.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2341])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-8/igt@kms_content_protection@content-type-change.html
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2390])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#307]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +1 other test fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#3304])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][48] ([Intel XE#1178])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1188])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2320]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2321])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#308])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2321])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1424]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2286]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [PASS][57] -> [DMESG-WARN][58] ([Intel XE#1033]) +25 other tests dmesg-warn
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#309])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2291]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
- shard-dg2-set2: [PASS][62] -> [SKIP][63] ([Intel XE#309]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#323]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#323])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2425])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1340])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([i915#3804])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dsc@dsc-with-formats:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2244])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-8/igt@kms_dsc@dsc-with-formats.html
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2244])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2373])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_feature_discovery@display-2x.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#310])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1421]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_flip@2x-flip-vs-rmfb.html
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2316])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][77] ([Intel XE#1033]) +7 other tests dmesg-warn
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#310])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_flip@2x-plain-flip-interruptible.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#2316]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@basic-plain-flip@b-dp4:
- shard-dg2-set2: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#2049]) +1 other test incomplete
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_flip@basic-plain-flip@b-dp4.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_flip@basic-plain-flip@b-dp4.html
* igt@kms_flip@blocking-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][84] -> [INCOMPLETE][85] ([Intel XE#2049]) +1 other test incomplete
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#301]) +2 other tests fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [PASS][87] -> [FAIL][88] ([Intel XE#301])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][89] ([Intel XE#3321])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3:
- shard-bmg: [PASS][90] -> [FAIL][91] ([Intel XE#3321]) +1 other test fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1397]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1401]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2380]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#455]) +16 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2293]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#651]) +10 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2312]) +10 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#651]) +22 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#656])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#4141]) +8 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2311]) +14 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#656]) +7 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#656]) +24 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2313]) +19 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#653]) +20 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2340])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdr@static-toggle-suspend:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1503])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1450] / [Intel XE#2568])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1450]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2934])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2925])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2934])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2927])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2927])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2927])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2501])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#356])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#356])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2393])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#599])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-none:
- shard-bmg: NOTRUN -> [DMESG-WARN][126] ([Intel XE#4172]) +5 other tests dmesg-warn
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_plane_multiple@tiling-none.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][127] ([Intel XE#2705] / [Intel XE#4212]) +1 other test dmesg-warn
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][128] ([Intel XE#4212])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2763]) +8 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2763]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2763]) +15 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2391])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1122])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#736])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#1033] / [Intel XE#2042])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1489]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2893]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1489])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1406]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-5/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2234])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#3414] / [Intel XE#3904])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#3414])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [PASS][148] -> [SKIP][149] ([Intel XE#1435])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][150] ([Intel XE#1729])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@wait-busy-hang:
- shard-bmg: [PASS][151] -> [DMESG-WARN][152] ([Intel XE#4172]) +20 other tests dmesg-warn
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_vblank@wait-busy-hang.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_vblank@wait-busy-hang.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][153] -> [FAIL][154] ([Intel XE#2159]) +1 other test fail
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-lnl: NOTRUN -> [FAIL][155] ([Intel XE#1522]) +1 other test fail
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-8/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#1499]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1499]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#756])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#756])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#756])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#1091] / [Intel XE#2849])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#1123])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_eudebug@basic-vm-bind-ufence:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2905]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-ufence.html
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#3889])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#3889])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#3889])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
* igt@xe_eudebug@discovery-race-sigint:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#4259])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@xe_eudebug@discovery-race-sigint.html
- shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#4259])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-435/igt@xe_eudebug@discovery-race-sigint.html
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#4259])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-8/igt@xe_eudebug@discovery-race-sigint.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2905]) +7 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-466/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#2905]) +7 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-8/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#688]) +3 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#1392]) +5 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#2322]) +4 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-dg2-set2: [PASS][176] -> [SKIP][177] ([Intel XE#1392])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#288]) +30 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2229])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#4045])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-3/igt@xe_mmap@pci-membarrier.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-435/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#1337])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#2284] / [Intel XE#366])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-4/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2284])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-1/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#1948])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-3/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [PASS][186] -> [DMESG-WARN][187] ([Intel XE#4172] / [Intel XE#569])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@xe_pm@s3-exec-after.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@xe_pm@s3-exec-after.html
- shard-dg2-set2: [PASS][188] -> [DMESG-WARN][189] ([Intel XE#1033] / [Intel XE#569])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@xe_pm@s3-exec-after.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-466/igt@xe_pm@s3-exec-after.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#944]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
- shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#944]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#944]) +3 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-6/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#4130])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@xe_sriov_auto_provisioning@fair-allocation.html
#### Possible fixes ####
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [DMESG-WARN][194] ([Intel XE#4172]) -> [PASS][195] +48 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-180.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][196] ([Intel XE#1727] / [Intel XE#4010]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][198] ([Intel XE#4010]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_color@ctm-0-50@pipe-d-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][200] ([Intel XE#1033]) -> [PASS][201] +37 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_color@ctm-0-50@pipe-d-hdmi-a-6.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_color@ctm-0-50@pipe-d-hdmi-a-6.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][202] ([Intel XE#2291]) -> [PASS][203] +4 other tests pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][204] ([Intel XE#309]) -> [PASS][205] +7 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [SKIP][206] ([Intel XE#3009]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_dp_aux_dev.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][208] ([Intel XE#3070]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][210] ([Intel XE#2316]) -> [PASS][211] +5 other tests pass
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
- shard-dg2-set2: [SKIP][212] ([Intel XE#310]) -> [PASS][213] +5 other tests pass
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][214] ([Intel XE#2882]) -> [PASS][215] +2 other tests pass
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a6-dp4.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-435/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-ts-check@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][216] ([Intel XE#2882]) -> [PASS][217] +3 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check@ad-dp2-hdmi-a3.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6:
- shard-dg2-set2: [DMESG-FAIL][218] ([Intel XE#1033]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [FAIL][220] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][221] +2 other tests pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [FAIL][222] ([Intel XE#301]) -> [PASS][223] +3 other tests pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- shard-bmg: [FAIL][224] ([Intel XE#3321]) -> [PASS][225] +1 other test pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [FAIL][226] ([Intel XE#886]) -> [PASS][227] +5 other tests pass
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][228] ([Intel XE#656]) -> [PASS][229] +6 other tests pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-set2: [SKIP][230] -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_lease@simple-lease@pipe-d-hdmi-a-3:
- shard-bmg: [INCOMPLETE][232] -> [PASS][233] +1 other test pass
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_lease@simple-lease@pipe-d-hdmi-a-3.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_lease@simple-lease@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-bmg: [DMESG-WARN][234] ([Intel XE#2566] / [Intel XE#4172]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [SKIP][236] ([Intel XE#836]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-dg2-set2: [INCOMPLETE][238] ([Intel XE#1727]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2-set2: [SKIP][240] ([Intel XE#455]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [SKIP][242] ([Intel XE#1192]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_live_ktest@xe_bo.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-5/igt@xe_live_ktest@xe_bo.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][244] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][245] +1 other test pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_pm@s3-d3hot-basic-exec.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][246] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][248] ([Intel XE#787]) -> [SKIP][249] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][250] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][251] ([Intel XE#787]) +10 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][252] ([Intel XE#1727] / [Intel XE#4010]) -> [INCOMPLETE][253] ([Intel XE#4010])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [SKIP][254] ([Intel XE#455]) -> [FAIL][255] ([Intel XE#1178]) +2 other tests fail
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_content_protection@lic-type-0.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_content_protection@lic-type-0.html
- shard-bmg: [DMESG-FAIL][256] ([Intel XE#4172]) -> [SKIP][257] ([Intel XE#2341])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][258] ([Intel XE#2341]) -> [FAIL][259] ([Intel XE#1178])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_content_protection@srm.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][260] ([Intel XE#455]) -> [FAIL][261] ([Intel XE#1188])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_content_protection@uevent.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-433/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [FAIL][262] -> [SKIP][263] ([Intel XE#308])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][264] ([Intel XE#877]) -> [SKIP][265] ([Intel XE#2291])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [DMESG-WARN][266] ([Intel XE#4172]) -> [SKIP][267] ([Intel XE#2291])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [FAIL][268] ([Intel XE#2882]) -> [SKIP][269] ([Intel XE#2316])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2-set2: [DMESG-WARN][270] ([Intel XE#1033]) -> [SKIP][271] ([Intel XE#310])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-WARN][272] ([Intel XE#4172]) -> [FAIL][273] ([Intel XE#3321])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
- shard-dg2-set2: [DMESG-FAIL][274] ([Intel XE#1033]) -> [FAIL][275] ([Intel XE#301])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][276] ([Intel XE#2312]) -> [SKIP][277] ([Intel XE#2311]) +15 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][278] ([Intel XE#2311]) -> [SKIP][279] ([Intel XE#2312]) +12 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][280] ([Intel XE#656]) -> [SKIP][281] ([Intel XE#651]) +18 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][282] ([Intel XE#2312]) -> [SKIP][283] ([Intel XE#4141]) +4 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][284] ([Intel XE#4141]) -> [SKIP][285] ([Intel XE#2312]) +6 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][286] ([Intel XE#651]) -> [SKIP][287] ([Intel XE#656]) +4 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][288] ([Intel XE#653]) -> [SKIP][289] ([Intel XE#656]) +5 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][290] ([Intel XE#656]) -> [SKIP][291] ([Intel XE#653]) +18 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][292] ([Intel XE#2312]) -> [SKIP][293] ([Intel XE#2313]) +13 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][294] ([Intel XE#2313]) -> [SKIP][295] ([Intel XE#2312]) +15 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [DMESG-WARN][296] ([Intel XE#877]) -> [SKIP][297] ([Intel XE#1503])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@xe_pm@s3-basic:
- shard-dg2-set2: [DMESG-WARN][298] ([Intel XE#1033] / [Intel XE#569]) -> [ABORT][299] ([Intel XE#1033] / [Intel XE#1794])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_pm@s3-basic.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-432/igt@xe_pm@s3-basic.html
* igt@xe_pm@s4-mocs:
- shard-bmg: [ABORT][300] ([Intel XE#4172] / [Intel XE#4268]) -> [ABORT][301] ([Intel XE#4268])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@xe_pm@s4-mocs.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-bmg-2/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [ABORT][302] ([Intel XE#1033] / [Intel XE#4268]) -> [ABORT][303] ([Intel XE#4268])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_pm@s4-vm-bind-prefetch.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/shard-dg2-436/igt@xe_pm@s4-vm-bind-prefetch.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8228 -> IGTPW_12571
* Linux: xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 -> xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4
IGTPW_12571: 82ed111dc3fa1e348d0290f2404bd21a0838b950 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8228: 8228
xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77
xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4: 2fc58ab10139895686001c7e1ee247f15226abc4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12571/index.html
[-- Attachment #2: Type: text/html, Size: 94771 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
2025-02-12 7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
@ 2025-02-12 7:21 ` B, Jeevan
0 siblings, 0 replies; 11+ messages in thread
From: B, Jeevan @ 2025-02-12 7:21 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: B S, Karthik
Adding result from local run :
./build/tests/kms_joiner --r basic-max-non-joiner
IGT-Version: 1.30-gf377e6725 (x86_64) (Linux: 6.14.0-rc2-xe+ x86_64)
Using IGT_SRANDOM=1739350394 for randomisation
Opened device: /dev/dri/card0
Found master pipe A
Found master pipe B
Found master pipe C
DSC not supported on connector DP-4
Starting subtest: basic-max-non-joiner
Starting dynamic subtest: pipe-A-DP-4
Appplying mode = 6144x3456@30
Dynamic subtest pipe-A-DP-4: SUCCESS (1.780s)
Starting dynamic subtest: pipe-B-DP-4
Appplying mode = 6144x3456@30
Dynamic subtest pipe-B-DP-4: SUCCESS (2.241s)
Starting dynamic subtest: pipe-C-DP-4
Appplying mode = 6144x3456@30
Dynamic subtest pipe-C-DP-4: SUCCESS (1.874s)
Starting dynamic subtest: pipe-D-DP-4
Appplying mode = 6144x3456@30
Dynamic subtest pipe-D-DP-4: SUCCESS (1.858s)
Subtest basic-max-non-joiner: SUCCESS (7.761s)
> -----Original Message-----
> From: B, Jeevan <jeevan.b@intel.com>
> Sent: Wednesday, February 12, 2025 1:06 PM
> To: igt-dev@lists.freedesktop.org
> Cc: B S, Karthik <karthik.b.s@intel.com>; B, Jeevan <jeevan.b@intel.com>
> Subject: [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate
> non-joiner mode
>
> Added new lib changes to find non_joiner_mode and updated test.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
>
> Jeevan B (3):
> lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe
> lib/igt_kms: Add support to check joiner mode limit
> tests/intel/kms_joiner: Add a new test to validate non-joiner mode
>
> lib/igt_kms.c | 76 ++++++++++++++++++++++++++++++++++++++++
> lib/igt_kms.h | 3 ++
> tests/intel/kms_joiner.c | 65 ++++++++++++++++++++++++++++++++++
> 3 files changed, 144 insertions(+)
>
> --
> 2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
@ 2025-02-12 7:36 Jeevan B
2025-02-12 7:21 ` B, Jeevan
0 siblings, 1 reply; 11+ messages in thread
From: Jeevan B @ 2025-02-12 7:36 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Jeevan B
Added new lib changes to find non_joiner_mode and updated test.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Jeevan B (3):
lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe
lib/igt_kms: Add support to check joiner mode limit
tests/intel/kms_joiner: Add a new test to validate non-joiner mode
lib/igt_kms.c | 76 ++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 3 ++
tests/intel/kms_joiner.c | 65 ++++++++++++++++++++++++++++++++++
3 files changed, 144 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-02-12 7:22 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-10 18:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 1/3] lib/igt_kms: Add lib changes to check if joiner is enabled for a pipe Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 2/3] lib/igt_kms: Add support to check joiner mode limit Jeevan B
2025-02-10 18:36 ` [PATCH i-g-t 3/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-02-10 23:33 ` ✓ i915.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev6) Patchwork
2025-02-10 23:48 ` ✓ Xe.CI.BAT: " Patchwork
2025-02-11 7:35 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-11 10:41 ` ✗ Xe.CI.Full: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-02-12 7:36 [PATCH i-g-t 0/3] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-02-12 7:21 ` B, Jeevan
2025-02-04 18:27 Jeevan B
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox