* [i-g-t V3 1/4] lib/igt_kms: Add infra to handle crtc arbitrary attributes
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
@ 2024-11-18 9:59 ` Bhanuprakash Modem
2024-11-18 9:59 ` [i-g-t V3 2/4] lib/drrs: Add support to force drrs to default on exit Bhanuprakash Modem
` (10 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Bhanuprakash Modem @ 2024-11-18 9:59 UTC (permalink / raw)
To: igt-dev, swati2.sharma; +Cc: Bhanuprakash Modem
We may want to poke at various other crtc attributes
via sysfs/debugfs. Add a mechamisn to handle crtc
arbitrary attributes.
V2:
- Fix derefering of NULL pointer (Kamil)
- Other minor cleanups (Kamil)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 171 ++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 6 ++
2 files changed, 177 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 5d8096a17..f88c7d6c0 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -93,6 +93,7 @@
#define DISPLAY_TILE_BLOCK 0x12
typedef bool (*igt_connector_attr_set)(int dir, const char *attr, const char *value);
+typedef bool (*igt_crtc_attr_set)(int dir, const char *attr, const char *value);
struct igt_connector_attr {
uint32_t connector_type;
@@ -103,7 +104,16 @@ struct igt_connector_attr {
const char *attr, *value, *reset_value;
};
+struct igt_crtc_attr {
+ int pipe;
+ int idx;
+ int dir;
+ igt_crtc_attr_set set;
+ const char *attr, *value, *reset_value;
+};
+
static struct igt_connector_attr connector_attrs[MAX_CONNECTORS];
+static struct igt_crtc_attr crtc_attrs[IGT_MAX_PIPES];
/**
* igt_kms_get_base_edid:
@@ -1827,6 +1837,146 @@ void kmstest_force_edid(int drm_fd, drmModeConnector *connector,
igt_assert(ret != -1);
}
+static struct igt_crtc_attr *crtc_attr_find(int idx, enum pipe pipe,
+ igt_crtc_attr_set set,
+ const char *attr)
+{
+ igt_assert(pipe > PIPE_NONE && pipe < IGT_MAX_PIPES);
+
+ for (int i = 0; i < ARRAY_SIZE(crtc_attrs); i++) {
+ struct igt_crtc_attr *c = &crtc_attrs[i];
+
+ if (c->idx == idx &&
+ c->pipe == pipe &&
+ c->set == set && !strcmp(c->attr, attr))
+ return c;
+ }
+
+ return NULL;
+}
+
+static struct igt_crtc_attr *crtc_attr_find_free(void)
+{
+ for (int i = 0; i < ARRAY_SIZE(crtc_attrs); i++) {
+ struct igt_crtc_attr *c = &crtc_attrs[i];
+
+ if (!c->attr)
+ return c;
+ }
+
+ return NULL;
+}
+
+static struct igt_crtc_attr *crtc_attr_alloc(int idx, enum pipe pipe,
+ int dir, igt_crtc_attr_set set,
+ const char *attr, const char *reset_value)
+{
+ struct igt_crtc_attr *c = crtc_attr_find_free();
+
+ igt_assert(c);
+
+ c->idx = idx;
+ c->pipe = pipe;
+
+ c->dir = dir;
+ c->set = set;
+ c->attr = attr;
+ c->reset_value = reset_value;
+
+ return c;
+}
+
+static void crtc_attr_free(struct igt_crtc_attr *c)
+{
+ memset(c, 0, sizeof(*c));
+}
+
+static bool crtc_attr_set(int idx, enum pipe pipe,
+ int dir, igt_crtc_attr_set set,
+ const char *attr, const char *value,
+ const char *reset_value)
+{
+ struct igt_crtc_attr *c;
+
+ c = crtc_attr_find(idx, pipe, set, attr);
+ if (!c)
+ c = crtc_attr_alloc(idx, pipe, dir, set, attr, reset_value);
+
+ c->value = value;
+
+ if (!c->set(c->dir, c->attr, c->value)) {
+ crtc_attr_free(c);
+ return false;
+ }
+
+ if (!strcmp(c->value, c->reset_value))
+ crtc_attr_free(c);
+
+ return true;
+}
+
+static bool crtc_attr_set_debugfs(int drm_fd, enum pipe pipe,
+ const char *attr, const char *value,
+ const char *reset_value)
+{
+ int idx, dir;
+
+ idx = igt_device_get_card_index(drm_fd);
+ if (idx < 0 || idx > 63)
+ return false;
+
+ dir = igt_debugfs_pipe_dir(drm_fd, pipe, O_DIRECTORY);
+ if (dir < 0)
+ return false;
+
+ if (!crtc_attr_set(idx, pipe, dir,
+ igt_sysfs_set, attr,
+ value, reset_value))
+ return false;
+
+ igt_info("Crtc-%d/%s is now %s\n", pipe, attr, value);
+
+ return true;
+}
+
+/**
+ * igt_set_crtc_attrs:
+ * @drm_fd: drm file descriptor
+ * @pipe: pipe
+ * @attr: attribute to set
+ * @value: value to set
+ * @reset_value: value to reset to
+ *
+ * Set the attribute @attr to @value on the crtc-@pipe.
+ *
+ * @return: true on success
+ */
+bool igt_set_crtc_attrs(int drm_fd, enum pipe pipe,
+ const char *attr, const char *value,
+ const char *reset_value)
+{
+ return crtc_attr_set_debugfs(drm_fd, pipe, attr, value, reset_value);
+}
+
+/**
+ * kmstest_set_connector_dpms:
+ *
+ * Dump all attr state on all crtcs.
+ */
+void dump_crtc_attrs(void)
+{
+ igt_debug("Current crtc attrs:\n");
+
+ for (int i = 0; i < ARRAY_SIZE(crtc_attrs); i++) {
+ struct igt_crtc_attr *c = &crtc_attrs[i];
+
+ if (!c->attr)
+ continue;
+
+ igt_debug("\tcrtc-%d/%s: %s\n", c->pipe, c->attr, c->value);
+ }
+}
+
/**
* sort_drm_modes_by_clk_dsc:
* @a: first element
@@ -5484,6 +5634,27 @@ void igt_reset_connectors(void)
}
}
+/**
+ * igt_reset_crtcs:
+ *
+ * Remove any forced state from the crtcs.
+ */
+void igt_reset_crtcs(void)
+{
+ /*
+ * Reset the crtcs stored in crtc_attrs, avoiding any
+ * functions that are not safe to call in signal handlers
+ */
+ for (int i = 0; i < ARRAY_SIZE(crtc_attrs); i++) {
+ struct igt_crtc_attr *c = &crtc_attrs[i];
+
+ if (!c->attr)
+ continue;
+
+ c->set(c->dir, c->attr, c->reset_value);
+ }
+}
+
/**
* igt_watch_uevents:
*
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index bd154d1c1..51eba3c69 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1110,6 +1110,12 @@ void igt_pipe_refresh(igt_display_t *display, enum pipe pipe, bool force);
void igt_enable_connectors(int drm_fd);
void igt_reset_connectors(void);
+bool igt_set_crtc_attrs(int drm_fd, enum pipe pipe,
+ const char *attr, const char *value,
+ const char *reset_value);
+void igt_reset_crtcs(void);
+void dump_crtc_attrs(void);
+
uint32_t kmstest_get_vbl_flag(int crtc_offset);
const struct edid *igt_kms_get_base_edid(void);
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread* [i-g-t V3 2/4] lib/drrs: Add support to force drrs to default on exit
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
2024-11-18 9:59 ` [i-g-t V3 1/4] lib/igt_kms: Add infra to handle crtc arbitrary attributes Bhanuprakash Modem
@ 2024-11-18 9:59 ` Bhanuprakash Modem
2024-11-18 9:59 ` [i-g-t V3 3/4] lib/dsc: Reset DSC bpc " Bhanuprakash Modem
` (9 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Bhanuprakash Modem @ 2024-11-18 9:59 UTC (permalink / raw)
To: igt-dev, swati2.sharma; +Cc: Bhanuprakash Modem
Use existing exit handler helpers to reset the drrs status
to default on exit.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/i915/intel_drrs.c | 41 ++++++++++++++++++++++-------------------
1 file changed, 22 insertions(+), 19 deletions(-)
diff --git a/lib/i915/intel_drrs.c b/lib/i915/intel_drrs.c
index ac8dd5e61..0d1f9cbad 100644
--- a/lib/i915/intel_drrs.c
+++ b/lib/i915/intel_drrs.c
@@ -56,26 +56,18 @@ bool intel_output_has_drrs(int device, igt_output_t *output)
return strstr(buf, "seamless");
}
-static void drrs_set(int device, enum pipe pipe, unsigned int val)
+static void reset_crtc_drrs_at_exit(int sig)
{
- char buf[2];
- int dir, ret;
-
- igt_debug("Manually %sabling DRRS. %u\n", val ? "en" : "dis", val);
- snprintf(buf, sizeof(buf), "%d", val);
+ igt_reset_crtcs();
+}
- dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
- igt_require_fd(dir);
- ret = igt_sysfs_write(dir, "i915_drrs_ctl", buf, sizeof(buf) - 1);
- close(dir);
+static bool drrs_set(int device, enum pipe pipe, const char *val)
+{
+ igt_debug("Manually %sabling DRRS.\n", !strcmp(val, "1") ? "en" : "dis");
- /*
- * drrs_enable() is called on DRRS capable platform only,
- * whereas drrs_disable() is called on all platforms.
- * So handle the failure of debugfs_write only for drrs_enable().
- */
- if (val)
- igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed");
+ return igt_set_crtc_attrs(device, pipe,
+ "i915_drrs_ctl",
+ val, "0");
}
/**
@@ -90,7 +82,17 @@ static void drrs_set(int device, enum pipe pipe, unsigned int val)
*/
void intel_drrs_enable(int device, enum pipe pipe)
{
- drrs_set(device, pipe, 1);
+ bool ret = drrs_set(device, pipe, "1");
+
+ /*
+ * drrs_enable() is called on DRRS capable platform only,
+ * whereas drrs_disable() is called on all platforms.
+ * So handle the failure of debugfs_write only for drrs_enable().
+ */
+ igt_assert_f(ret == 1, "debugfs_write failed");
+
+ dump_crtc_attrs();
+ igt_install_exit_handler(reset_crtc_drrs_at_exit);
}
/**
@@ -105,7 +107,8 @@ void intel_drrs_enable(int device, enum pipe pipe)
*/
void intel_drrs_disable(int device, enum pipe pipe)
{
- drrs_set(device, pipe, 0);
+ drrs_set(device, pipe, "0");
+ dump_crtc_attrs();
}
/**
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread* [i-g-t V3 3/4] lib/dsc: Reset DSC bpc to default on exit
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
2024-11-18 9:59 ` [i-g-t V3 1/4] lib/igt_kms: Add infra to handle crtc arbitrary attributes Bhanuprakash Modem
2024-11-18 9:59 ` [i-g-t V3 2/4] lib/drrs: Add support to force drrs to default on exit Bhanuprakash Modem
@ 2024-11-18 9:59 ` Bhanuprakash Modem
2024-11-18 9:59 ` [i-g-t V3 4/4] lib/igt_kms: Reset spurious hpd " Bhanuprakash Modem
` (8 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Bhanuprakash Modem @ 2024-11-18 9:59 UTC (permalink / raw)
To: igt-dev, swati2.sharma; +Cc: Bhanuprakash Modem
Add support to force the DSC bpc to default on exit.
V2: - Minor cleanups
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_dsc.c | 16 ++++++++++++++++
lib/igt_dsc.h | 1 +
tests/intel/kms_dsc_helper.c | 11 ++++++++++-
3 files changed, 27 insertions(+), 1 deletion(-)
diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c
index 229cd3298..409807b92 100644
--- a/lib/igt_dsc.c
+++ b/lib/igt_dsc.c
@@ -141,6 +141,22 @@ int igt_force_dsc_enable_bpc(int drmfd, char *connector_name, int bpc)
return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_bpc", buf);
}
+/**
+ * igt_get_dsc_bpc_debugfs_fd:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: fd of the DSC BPC debugfs for the given connector, else returns -1.
+ */
+int igt_get_dsc_bpc_debugfs_fd(int drmfd, char *connector_name)
+{
+ char file_name[128] = {0};
+
+ sprintf(file_name, "%s/i915_dsc_bpc", connector_name);
+
+ return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
+}
+
/**
* igt_get_dsc_debugfs_fd:
* @drmfd: A drm file descriptor
diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h
index 7ab0917ec..1f3ea6920 100644
--- a/lib/igt_dsc.h
+++ b/lib/igt_dsc.h
@@ -18,6 +18,7 @@ bool igt_is_force_dsc_enabled(int drmfd, char *connector_name);
int igt_force_dsc_enable(int drmfd, char *connector_name);
int igt_force_dsc_enable_bpc(int drmfd, char *connector_name, int bpc);
int igt_get_dsc_debugfs_fd(int drmfd, char *connector_name);
+int igt_get_dsc_bpc_debugfs_fd(int drmfd, char *connector_name);
bool igt_is_dsc_output_format_supported_by_sink(int drmfd, char *connector_name,
enum dsc_output_format output_format);
int igt_force_dsc_output_format(int drmfd, char *connector_name,
diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c
index 0de09b8e9..52e0469c7 100644
--- a/tests/intel/kms_dsc_helper.c
+++ b/tests/intel/kms_dsc_helper.c
@@ -8,6 +8,7 @@
static bool force_dsc_en_orig;
static bool force_dsc_fractional_bpp_en_orig;
static int force_dsc_restore_fd = -1;
+static int force_dsc_bpc_restore_fd = -1;
static int force_dsc_fractional_bpp_restore_fd = -1;
void force_dsc_enable(int drmfd, igt_output_t *output)
@@ -36,6 +37,9 @@ void save_force_dsc_en(int drmfd, igt_output_t *output)
force_dsc_restore_fd =
igt_get_dsc_debugfs_fd(drmfd, output->name);
igt_assert_lte(0, force_dsc_restore_fd);
+ force_dsc_bpc_restore_fd =
+ igt_get_dsc_bpc_debugfs_fd(drmfd, output->name);
+ igt_assert_lte(0, force_dsc_bpc_restore_fd);
}
void restore_force_dsc_en(void)
@@ -45,9 +49,14 @@ void restore_force_dsc_en(void)
igt_debug("Restoring DSC enable\n");
igt_assert(write(force_dsc_restore_fd, force_dsc_en_orig ? "1" : "0", 1) == 1);
-
close(force_dsc_restore_fd);
+
+ igt_debug("Restoring DSC BPC enable\n");
+ igt_assert(write(force_dsc_bpc_restore_fd, "0", 1) == 1);
+ close(force_dsc_bpc_restore_fd);
+
force_dsc_restore_fd = -1;
+ force_dsc_bpc_restore_fd = -1;
}
void kms_dsc_exit_handler(int sig)
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread* [i-g-t V3 4/4] lib/igt_kms: Reset spurious hpd to default on exit
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
` (2 preceding siblings ...)
2024-11-18 9:59 ` [i-g-t V3 3/4] lib/dsc: Reset DSC bpc " Bhanuprakash Modem
@ 2024-11-18 9:59 ` Bhanuprakash Modem
2024-11-18 23:15 ` ✗ Fi.CI.BAT: failure for Force connector/crtc attrs to default (rev4) Patchwork
` (7 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Bhanuprakash Modem @ 2024-11-18 9:59 UTC (permalink / raw)
To: igt-dev, swati2.sharma; +Cc: Bhanuprakash Modem
Add support to force the spurious hpd to default on exit.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index f88c7d6c0..275589f70 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -2922,6 +2922,19 @@ static void igt_handle_spurious_hpd(igt_display_t *display)
dump_connector_attrs();
}
+static void igt_reset_spurious_hpd(int drm_fd)
+{
+ /* Proceed with spurious HPD handling only if the env var is set */
+ if (!getenv("IGT_KMS_IGNORE_HPD"))
+ return;
+
+ /* Set the ignore HPD for the driver */
+ if (!igt_ignore_long_hpd(drm_fd, false)) {
+ igt_info("Unable set the ignore HPD debugfs entry \n");
+ return;
+ }
+}
+
/**
* igt_display_reset_outputs:
* @display: a pointer to an initialized #igt_display_t structure
@@ -3438,6 +3451,10 @@ void igt_display_fini(igt_display_t *display)
for (i = 0; i < display->n_outputs; i++)
igt_output_fini(&display->outputs[i]);
+
+ if (display->n_pipes && display->n_outputs)
+ igt_reset_spurious_hpd(display->drm_fd);
+
free(display->outputs);
display->outputs = NULL;
free(display->pipes);
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread* ✗ Fi.CI.BAT: failure for Force connector/crtc attrs to default (rev4)
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
` (3 preceding siblings ...)
2024-11-18 9:59 ` [i-g-t V3 4/4] lib/igt_kms: Reset spurious hpd " Bhanuprakash Modem
@ 2024-11-18 23:15 ` Patchwork
2024-11-18 23:15 ` ✓ CI.xeBAT: success " Patchwork
` (6 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-18 23:15 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6069 bytes --]
== Series Details ==
Series: Force connector/crtc attrs to default (rev4)
URL : https://patchwork.freedesktop.org/series/137234/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8115 -> IGTPW_12124
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12124 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12124, 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_12124/index.html
Participating hosts (46 -> 45)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12124:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@module-reload:
- bat-adls-6: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-adls-6/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-adls-6/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][3] +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: NOTRUN -> [ABORT][4] +1 other test abort
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-8: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@kms_flip@basic-flip-vs-dpms@b-dp1:
- bat-apl-1: [PASS][7] -> [DMESG-WARN][8] +1 other test dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@b-dp1.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@b-dp1.html
Known issues
------------
Here are the changes found in IGTPW_12124 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_tiled_blits@basic:
- fi-pnv-d510: [PASS][9] -> [SKIP][10] +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/fi-pnv-d510/igt@gem_tiled_blits@basic.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/fi-pnv-d510/igt@gem_tiled_blits@basic.html
* igt@i915_module_load@reload:
- fi-kbl-7567u: [PASS][11] -> [DMESG-WARN][12] ([i915#1982])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/fi-kbl-7567u/igt@i915_module_load@reload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/fi-kbl-7567u/igt@i915_module_load@reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][13] -> [ABORT][14] ([i915#12829])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-8/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arlh-3: [PASS][15] -> [ABORT][16] ([i915#12829])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-arlh-3/igt@i915_selftest@live.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][17] -> [ABORT][18] ([i915#12061])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][19] -> [SKIP][20] ([i915#9197]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-6: [ABORT][21] ([i915#12829]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-6/igt@i915_selftest@live.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [ABORT][23] -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8115 -> IGTPW_12124
* Linux: CI_DRM_15716 -> CI_DRM_15717
CI-20190529: 20190529
CI_DRM_15716: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15717: 1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12124: ddeaf3b9a25308dbfb50a26e5985a1e060aefe49 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12124/index.html
[-- Attachment #2: Type: text/html, Size: 7168 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ CI.xeBAT: success for Force connector/crtc attrs to default (rev4)
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
` (4 preceding siblings ...)
2024-11-18 23:15 ` ✗ Fi.CI.BAT: failure for Force connector/crtc attrs to default (rev4) Patchwork
@ 2024-11-18 23:15 ` Patchwork
2024-11-19 9:42 ` ✗ CI.xeFULL: failure " Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-18 23:15 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3127 bytes --]
== Series Details ==
Series: Force connector/crtc attrs to default (rev4)
URL : https://patchwork.freedesktop.org/series/137234/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8115_BAT -> XEIGTPW_12124_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12124_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race:
- bat-bmg-1: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#2687] / [Intel XE#3371])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-bmg-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/bat-bmg-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
* igt@xe_intel_bb@render@render-linear-256:
- bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#358]) +3 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-vf/igt@xe_intel_bb@render@render-linear-256.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/bat-adlp-vf/igt@xe_intel_bb@render@render-linear-256.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [DMESG-FAIL][5] ([Intel XE#1033]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@xe_pat@pat-index-xelp@render:
- bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#358]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
Build changes
-------------
* IGT: IGT_8115 -> IGTPW_12124
* Linux: xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4 -> xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6
IGTPW_12124: ddeaf3b9a25308dbfb50a26e5985a1e060aefe49 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4
xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6: 1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/index.html
[-- Attachment #2: Type: text/html, Size: 3862 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ CI.xeFULL: failure for Force connector/crtc attrs to default (rev4)
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
` (5 preceding siblings ...)
2024-11-18 23:15 ` ✓ CI.xeBAT: success " Patchwork
@ 2024-11-19 9:42 ` Patchwork
2024-11-19 21:07 ` ✓ CI.xeBAT: success for Force connector/crtc attrs to default (rev5) Patchwork
` (4 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-19 9:42 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 130169 bytes --]
== Series Details ==
Series: Force connector/crtc attrs to default (rev4)
URL : https://patchwork.freedesktop.org/series/137234/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8115_full -> XEIGTPW_12124_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12124_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12124_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_12124_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-random-64x64:
- shard-bmg: [PASS][1] -> [DMESG-FAIL][2] +12 other tests dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_cursor_crc@cursor-random-64x64.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@kms_cursor_crc@cursor-random-64x64.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [DMESG-WARN][3] +15 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-FAIL][4] +5 other tests dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp2:
- shard-bmg: [PASS][5] -> [DMESG-WARN][6] +49 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][7] +1 other test dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x:
- shard-bmg: [PASS][8] -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [INCOMPLETE][10] +1 other test incomplete
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-bmg: [PASS][11] -> [INCOMPLETE][12] +4 other tests incomplete
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_plane_alpha_blend@constant-alpha-max.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@xe_exec_store@persistent:
- shard-dg2-set2: [PASS][13] -> [DMESG-WARN][14] +5 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_exec_store@persistent.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@xe_exec_store@persistent.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2:
- shard-bmg: [DMESG-WARN][15] ([Intel XE#877]) -> [DMESG-WARN][16] +1 other test dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-bmg: [SKIP][17] ([Intel XE#2327]) -> [INCOMPLETE][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-dg2-set2: [SKIP][19] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][20] +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][21] ([Intel XE#2333]) -> [DMESG-FAIL][22] +6 other tests dmesg-fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-bmg: [FAIL][23] ([Intel XE#2333]) -> [INCOMPLETE][24]
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_prop_blob@invalid-get-prop:
- shard-dg2-set2: [SKIP][25] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][26] +1 other test dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_prop_blob@invalid-get-prop.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_prop_blob@invalid-get-prop.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: [DMESG-WARN][27] ([Intel XE#3466]) -> [FAIL][28] +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][29] ([Intel XE#2136]) -> [DMESG-WARN][30]
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_module_load@reload.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@xe_module_load@reload.html
Known issues
------------
Here are the changes found in XEIGTPW_12124_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [PASS][31] -> [SKIP][32] ([Intel XE#1885]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@core_hotunplug@hotunplug-rescan.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html
* igt@core_hotunplug@unplug-rescan:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1885])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@core_hotunplug@unplug-rescan.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][34] -> [SKIP][35] ([Intel XE#3453])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [PASS][36] -> [FAIL][37] ([Intel XE#3339])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@core_setmaster@master-drop-set-user.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html
* igt@core_setmaster_vs_auth:
- shard-dg2-set2: [PASS][38] -> [SKIP][39] ([Intel XE#2423])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@core_setmaster_vs_auth.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@core_setmaster_vs_auth.html
* igt@fbdev@pan:
- shard-dg2-set2: [PASS][40] -> [SKIP][41] ([Intel XE#2134])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@fbdev@pan.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@fbdev@pan.html
* igt@fbdev@unaligned-write:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#2134])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@fbdev@unaligned-write.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#873])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#664])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-1/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2370])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#316])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [DMESG-FAIL][47] ([Intel XE#3468]) +1 other test dmesg-fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2327]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-180:
- shard-bmg: [PASS][49] -> [DMESG-FAIL][50] ([Intel XE#3468] / [Intel XE#877])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-180.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1124]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1124]) +13 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1124]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#367]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2191])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#2191])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#367]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#787]) +76 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2887]) +7 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#3432]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#3432])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2907])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2669]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2887]) +18 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#616]) +8 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1152]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2325])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#306])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#306]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-3/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#373]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-8/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2252]) +8 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#373])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2390])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#307])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#307])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#3278])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][79] ([Intel XE#1178]) +1 other test fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2320]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#308]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2321]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1424]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2321])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2-set2: [PASS][85] -> [SKIP][86] ([Intel XE#2423] / [i915#2575]) +145 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2286])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#323])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#309]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_draw_crc@draw-method-blt@rgb565-4tiled:
- shard-bmg: [PASS][90] -> [DMESG-FAIL][91] ([Intel XE#3468]) +5 other tests dmesg-fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2244]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2244])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#776])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#701])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#701])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [PASS][97] -> [FAIL][98] ([Intel XE#2882])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][99] -> [FAIL][100] ([Intel XE#3486])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][101] -> [FAIL][102] ([Intel XE#3321] / [Intel XE#3486])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][103] -> [FAIL][104] ([Intel XE#3487])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [INCOMPLETE][105] ([Intel XE#2597])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1421]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
- shard-lnl: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#3466]) +10 other tests dmesg-warn
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][109] -> [SKIP][110] ([Intel XE#2136]) +43 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][111] ([Intel XE#1195] / [Intel XE#1727])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: [PASS][112] -> [INCOMPLETE][113] ([Intel XE#1195] / [Intel XE#3468]) +1 other test incomplete
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-valid-mode.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#455]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2293] / [Intel XE#2380])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2293])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-1/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-default-mode:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1401]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#352])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#651]) +10 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [FAIL][121] ([Intel XE#2333]) +8 other tests fail
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2136] / [Intel XE#2351]) +22 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#656]) +19 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2312])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2311]) +33 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#651]) +8 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1469])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2136] / [Intel XE#2351]) +17 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#653]) +5 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2313]) +24 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][132] ([Intel XE#3312]) +2 other tests fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1503])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-7/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2501])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#356])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-dg2-set2: [PASS][136] -> [INCOMPLETE][137] ([Intel XE#1195])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_plane@planar-pixel-format-settings.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#599]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-1/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2423] / [i915#2575]) +63 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2493])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2493])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][142] ([Intel XE#361])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2763]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- shard-lnl: NOTRUN -> [DMESG-WARN][144] ([Intel XE#2566] / [Intel XE#3466]) +1 other test dmesg-warn
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2763]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2763]) +11 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#870])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2136]) +60 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
- shard-lnl: [PASS][150] -> [FAIL][151] ([Intel XE#718])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2392])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][153] -> [FAIL][154] ([Intel XE#1430])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [PASS][155] -> [ABORT][156] ([Intel XE#3468])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_pm_rpm@dpms-non-lpsp.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: [PASS][157] -> [SKIP][158] ([Intel XE#2446]) +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2446])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2893]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#1489]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#1489]) +9 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-plane-move.html
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1406]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-4/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2330])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#1127])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#3414]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2426])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][170] -> [FAIL][171] ([Intel XE#899]) +1 other test fail
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@query-idle@pipe-a-hdmi-a-3:
- shard-bmg: [PASS][172] -> [DMESG-WARN][173] ([Intel XE#3468]) +36 other tests dmesg-warn
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_vblank@query-idle@pipe-a-hdmi-a-3.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_vblank@query-idle@pipe-a-hdmi-a-3.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [PASS][174] -> [FAIL][175] ([Intel XE#1522]) +1 other test fail
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-5/igt@kms_vrr@max-min@pipe-a-edp-1.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-3/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#1499]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#756])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1091] / [Intel XE#2849])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#1091] / [Intel XE#2849])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_ccs@suspend-resume:
- shard-bmg: [PASS][180] -> [INCOMPLETE][181] ([Intel XE#3468]) +2 other tests incomplete
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@xe_ccs@suspend-resume.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@xe_ccs@suspend-resume.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#2504])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-access-parameters:
- shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#2905]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@xe_eudebug@basic-vm-access-parameters.html
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#2905]) +6 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-6/igt@xe_eudebug@basic-vm-access-parameters.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2905]) +11 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [TIMEOUT][186] ([Intel XE#1473])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#688]) +4 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-4/igt@xe_evict@evict-beng-threads-large-multi-vm.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#1130]) +101 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_basic@many-execqueues-many-vm-null-defer-mmap:
- shard-lnl: NOTRUN -> [DMESG-WARN][189] ([Intel XE#3466]) +4 other tests dmesg-warn
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@xe_exec_basic@many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#2322]) +10 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#1392]) +5 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_fault_mode@once-basic-prefetch:
- shard-lnl: [PASS][192] -> [DMESG-FAIL][193] ([Intel XE#3466]) +1 other test dmesg-fail
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@xe_exec_fault_mode@once-basic-prefetch.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@xe_exec_fault_mode@once-basic-prefetch.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#288]) +5 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-rebind-prefetch:
- shard-bmg: NOTRUN -> [DMESG-WARN][195] ([Intel XE#3468])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@xe_exec_fault_mode@twice-rebind-prefetch.html
* igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][196] -> [DMESG-FAIL][197] ([Intel XE#3371])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-lnl: [PASS][198] -> [DMESG-WARN][199] ([Intel XE#2687] / [Intel XE#3371])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-3/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
- shard-bmg: [PASS][200] -> [DMESG-WARN][201] ([Intel XE#3515])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-dg2-set2: [PASS][202] -> [DMESG-WARN][203] ([Intel XE#3467]) +1 other test dmesg-warn
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][204] ([Intel XE#3343]) +1 other test dmesg-warn
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][205] ([Intel XE#3467])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [PASS][206] -> [DMESG-WARN][207] ([Intel XE#3467])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [PASS][208] -> [DMESG-WARN][209] ([Intel XE#3184])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@xe_gt_freq@freq_reset_multiple.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-2/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-dg2-set2: [PASS][210] -> [SKIP][211] ([Intel XE#2229]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_module_load@load:
- shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#2457])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@xe_module_load@load.html
* igt@xe_noexec_ping_pong:
- shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#379])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-7/igt@xe_noexec_ping_pong.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#2541]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#1337])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_peer2peer@write:
- shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#1061])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][217] ([Intel XE#2284]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: [PASS][218] -> [DMESG-WARN][219] ([Intel XE#1616])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@xe_pm@s2idle-d3hot-basic-exec.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-6/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [PASS][220] -> [DMESG-WARN][221] ([Intel XE#1616])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][222] ([Intel XE#2284] / [Intel XE#366])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-5/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-dg2-set2: [PASS][223] -> [DMESG-WARN][224] ([Intel XE#3468])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_pm@s4-multiple-execs.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm_residency@gt-c6-freeze@gt1:
- shard-bmg: [PASS][225] -> [DMESG-FAIL][226] ([Intel XE#1727]) +2 other tests dmesg-fail
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@xe_pm_residency@gt-c6-freeze@gt1.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][227] ([Intel XE#944]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][228] ([Intel XE#944])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][229] ([Intel XE#944])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-3/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_query@query-uc-fw-version-huc:
- shard-dg2-set2: [PASS][230] -> [SKIP][231] ([Intel XE#1130]) +257 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_query@query-uc-fw-version-huc.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_query@query-uc-fw-version-huc.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-bmg: [INCOMPLETE][232] -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@core_hotunplug@hotreplug-lateclose.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@core_hotunplug@hotreplug-lateclose.html
* igt@core_hotunplug@unbind-rebind:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1885]) -> [PASS][235] +1 other test pass
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@core_hotunplug@unbind-rebind.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@core_hotunplug@unbind-rebind.html
* igt@fbdev@write:
- shard-dg2-set2: [SKIP][236] ([Intel XE#2134]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@fbdev@write.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@fbdev@write.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg2-set2: [DMESG-WARN][238] ([Intel XE#1727]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-lnl: [INCOMPLETE][240] ([Intel XE#3225]) -> [PASS][241] +2 other tests pass
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][242] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][243] +3 other tests pass
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-lnl: [DMESG-WARN][244] -> [PASS][245] +5 other tests pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-7/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [SKIP][246] ([Intel XE#2423] / [i915#2575]) -> [PASS][247] +37 other tests pass
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-64x64.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][248] ([Intel XE#877]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][250] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][252] ([Intel XE#301]) -> [PASS][253] +1 other test pass
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][254] ([Intel XE#3468]) -> [PASS][255] +161 other tests pass
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [DMESG-WARN][256] ([Intel XE#1727]) -> [PASS][257] +22 other tests pass
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [DMESG-FAIL][258] ([Intel XE#1727]) -> [PASS][259] +8 other tests pass
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][260] ([Intel XE#3468]) -> [PASS][261] +1 other test pass
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a6:
- shard-dg2-set2: [DMESG-FAIL][262] ([Intel XE#3468]) -> [PASS][263] +3 other tests pass
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html
* igt@kms_flip@plain-flip-fb-recreate@b-edp1:
- shard-lnl: [FAIL][264] ([Intel XE#886]) -> [PASS][265] +4 other tests pass
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4-rc-ccs:
- shard-bmg: [DMESG-FAIL][266] -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4-rc-ccs.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4-rc-ccs.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2-set2: [SKIP][268] ([Intel XE#2136]) -> [PASS][269] +14 other tests pass
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_invalid_mode@bad-vsync-end@pipe-c-edp-1:
- shard-lnl: [DMESG-WARN][270] ([Intel XE#3466]) -> [PASS][271] +98 other tests pass
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@kms_invalid_mode@bad-vsync-end@pipe-c-edp-1.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-8/igt@kms_invalid_mode@bad-vsync-end@pipe-c-edp-1.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
- shard-bmg: [DMESG-FAIL][272] ([Intel XE#3468]) -> [PASS][273] +30 other tests pass
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [INCOMPLETE][274] ([Intel XE#1727]) -> [PASS][275] +2 other tests pass
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][276] ([Intel XE#718]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][278] ([Intel XE#1430]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: [SKIP][280] ([Intel XE#2446]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@xe_evict@evict-mixed-threads-small:
- shard-bmg: [DMESG-WARN][282] -> [PASS][283] +5 other tests pass
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@xe_evict@evict-mixed-threads-small.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@xe_evict@evict-mixed-threads-small.html
* igt@xe_exec_basic@once-rebind:
- shard-dg2-set2: [SKIP][284] ([Intel XE#1130]) -> [PASS][285] +92 other tests pass
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_basic@once-rebind.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@xe_exec_basic@once-rebind.html
* igt@xe_exec_compute_mode@many-rebind:
- shard-lnl: [DMESG-WARN][286] ([Intel XE#3514]) -> [PASS][287] +34 other tests pass
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_exec_compute_mode@many-rebind.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-8/igt@xe_exec_compute_mode@many-rebind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-prefetch:
- shard-lnl: [DMESG-FAIL][288] ([Intel XE#3466]) -> [PASS][289] +8 other tests pass
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-3/igt@xe_exec_fault_mode@once-bindexecqueue-prefetch.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-6/igt@xe_exec_fault_mode@once-bindexecqueue-prefetch.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [DMESG-WARN][290] ([Intel XE#3467]) -> [PASS][291] +2 other tests pass
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-dg2-set2: [TIMEOUT][292] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][293] +1 other test pass
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_module_load@unload:
- shard-dg2-set2: [DMESG-WARN][294] ([Intel XE#3467]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_module_load@unload.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@xe_module_load@unload.html
* igt@xe_pm@s2idle-mocs:
- shard-lnl: [DMESG-WARN][296] ([Intel XE#2932]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@xe_pm@s2idle-mocs.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-3/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: [DMESG-WARN][298] ([Intel XE#1616]) -> [PASS][299] +1 other test pass
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_pm@s2idle-multiple-execs.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][300] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-prefetch.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-basic:
- shard-bmg: [DMESG-WARN][302] ([Intel XE#569]) -> [PASS][303] +1 other test pass
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_pm@s3-basic.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@xe_pm@s3-basic.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [DMESG-WARN][304] ([Intel XE#2280]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_addfb_basic@legacy-format:
- shard-dg2-set2: [DMESG-WARN][306] ([Intel XE#1727]) -> [SKIP][307] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_addfb_basic@legacy-format.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_addfb_basic@legacy-format.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][308] ([Intel XE#316]) -> [SKIP][309] ([Intel XE#2136]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][310] ([Intel XE#2136]) -> [SKIP][311] ([Intel XE#316])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][312] ([Intel XE#316]) -> [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][314] ([Intel XE#610]) -> [SKIP][315] ([Intel XE#2136])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][316] ([Intel XE#2136]) -> [SKIP][317] ([Intel XE#1124]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][318] ([Intel XE#1124]) -> [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][320] ([Intel XE#1124]) -> [SKIP][321] ([Intel XE#2136]) +10 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][322] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][323] ([Intel XE#1124]) +2 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][324] ([Intel XE#367]) -> [SKIP][325] ([Intel XE#2423] / [i915#2575]) +6 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][326] ([Intel XE#2423] / [i915#2575]) -> [SKIP][327] ([Intel XE#2191]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][328] ([Intel XE#2191]) -> [SKIP][329] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][330] ([Intel XE#2423] / [i915#2575]) -> [SKIP][331] ([Intel XE#367]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][332] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][333] ([Intel XE#2136]) +17 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][334] ([Intel XE#2907]) -> [SKIP][335] ([Intel XE#2136]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][336] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][337] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][338] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][339] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][340] ([Intel XE#2136]) -> [SKIP][341] ([Intel XE#2907]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][342] ([Intel XE#2136]) -> [SKIP][343] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][344] ([Intel XE#306]) -> [SKIP][345] ([Intel XE#2423] / [i915#2575]) +7 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_chamelium_color@degamma.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-dg2-set2: [SKIP][346] ([Intel XE#2423] / [i915#2575]) -> [SKIP][347] ([Intel XE#373]) +5 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-read.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][348] ([Intel XE#373]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) +16 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic:
- shard-bmg: [INCOMPLETE][350] ([Intel XE#2715]) -> [FAIL][351] ([Intel XE#1178]) +1 other test fail
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_content_protection@atomic.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][352] ([Intel XE#307]) -> [SKIP][353] ([Intel XE#2423] / [i915#2575])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-1.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: [FAIL][354] ([Intel XE#1178]) -> [SKIP][355] ([Intel XE#2423] / [i915#2575])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_content_protection@legacy.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][356] ([Intel XE#1188]) -> [SKIP][357] ([Intel XE#2423] / [i915#2575])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_content_protection@uevent.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_content_protection@uevent.html
- shard-bmg: [DMESG-FAIL][358] ([Intel XE#3468]) -> [FAIL][359] ([Intel XE#1188]) +1 other test fail
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_content_protection@uevent.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2-set2: [SKIP][360] ([Intel XE#455]) -> [SKIP][361] ([Intel XE#2423] / [i915#2575]) +11 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: [SKIP][362] ([Intel XE#308]) -> [SKIP][363] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x170.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][364] ([Intel XE#323]) -> [SKIP][365] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: [SKIP][366] ([Intel XE#2423] / [i915#2575]) -> [SKIP][367] ([Intel XE#307])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_display_modes@mst-extended-mode-negative.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-bmg: [DMESG-FAIL][368] ([Intel XE#3468]) -> [INCOMPLETE][369] ([Intel XE#3468]) +1 other test incomplete
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
- shard-bmg: [DMESG-FAIL][370] -> [INCOMPLETE][371] ([Intel XE#3468])
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][372] ([Intel XE#2351]) -> [SKIP][373] ([Intel XE#455])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_dsc@dsc-basic.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][374] ([Intel XE#455]) -> [SKIP][375] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_dsc@dsc-with-bpc-formats.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: [SKIP][376] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][377] ([Intel XE#455])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_dsc@dsc-with-formats.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][378] ([Intel XE#455]) -> [SKIP][379] ([Intel XE#2136]) +11 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [INCOMPLETE][380] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597] / [Intel XE#3468]) -> [INCOMPLETE][381] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-FAIL][382] ([Intel XE#1727]) -> [SKIP][383] ([Intel XE#2423] / [i915#2575])
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-dg2-set2: [SKIP][384] ([Intel XE#2136]) -> [INCOMPLETE][385] ([Intel XE#1195] / [Intel XE#1727])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][386] ([Intel XE#2136]) -> [SKIP][387] ([Intel XE#455]) +3 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4:
- shard-bmg: [DMESG-FAIL][388] -> [DMESG-FAIL][389] ([Intel XE#3468])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][390] ([Intel XE#651]) -> [SKIP][391] ([Intel XE#2136]) +31 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][392] ([Intel XE#2311]) -> [SKIP][393] ([Intel XE#2312])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][394] ([Intel XE#651]) -> [SKIP][395] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: [DMESG-FAIL][396] ([Intel XE#3468]) -> [FAIL][397] ([Intel XE#2333]) +14 other tests fail
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [INCOMPLETE][398] ([Intel XE#2050] / [Intel XE#3468]) -> [FAIL][399] ([Intel XE#2333])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [DMESG-FAIL][400] ([Intel XE#3468]) -> [SKIP][401] ([Intel XE#2312]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [FAIL][402] ([Intel XE#2333]) -> [INCOMPLETE][403] ([Intel XE#2050])
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [FAIL][404] ([Intel XE#2333]) -> [DMESG-FAIL][405] ([Intel XE#3468]) +1 other test dmesg-fail
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [INCOMPLETE][406] ([Intel XE#1195]) -> [SKIP][407] ([Intel XE#2136])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][408] ([Intel XE#2136]) -> [SKIP][409] ([Intel XE#651]) +7 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][410] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][411] ([Intel XE#651]) +3 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][412] ([Intel XE#658]) -> [SKIP][413] ([Intel XE#2136] / [Intel XE#2351])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][414] ([Intel XE#653]) -> [SKIP][415] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][416] ([Intel XE#2313]) -> [SKIP][417] ([Intel XE#2312]) +2 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][418] ([Intel XE#2136]) -> [SKIP][419] ([Intel XE#653]) +7 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][420] ([Intel XE#653]) -> [SKIP][421] ([Intel XE#2136]) +44 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][422] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][423] ([Intel XE#653]) +9 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][424] ([Intel XE#2423] / [i915#2575]) -> [SKIP][425] ([Intel XE#455]) +3 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2-set2: [DMESG-WARN][426] ([Intel XE#3468]) -> [SKIP][427] ([Intel XE#2423] / [i915#2575])
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_hdr@static-toggle-suspend.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][428] ([Intel XE#2925]) -> [SKIP][429] ([Intel XE#2136])
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][430] ([Intel XE#346]) -> [SKIP][431] ([Intel XE#2136])
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][432] ([Intel XE#2927]) -> [SKIP][433] ([Intel XE#2136])
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][434] ([Intel XE#2423] / [i915#2575]) -> [SKIP][435] ([Intel XE#356])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [SKIP][436] ([Intel XE#2423] / [i915#2575]) -> [FAIL][437] ([Intel XE#361])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][438] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][439] ([Intel XE#2423] / [i915#2575])
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][440] ([Intel XE#2136]) -> [SKIP][441] ([Intel XE#2938])
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][442] ([Intel XE#870]) -> [SKIP][443] ([Intel XE#2136]) +1 other test skip
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][444] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][445] ([Intel XE#1122])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2-set2: [FAIL][446] -> [SKIP][447] ([Intel XE#2136])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_pm_lpsp@kms-lpsp.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2-set2: [DMESG-WARN][448] ([Intel XE#3468]) -> [SKIP][449] ([Intel XE#2446])
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_pm_rpm@modeset-lpsp-stress.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][450] ([Intel XE#1489]) -> [SKIP][451] ([Intel XE#2136]) +13 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][452] ([Intel XE#2136]) -> [SKIP][453] ([Intel XE#1489]) +5 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-464/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][454] ([Intel XE#1122]) -> [SKIP][455] ([Intel XE#2136]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_psr2_su@page_flip-p010.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: [SKIP][456] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][457] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_psr@fbc-pr-no-drrs.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-dg2-set2: [SKIP][458] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][459] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-move.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][460] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][461] ([Intel XE#2136]) +15 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-set2: [SKIP][462] ([Intel XE#2136]) -> [SKIP][463] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@fbc-psr2-suspend.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg2-set2: [SKIP][464] ([Intel XE#2351]) -> [SKIP][465] ([Intel XE#2850] / [Intel XE#929])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-436/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][466] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][467] ([Intel XE#2351]) +1 other test skip
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_psr@psr-sprite-plane-onoff.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-dg2-set2: [SKIP][468] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][469] ([Intel XE#1195] / [Intel XE#2870])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][470] ([Intel XE#1127]) -> [SKIP][471] ([Intel XE#2423] / [i915#2575])
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][472] ([Intel XE#3414]) -> [SKIP][473] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][474] ([Intel XE#362]) -> [SKIP][475] ([Intel XE#2423] / [i915#2575])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][476] ([Intel XE#1500]) -> [SKIP][477] ([Intel XE#2423] / [i915#2575])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][478] ([Intel XE#330]) -> [SKIP][479] ([Intel XE#2423] / [i915#2575])
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][480] ([Intel XE#2168]) -> [SKIP][481] ([Intel XE#2423] / [i915#2575])
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_vrr@lobf.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][482] ([Intel XE#756]) -> [SKIP][483] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_writeback@writeback-fb-id.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@kms_writeback@writeback-fb-id.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][484] ([Intel XE#2423] / [i915#2575]) -> [SKIP][485] ([Intel XE#1091] / [Intel XE#2849])
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][486] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][487] ([Intel XE#1130])
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][488] ([Intel XE#1123]) -> [SKIP][489] ([Intel XE#1130])
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][490] ([Intel XE#1126]) -> [SKIP][491] ([Intel XE#1130])
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][492] ([Intel XE#2905]) -> [SKIP][493] ([Intel XE#1130]) +18 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_eudebug@basic-close.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-vm-bind:
- shard-dg2-set2: [SKIP][494] ([Intel XE#1130]) -> [SKIP][495] ([Intel XE#2905]) +6 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_eudebug@basic-vm-bind.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][496] ([Intel XE#1473]) -> [SKIP][497] ([Intel XE#1130])
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@once-basic-imm:
- shard-dg2-set2: [SKIP][498] ([Intel XE#288]) -> [SKIP][499] ([Intel XE#1130]) +40 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@xe_exec_fault_mode@once-basic-imm.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@xe_exec_fault_mode@once-basic-imm.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch:
- shard-dg2-set2: [SKIP][500] ([Intel XE#1130]) -> [SKIP][501] ([Intel XE#288]) +12 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
* igt@xe_exec_threads@threads-bal-fd-userptr:
- shard-dg2-set2: [FAIL][502] -> [SKIP][503] ([Intel XE#1130])
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_exec_threads@threads-bal-fd-userptr.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_exec_threads@threads-bal-fd-userptr.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [FAIL][504] ([Intel XE#3499]) -> [DMESG-FAIL][505] ([Intel XE#3467])
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [DMESG-FAIL][506] ([Intel XE#3467]) -> [FAIL][507] ([Intel XE#3499])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-dg2-set2: [DMESG-WARN][508] ([Intel XE#3467]) -> [SKIP][509] ([Intel XE#1130]) +2 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-dg2-set2: [SKIP][510] ([Intel XE#1130]) -> [DMESG-WARN][511] ([Intel XE#3467])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [INCOMPLETE][512] ([Intel XE#2998]) -> [SKIP][513] ([Intel XE#1192])
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@xe_live_ktest@xe_bo.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-bmg-4/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-lnl: [DMESG-FAIL][514] ([Intel XE#3466]) -> [SKIP][515] ([Intel XE#1192])
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@xe_live_ktest@xe_dma_buf.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-lnl-8/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][516] ([Intel XE#512]) -> [SKIP][517] ([Intel XE#1130])
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_mmap@small-bar.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@xe_mmap@small-bar.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [DMESG-WARN][518] ([Intel XE#3467]) -> [FAIL][519] ([Intel XE#2136])
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_module_load@reload-no-display.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][520] ([Intel XE#1130]) -> [SKIP][521] ([Intel XE#2541]) +4 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_oa@syncs-ufence-wait:
- shard-dg2-set2: [SKIP][522] ([Intel XE#2541]) -> [SKIP][523] ([Intel XE#1130]) +16 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@xe_oa@syncs-ufence-wait.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][524] ([Intel XE#979]) -> [SKIP][525] ([Intel XE#1130])
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][526] ([Intel XE#1173]) -> [SKIP][527] ([Intel XE#1061]) +1 other test skip
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_peer2peer@read.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][528] ([Intel XE#1130]) -> [SKIP][529] ([Intel XE#2284] / [Intel XE#366])
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][530] ([Intel XE#2284]) -> [SKIP][531] ([Intel XE#1130])
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_pm@d3cold-mocs.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][532] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][533] ([Intel XE#1130]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][534] ([Intel XE#569]) -> [SKIP][535] ([Intel XE#1130]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][536] ([Intel XE#2280]) -> [SKIP][537] ([Intel XE#1130])
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][538] ([Intel XE#944]) -> [SKIP][539] ([Intel XE#1130]) +8 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_query@multigpu-query-engines.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
* igt@xe_vm@large-split-misaligned-binds-8388608:
- shard-dg2-set2: [DMESG-WARN][540] ([Intel XE#1727]) -> [SKIP][541] ([Intel XE#1130]) +2 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_vm@large-split-misaligned-binds-8388608.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-466/igt@xe_vm@large-split-misaligned-binds-8388608.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [ABORT][542] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][543] ([Intel XE#1130])
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_wedged@wedged-mode-toggle.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[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#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#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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[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#2870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2870
[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#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[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#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514
[Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[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#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8115 -> IGTPW_12124
* Linux: xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4 -> xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6
IGTPW_12124: ddeaf3b9a25308dbfb50a26e5985a1e060aefe49 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4
xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6: 1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12124/index.html
[-- Attachment #2: Type: text/html, Size: 164006 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ CI.xeBAT: success for Force connector/crtc attrs to default (rev5)
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
` (6 preceding siblings ...)
2024-11-19 9:42 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-11-19 21:07 ` Patchwork
2024-11-19 21:26 ` ✗ GitLab.Pipeline: warning " Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-19 21:07 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1061 bytes --]
== Series Details ==
Series: Force connector/crtc attrs to default (rev5)
URL : https://patchwork.freedesktop.org/series/137234/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8118_BAT -> XEIGTPW_12138_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-lnl-2
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8118 -> IGTPW_12138
* Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2253-c2bd638d71d621e6887e15ae2e7bf1571b9599de
IGTPW_12138: 12138
IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd
xe-2253-c2bd638d71d621e6887e15ae2e7bf1571b9599de: c2bd638d71d621e6887e15ae2e7bf1571b9599de
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/index.html
[-- Attachment #2: Type: text/html, Size: 1620 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ GitLab.Pipeline: warning for Force connector/crtc attrs to default (rev5)
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
` (7 preceding siblings ...)
2024-11-19 21:07 ` ✓ CI.xeBAT: success for Force connector/crtc attrs to default (rev5) Patchwork
@ 2024-11-19 21:26 ` Patchwork
2024-11-19 21:39 ` ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-19 21:26 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
== Series Details ==
Series: Force connector/crtc attrs to default (rev5)
URL : https://patchwork.freedesktop.org/series/137234/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1313355 for the overview.
build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/66851409):
section_start:1732051099:get_sources
Getting source from Git repository
$ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script
Checking if the user of the pipeline is allowed...
Checking if the job's project is part of a well-known group...
Thank you for contributing to freedesktop.org
Fetching changes...
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out d4142f42 as detached HEAD (ref is intel/IGTPW_12138)...
Skipping Git submodules setup
section_end:1732051107:get_sources
section_start:1732051107:step_script
Executing "step_script" stage of the job script
Using docker image sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-d4142f4281f90a17b779bcd9f19974bba8fd1142 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora@sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ...
section_end:1732051111:step_script
section_start:1732051111:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1732051112:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f: image not known (docker.go:650:0s)
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1313355
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ Fi.CI.BAT: success for Force connector/crtc attrs to default (rev5)
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
` (8 preceding siblings ...)
2024-11-19 21:26 ` ✗ GitLab.Pipeline: warning " Patchwork
@ 2024-11-19 21:39 ` Patchwork
2024-11-20 9:04 ` ✗ CI.xeFULL: failure " Patchwork
2024-11-21 18:57 ` ✗ i915.CI.Full: " Patchwork
11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-19 21:39 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5199 bytes --]
== Series Details ==
Series: Force connector/crtc attrs to default (rev5)
URL : https://patchwork.freedesktop.org/series/137234/
State : success
== Summary ==
CI Bug Log - changes from IGT_8118 -> IGTPW_12138
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/index.html
Participating hosts (46 -> 45)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12138 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-arlh-2: [PASS][1] -> [INCOMPLETE][2] ([i915#12698])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-2/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-arlh-2/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-arls-5: [PASS][3] -> [ABORT][4] ([i915#12829])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-arls-5/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][5] -> [ABORT][6] ([i915#12061])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-arls-5/igt@i915_selftest@live@workarounds.html
* igt@kms_chamelium_edid@dp-edid-read:
- bat-dg2-13: [PASS][7] -> [FAIL][8] ([i915#12505])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-twl-2: [DMESG-WARN][9] ([i915#1982]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-twl-2/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [FAIL][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][13] ([i915#12829]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-8: [ABORT][15] -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-apl-1: [DMESG-WARN][17] -> [PASS][18] +2 other tests pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [SKIP][19] ([i915#9197]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12505]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12505
[i915#12698]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12698
[i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829
[i915#12915]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12915
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8118 -> IGTPW_12138
* Linux: CI_DRM_15720 -> CI_DRM_15721
CI-20190529: 20190529
CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15721: c2bd638d71d621e6887e15ae2e7bf1571b9599de @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12138: 12138
IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/index.html
[-- Attachment #2: Type: text/html, Size: 6068 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ CI.xeFULL: failure for Force connector/crtc attrs to default (rev5)
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
` (9 preceding siblings ...)
2024-11-19 21:39 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-11-20 9:04 ` Patchwork
2024-11-21 18:57 ` ✗ i915.CI.Full: " Patchwork
11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-20 9:04 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 130851 bytes --]
== Series Details ==
Series: Force connector/crtc attrs to default (rev5)
URL : https://patchwork.freedesktop.org/series/137234/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8118_full -> XEIGTPW_12138_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12138_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12138_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_12138_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@wf_vblank-ts-check@d-dp2:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +8 other tests incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check@d-dp2.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check@d-dp2.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_threads@threads-mixed-userptr-invalidate:
- shard-dg2-set2: [PASS][5] -> [DMESG-WARN][6] +2 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html
* igt@xe_vm@munmap-style-unbind-many-all:
- shard-bmg: [PASS][7] -> [DMESG-WARN][8] +6 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_vm@munmap-style-unbind-many-all.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@xe_vm@munmap-style-unbind-many-all.html
#### Warnings ####
* igt@xe_exec_basic@many-execqueues-many-vm-rebind:
- shard-dg2-set2: [SKIP][9] ([Intel XE#1130]) -> [DMESG-WARN][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_basic@many-execqueues-many-vm-rebind.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_exec_basic@many-execqueues-many-vm-rebind.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-WARN][11] ([Intel XE#3467]) -> [DMESG-WARN][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_module_load@reload-no-display.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@xe_module_load@reload-no-display.html
New tests
---------
New tests have been introduced between XEIGT_8118_full and XEIGTPW_12138_full:
### New IGT tests (9) ###
* igt@kms_color@deep-color@pipe-a-hdmi-a-3-ctm:
- Statuses : 1 pass(s)
- Exec time: [22.90] s
* igt@kms_color@deep-color@pipe-a-hdmi-a-3-degamma:
- Statuses : 1 pass(s)
- Exec time: [22.66] s
* igt@kms_color@deep-color@pipe-a-hdmi-a-3-gamma:
- Statuses : 1 pass(s)
- Exec time: [22.70] s
* igt@kms_color@deep-color@pipe-b-hdmi-a-3-ctm:
- Statuses : 1 pass(s)
- Exec time: [22.63] s
* igt@kms_color@deep-color@pipe-b-hdmi-a-3-degamma:
- Statuses : 1 pass(s)
- Exec time: [22.66] s
* igt@kms_color@deep-color@pipe-b-hdmi-a-3-gamma:
- Statuses : 1 pass(s)
- Exec time: [22.73] s
* igt@kms_color@deep-color@pipe-d-hdmi-a-3-ctm:
- Statuses : 1 pass(s)
- Exec time: [22.68] s
* igt@kms_color@deep-color@pipe-d-hdmi-a-3-degamma:
- Statuses : 1 pass(s)
- Exec time: [22.68] s
* igt@kms_color@deep-color@pipe-d-hdmi-a-3-gamma:
- Statuses : 1 pass(s)
- Exec time: [22.77] s
Known issues
------------
Here are the changes found in XEIGTPW_12138_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@basic:
- shard-dg2-set2: NOTRUN -> [FAIL][13] ([Intel XE#3440])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@core_getversion@basic.html
* igt@core_hotunplug@unplug-rescan:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1885])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@core_hotunplug@unplug-rescan.html
* igt@fbdev@read:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2134])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@fbdev@read.html
* igt@fbdev@write:
- shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2134]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@fbdev@write.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@fbdev@write.html
* igt@kms_atomic@plane-overlay-legacy:
- shard-lnl: [PASS][18] -> [DMESG-WARN][19] ([Intel XE#3466]) +1 other test dmesg-warn
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_atomic@plane-overlay-legacy.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-3/igt@kms_atomic@plane-overlay-legacy.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1407])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2327]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2191]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2191])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#367]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +7 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +7 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#3433]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#787]) +118 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html
* igt@kms_chamelium_audio@dp-audio:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#373]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-1/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2325])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-3/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3278])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#307])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][44] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1188])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2320])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2321])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x64:
- shard-dg2-set2: [PASS][48] -> [SKIP][49] ([Intel XE#2423] / [i915#2575]) +88 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-64x64.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#308])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#2577] / [Intel XE#3106]) +1 other test fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_cursor_edge_walk@128x128-right-edge.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-2/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#309]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1508])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1340])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#3070])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2244]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2244])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1138])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][61] -> [FAIL][62] ([Intel XE#301])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#2882]) +6 other tests fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#3487])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][67] -> [DMESG-WARN][68] ([Intel XE#3468]) +61 other tests dmesg-warn
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1421]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-4/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2423] / [i915#2575]) +33 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@dpms-vs-vblank-race:
- shard-bmg: NOTRUN -> [INCOMPLETE][73] ([Intel XE#3468]) +1 other test incomplete
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@kms_flip@dpms-vs-vblank-race.html
* igt@kms_flip@dpms-vs-vblank-race@a-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][74] ([Intel XE#3468])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@kms_flip@dpms-vs-vblank-race@a-dp2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#886]) +6 other tests fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2:
- shard-bmg: [PASS][77] -> [DMESG-FAIL][78] ([Intel XE#3468]) +20 other tests dmesg-fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][79] ([Intel XE#301]) +5 other tests fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][80] ([Intel XE#3486])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [PASS][81] -> [INCOMPLETE][82] ([Intel XE#2635])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2293] / [Intel XE#2380])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-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-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2293])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1397] / [Intel XE#1745])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#455]) +7 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2136]) +27 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1401]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#651]) +8 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136]) +31 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2-set2: [PASS][94] -> [SKIP][95] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][96] ([Intel XE#2333]) +7 other tests fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +18 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#651]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#656]) +21 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#658]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#653]) +5 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2313]) +15 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1503])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +8 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-bmg: NOTRUN -> [DMESG-WARN][106] ([Intel XE#3468]) +18 other tests dmesg-warn
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +11 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-6/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-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +9 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2446])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2-set2: [PASS][110] -> [INCOMPLETE][111] ([Intel XE#1195] / [Intel XE#3468])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_pm_rpm@cursor-dpms.html
- shard-bmg: [PASS][112] -> [INCOMPLETE][113] ([Intel XE#3468])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_pm_rpm@cursor-dpms.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-5/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#2446]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@dpms-non-lpsp.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1439] / [Intel XE#3141])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-5/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-41:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][117] ([Intel XE#3468]) +3 other tests dmesg-warn
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1489])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2893]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1122])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2387]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1128])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1406]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-4/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-4/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#3414]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#3414]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-8/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2330])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_sysfs_edid_timing:
- shard-bmg: [PASS][130] -> [FAIL][131] ([Intel XE#1174])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_sysfs_edid_timing.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@kms_sysfs_edid_timing.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1499])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-3/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#756]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#756])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@testdisplay:
- shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#2423]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@testdisplay.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@testdisplay.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1280] / [Intel XE#455])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_eudebug@basic-close:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-3/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2905])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][141] ([Intel XE#1473])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-large.html
- shard-bmg: NOTRUN -> [TIMEOUT][142] ([Intel XE#1473])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#688]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2322]) +8 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1392]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_basic@no-exec-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1130]) +54 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_exec_basic@no-exec-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][148] -> [DMESG-FAIL][149] ([Intel XE#3371])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][150] -> [DMESG-WARN][151] ([Intel XE#3467] / [Intel XE#3468])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][152] ([Intel XE#3467] / [Intel XE#3468])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][153] ([Intel XE#1999]) +1 other test fail
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2457])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@xe_module_load@force-load.html
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#378])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_module_load@force-load.html
* igt@xe_module_load@unload:
- shard-bmg: [PASS][156] -> [DMESG-WARN][157] ([Intel XE#3467])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_module_load@unload.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-5/igt@xe_module_load@unload.html
- shard-dg2-set2: [PASS][158] -> [DMESG-WARN][159] ([Intel XE#3467])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@unload.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_module_load@unload.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2541]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2284] / [Intel XE#366])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-5/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2284])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: [PASS][163] -> [DMESG-WARN][164] ([Intel XE#3468])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@s2idle-exec-after.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [PASS][165] -> [DMESG-WARN][166] ([Intel XE#1616] / [Intel XE#3468])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-userptr.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-userptr.html
- shard-lnl: [PASS][167] -> [DMESG-WARN][168] ([Intel XE#1616] / [Intel XE#3466])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@xe_pm@s2idle-vm-bind-userptr.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-3/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [PASS][169] -> [DMESG-WARN][170] ([Intel XE#3468] / [Intel XE#569])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_pm@s3-exec-after.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][171] -> [DMESG-WARN][172] ([Intel XE#3468] / [Intel XE#569])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-basic-exec:
- shard-bmg: [PASS][173] -> [DMESG-WARN][174] ([Intel XE#1727] / [Intel XE#3468])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_pm@s4-basic-exec.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-5/igt@xe_pm@s4-basic-exec.html
- shard-dg2-set2: [PASS][175] -> [DMESG-WARN][176] ([Intel XE#1727] / [Intel XE#3468])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@s4-basic-exec.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#584])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-1/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][178] ([Intel XE#1727] / [Intel XE#3088] / [Intel XE#3468])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][179] ([Intel XE#3088] / [Intel XE#3468])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][180] -> [FAIL][181] ([Intel XE#958])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#944]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_vm@large-split-binds-536870912:
- shard-dg2-set2: [PASS][183] -> [SKIP][184] ([Intel XE#1130]) +156 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_vm@large-split-binds-536870912.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_vm@large-split-binds-536870912.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: NOTRUN -> [DMESG-WARN][185] ([Intel XE#2919])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-dg2-set2: [SKIP][186] ([Intel XE#1885]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_hotunplug@hotrebind-lateclose.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@core_hotunplug@hotrebind-lateclose.html
* igt@core_hotunplug@hotreplug:
- shard-bmg: [DMESG-WARN][188] ([Intel XE#3521]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@core_hotunplug@hotreplug.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-4/igt@core_hotunplug@hotreplug.html
* igt@core_hotunplug@hotunbind-rebind:
- shard-dg2-set2: [DMESG-WARN][190] ([Intel XE#3521]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@core_hotunplug@hotunbind-rebind.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [FAIL][192] ([Intel XE#3339]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][194] ([Intel XE#911]) -> [PASS][195] +3 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [INCOMPLETE][196] ([Intel XE#2613]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [DMESG-FAIL][198] ([Intel XE#3468]) -> [PASS][199] +28 other tests pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-lnl: [INCOMPLETE][200] ([Intel XE#3466]) -> [PASS][201] +1 other test pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-4/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [DMESG-WARN][202] ([Intel XE#2705]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2:
- shard-bmg: [DMESG-WARN][204] -> [PASS][205] +1 other test pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-4/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][206] ([Intel XE#301]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [INCOMPLETE][208] ([Intel XE#2597]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@busy-flip:
- shard-dg2-set2: [SKIP][210] ([Intel XE#2423] / [i915#2575]) -> [PASS][211] +108 other tests pass
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip@busy-flip.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_flip@busy-flip.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [DMESG-FAIL][212] ([Intel XE#1727]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-bmg: [DMESG-WARN][214] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-5/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: [FAIL][216] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@c-edp1:
- shard-lnl: [FAIL][218] ([Intel XE#886]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-dg2-set2: [INCOMPLETE][220] ([Intel XE#1195] / [Intel XE#3468]) -> [PASS][221] +1 other test pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [SKIP][222] ([Intel XE#2351]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][224] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][225] +13 other tests pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][226] ([Intel XE#2136]) -> [PASS][227] +34 other tests pass
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][228] ([Intel XE#1503]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_cursor@primary:
- shard-lnl: [DMESG-WARN][230] ([Intel XE#3466]) -> [PASS][231] +43 other tests pass
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_plane_cursor@primary.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-4/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [DMESG-WARN][232] ([Intel XE#2566]) -> [PASS][233] +1 other test pass
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][234] ([Intel XE#718]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [INCOMPLETE][236] ([Intel XE#2864]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
- shard-dg2-set2: [ABORT][238] ([Intel XE#3468]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@universal-planes:
- shard-dg2-set2: [SKIP][240] ([Intel XE#2446]) -> [PASS][241] +4 other tests pass
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@universal-planes.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_pm_rpm@universal-planes.html
* igt@kms_psr@psr2-sprite-render:
- shard-lnl: [FAIL][242] -> [PASS][243] +1 other test pass
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_psr@psr2-sprite-render.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-7/igt@kms_psr@psr2-sprite-render.html
* igt@kms_sequence@get-idle:
- shard-bmg: [DMESG-WARN][244] ([Intel XE#3468]) -> [PASS][245] +108 other tests pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_sequence@get-idle.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@kms_sequence@get-idle.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][246] ([Intel XE#2883]) -> [PASS][247] +2 other tests pass
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][248] ([Intel XE#899]) -> [PASS][249] +1 other test pass
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@query-busy:
- shard-bmg: [INCOMPLETE][250] ([Intel XE#1727]) -> [PASS][251] +1 other test pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_vblank@query-busy.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_vblank@query-busy.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [INCOMPLETE][252] -> [PASS][253] +2 other tests pass
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_vrr@negative-basic.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-4/igt@kms_vrr@negative-basic.html
* igt@xe_evict@evict-small-multi-vm:
- shard-dg2-set2: [DMESG-WARN][254] ([Intel XE#1727]) -> [PASS][255] +1 other test pass
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_evict@evict-small-multi-vm.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [INCOMPLETE][256] ([Intel XE#1195]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
- shard-lnl: [DMESG-FAIL][258] ([Intel XE#3466]) -> [PASS][259] +3 other tests pass
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-lnl: [DMESG-WARN][260] ([Intel XE#3371]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][262] ([Intel XE#3467]) -> [PASS][263] +3 other tests pass
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [FAIL][264] ([Intel XE#2136]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_module_load@reload-no-display.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][266] ([Intel XE#569]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_pm@s3-d3hot-basic-exec.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer:
- shard-bmg: [DMESG-WARN][268] ([Intel XE#1727]) -> [PASS][269] +8 other tests pass
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-8/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [SKIP][270] ([Intel XE#1130]) -> [PASS][271] +180 other tests pass
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][272] ([Intel XE#316]) -> [SKIP][273] ([Intel XE#2136] / [Intel XE#2351])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][274] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][275] ([Intel XE#316]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][276] ([Intel XE#2136]) -> [SKIP][277] ([Intel XE#316]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][278] ([Intel XE#316]) -> [SKIP][279] ([Intel XE#2136]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][280] ([Intel XE#2136]) -> [SKIP][281] ([Intel XE#1124]) +5 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][282] ([Intel XE#1124]) -> [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][284] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][285] ([Intel XE#1124]) +4 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][286] ([Intel XE#1124]) -> [SKIP][287] ([Intel XE#2136]) +8 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][288] ([Intel XE#367]) -> [SKIP][289] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][290] ([Intel XE#2423] / [i915#2575]) -> [SKIP][291] ([Intel XE#2191]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][292] ([Intel XE#2191]) -> [SKIP][293] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][294] ([Intel XE#2423] / [i915#2575]) -> [SKIP][295] ([Intel XE#367]) +8 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][296] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][297] ([Intel XE#2136]) +10 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][298] ([Intel XE#3442]) -> [SKIP][299] ([Intel XE#2136])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][300] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][301] ([Intel XE#455] / [Intel XE#787])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-dg2-set2: [SKIP][302] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][303] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][304] ([Intel XE#2136]) -> [SKIP][305] ([Intel XE#2907])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][308] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][309] ([Intel XE#314])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-dg2-set2: [SKIP][310] ([Intel XE#373]) -> [SKIP][311] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_chamelium_audio@dp-audio.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: [SKIP][312] ([Intel XE#306]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_chamelium_color@ctm-negative.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][314] ([Intel XE#2423] / [i915#2575]) -> [SKIP][315] ([Intel XE#306]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_chamelium_color@gamma.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][316] ([Intel XE#2423] / [i915#2575]) -> [SKIP][317] ([Intel XE#373]) +12 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@invalid-degamma-lut-sizes:
- shard-dg2-set2: [DMESG-WARN][318] ([Intel XE#1727]) -> [SKIP][319] ([Intel XE#2423] / [i915#2575])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_color@invalid-degamma-lut-sizes.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_color@invalid-degamma-lut-sizes.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [SKIP][320] ([Intel XE#2423] / [i915#2575]) -> [FAIL][321] ([Intel XE#1178]) +1 other test fail
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][322] ([Intel XE#2423] / [i915#2575]) -> [SKIP][323] ([Intel XE#307])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][324] ([Intel XE#307]) -> [SKIP][325] ([Intel XE#2423] / [i915#2575])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][326] ([Intel XE#2423] / [i915#2575]) -> [FAIL][327] ([Intel XE#1188])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_content_protection@uevent.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][328] ([Intel XE#308]) -> [SKIP][329] ([Intel XE#2423] / [i915#2575])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][330] ([Intel XE#2423] / [i915#2575]) -> [SKIP][331] ([Intel XE#308])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: [SKIP][332] ([Intel XE#2423] / [i915#2575]) -> [SKIP][333] ([Intel XE#455]) +9 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-max-size.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2-set2: [INCOMPLETE][334] ([Intel XE#1195] / [Intel XE#3226]) -> [SKIP][335] ([Intel XE#2423] / [i915#2575])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][336] ([Intel XE#2423] / [i915#2575]) -> [SKIP][337] ([Intel XE#323]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-dg2-set2: [FAIL][338] ([Intel XE#1475]) -> [SKIP][339] ([Intel XE#2423] / [i915#2575])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][340] ([Intel XE#323]) -> [SKIP][341] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [FAIL][342] ([Intel XE#1695]) -> [DMESG-FAIL][343] ([Intel XE#3468])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [DMESG-FAIL][344] ([Intel XE#3468]) -> [FAIL][345] ([Intel XE#1695])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][346] ([Intel XE#776]) -> [SKIP][347] ([Intel XE#2136]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][348] ([Intel XE#2423] / [i915#2575]) -> [SKIP][349] ([Intel XE#703])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][350] ([Intel XE#2423] / [i915#2575]) -> [SKIP][351] ([Intel XE#1135])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_feature_discovery@psr1.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][352] ([Intel XE#301]) -> [SKIP][353] ([Intel XE#2423] / [i915#2575])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [DMESG-FAIL][354] ([Intel XE#1727]) -> [FAIL][355] ([Intel XE#301])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [SKIP][356] ([Intel XE#2423] / [i915#2575]) -> [FAIL][357] ([Intel XE#301])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: [SKIP][358] ([Intel XE#455]) -> [SKIP][359] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][360] ([Intel XE#455]) -> [SKIP][361] ([Intel XE#2136]) +3 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][362] ([Intel XE#2136]) -> [SKIP][363] ([Intel XE#455]) +3 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][364] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][365] ([Intel XE#455]) +4 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][366] ([i915#5274]) -> [SKIP][367] ([Intel XE#2423] / [i915#2575])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_force_connector_basic@prune-stale-modes.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][368] ([Intel XE#651]) -> [SKIP][369] ([Intel XE#2136]) +22 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][370] ([Intel XE#2136]) -> [SKIP][371] ([Intel XE#651]) +21 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][372] ([Intel XE#651]) -> [SKIP][373] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [DMESG-FAIL][374] ([Intel XE#3468]) -> [FAIL][375] ([Intel XE#2333]) +6 other tests fail
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2-set2: [INCOMPLETE][376] ([Intel XE#1195] / [Intel XE#3468]) -> [ABORT][377] ([Intel XE#3468])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][378] ([Intel XE#2333]) -> [DMESG-FAIL][379] ([Intel XE#3468]) +9 other tests dmesg-fail
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2-set2: [SKIP][380] ([Intel XE#2136]) -> [INCOMPLETE][381] ([Intel XE#1195] / [Intel XE#3468])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-suspend.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][382] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][383] ([Intel XE#651]) +10 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][384] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][385] ([Intel XE#653]) +5 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][386] ([Intel XE#653]) -> [SKIP][387] ([Intel XE#2136]) +25 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][388] ([Intel XE#653]) -> [SKIP][389] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: [SKIP][390] ([Intel XE#2136]) -> [SKIP][391] ([Intel XE#653]) +32 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][392] ([Intel XE#605]) -> [SKIP][393] ([Intel XE#2423] / [i915#2575])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][394] ([Intel XE#2136]) -> [SKIP][395] ([Intel XE#2925])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][396] ([Intel XE#2136]) -> [SKIP][397] ([Intel XE#346])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][398] ([Intel XE#2925]) -> [SKIP][399] ([Intel XE#2136])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [FAIL][400] ([Intel XE#616]) -> [SKIP][401] ([Intel XE#2423] / [i915#2575])
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_cursor@primary.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][402] ([Intel XE#2423] / [i915#2575]) -> [SKIP][403] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][404] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][405] ([Intel XE#2423] / [i915#2575])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][406] ([Intel XE#2938]) -> [SKIP][407] ([Intel XE#2136])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: [SKIP][408] ([Intel XE#870]) -> [SKIP][409] ([Intel XE#2136])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_backlight@fade-with-dpms.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][410] ([Intel XE#2136]) -> [SKIP][411] ([Intel XE#870]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][412] ([Intel XE#3309]) -> [SKIP][413] ([Intel XE#2136])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [FAIL][414] ([Intel XE#1430]) -> [DMESG-FAIL][415] ([Intel XE#3468])
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_pm_dc@dc6-dpms.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@basic-rte:
- shard-dg2-set2: [ABORT][416] ([Intel XE#3468]) -> [SKIP][417] ([Intel XE#2446]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_pm_rpm@basic-rte.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_pm_rpm@basic-rte.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-dg2-set2: [SKIP][418] ([Intel XE#2446]) -> [DMESG-WARN][419] ([Intel XE#3468])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@legacy-planes-dpms.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-dg2-set2: [DMESG-WARN][420] ([Intel XE#2042]) -> [SKIP][421] ([Intel XE#2446])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][422] ([Intel XE#2136]) -> [SKIP][423] ([Intel XE#1489]) +7 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][424] ([Intel XE#1489]) -> [SKIP][425] ([Intel XE#2136]) +6 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg2-set2: [SKIP][426] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][427] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr@fbc-psr2-cursor-blt.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][428] ([Intel XE#2136]) -> [SKIP][429] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][430] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][431] ([Intel XE#2136]) +10 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][432] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][433] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr@psr-dpms.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-primary-page-flip:
- shard-dg2-set2: [SKIP][434] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][435] ([Intel XE#2351]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr@psr-primary-page-flip.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][436] ([Intel XE#2423] / [i915#2575]) -> [SKIP][437] ([Intel XE#3414]) +2 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][438] ([Intel XE#2423] / [i915#2575]) -> [SKIP][439] ([Intel XE#1127])
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][440] ([Intel XE#1127]) -> [SKIP][441] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][442] ([Intel XE#3414]) -> [SKIP][443] ([Intel XE#2423] / [i915#2575])
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][444] ([Intel XE#455]) -> [SKIP][445] ([Intel XE#2423] / [i915#2575]) +10 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_vrr@flip-dpms.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][446] ([Intel XE#2423] / [i915#2575]) -> [SKIP][447] ([Intel XE#2168])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_vrr@lobf.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][448] ([Intel XE#756]) -> [SKIP][449] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][450] ([Intel XE#2423] / [i915#2575]) -> [SKIP][451] ([Intel XE#756]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_writeback@writeback-invalid-parameters.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][452] ([Intel XE#2423] / [i915#2575]) -> [SKIP][453] ([Intel XE#1091] / [Intel XE#2849])
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][454] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][455] ([Intel XE#1130])
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][456] ([Intel XE#1130]) -> [SKIP][457] ([Intel XE#1280] / [Intel XE#455])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][458] ([Intel XE#1123]) -> [SKIP][459] ([Intel XE#1130])
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][460] ([Intel XE#1126]) -> [SKIP][461] ([Intel XE#1130])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: [SKIP][462] ([Intel XE#2905]) -> [SKIP][463] ([Intel XE#1130]) +12 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_eudebug_online@preempt-breakpoint.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [SKIP][464] ([Intel XE#1130]) -> [TIMEOUT][465] ([Intel XE#1473] / [Intel XE#402])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [SKIP][466] ([Intel XE#1130]) -> [FAIL][467] ([Intel XE#1600])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][468] ([Intel XE#1473]) -> [SKIP][469] ([Intel XE#1130])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [SKIP][470] ([Intel XE#1130]) -> [TIMEOUT][471] ([Intel XE#1473])
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@twice-userptr:
- shard-dg2-set2: [DMESG-WARN][472] ([Intel XE#1727]) -> [SKIP][473] ([Intel XE#1130]) +3 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_exec_basic@twice-userptr.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_exec_basic@twice-userptr.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][474] ([Intel XE#288]) -> [SKIP][475] ([Intel XE#1130]) +35 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][476] ([Intel XE#1130]) -> [SKIP][477] ([Intel XE#288]) +39 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: [SKIP][478] ([Intel XE#2360]) -> [SKIP][479] ([Intel XE#1130])
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][480] ([Intel XE#1130]) -> [SKIP][481] ([Intel XE#2360])
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: [SKIP][482] ([Intel XE#1130]) -> [SKIP][483] ([Intel XE#2905]) +13 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-dg2-set2: [DMESG-WARN][484] ([Intel XE#3343]) -> [SKIP][485] ([Intel XE#1130])
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [DMESG-WARN][486] ([Intel XE#3343]) -> [DMESG-WARN][487] ([Intel XE#3343] / [Intel XE#3468])
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-dg2-set2: [SKIP][488] ([Intel XE#1130]) -> [DMESG-WARN][489] ([Intel XE#3343]) +1 other test dmesg-warn
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [FAIL][490] ([Intel XE#3499]) -> [DMESG-FAIL][491] ([Intel XE#3467])
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-dg2-set2: [SKIP][492] ([Intel XE#1130]) -> [DMESG-WARN][493] ([Intel XE#3467]) +1 other test dmesg-warn
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
- shard-bmg: [FAIL][494] ([Intel XE#3499]) -> [DMESG-FAIL][495] ([Intel XE#3467] / [Intel XE#3468])
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [DMESG-FAIL][496] ([Intel XE#3467]) -> [FAIL][497] ([Intel XE#3499])
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-dg2-set2: [DMESG-WARN][498] ([Intel XE#3467]) -> [SKIP][499] ([Intel XE#1130]) +4 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_gt_freq@freq_suspend:
- shard-dg2-set2: [SKIP][500] ([Intel XE#1130]) -> [DMESG-WARN][501] ([Intel XE#3468]) +1 other test dmesg-warn
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_gt_freq@freq_suspend.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-464/igt@xe_gt_freq@freq_suspend.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][502] ([Intel XE#1130]) -> [SKIP][503] ([Intel XE#255])
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_huc_copy@huc_copy.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [INCOMPLETE][504] ([Intel XE#2998]) -> [SKIP][505] ([Intel XE#1192])
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_live_ktest@xe_bo.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-3/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-lnl: [DMESG-FAIL][506] ([Intel XE#3466]) -> [SKIP][507] ([Intel XE#1192])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@xe_live_ktest@xe_dma_buf.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-lnl-1/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [SKIP][508] ([Intel XE#1192]) -> [FAIL][509] ([Intel XE#1999])
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_live_ktest@xe_mocs.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][510] ([Intel XE#1130]) -> [SKIP][511] ([Intel XE#560])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_media_fill@media-fill.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-436/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][512] ([Intel XE#1130]) -> [SKIP][513] ([Intel XE#512])
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_mmap@small-bar.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@xe_mmap@small-bar.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [FAIL][514] ([Intel XE#2136]) -> [DMESG-WARN][515] ([Intel XE#3467])
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_module_load@many-reload.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload:
- shard-bmg: [DMESG-WARN][516] ([Intel XE#3468]) -> [DMESG-WARN][517] ([Intel XE#3467])
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_module_load@reload.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-1/igt@xe_module_load@reload.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: [SKIP][518] ([Intel XE#2541]) -> [SKIP][519] ([Intel XE#1130]) +9 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_oa@non-privileged-map-oa-buffer.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][520] ([Intel XE#1130]) -> [SKIP][521] ([Intel XE#2541]) +6 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][522] ([Intel XE#1130]) -> [SKIP][523] ([Intel XE#2839] / [Intel XE#977])
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#979])
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][526] ([Intel XE#1173]) -> [SKIP][527] ([Intel XE#1061])
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_peer2peer@write.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][528] ([Intel XE#1130]) -> [SKIP][529] ([Intel XE#2284] / [Intel XE#366])
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-435/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][530] ([Intel XE#2284]) -> [SKIP][531] ([Intel XE#1130])
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_pm@d3cold-mocs.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-FAIL][532] ([Intel XE#3468]) -> [SKIP][533] ([Intel XE#1130])
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][534] ([Intel XE#569]) -> [SKIP][535] ([Intel XE#1130])
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-434/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [DMESG-WARN][536] ([Intel XE#569]) -> [DMESG-WARN][537] ([Intel XE#3468] / [Intel XE#569])
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html
- shard-dg2-set2: [DMESG-WARN][538] ([Intel XE#569]) -> [DMESG-WARN][539] ([Intel XE#3468] / [Intel XE#569])
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-multiple-execs.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-463/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm_residency@gt-c6-freeze@gt1:
- shard-bmg: [DMESG-FAIL][540] ([Intel XE#1727]) -> [DMESG-FAIL][541] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@xe_pm_residency@gt-c6-freeze@gt1.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][542] ([Intel XE#1130]) -> [SKIP][543] ([Intel XE#944]) +5 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][544] ([Intel XE#944]) -> [SKIP][545] ([Intel XE#1130]) +4 other tests skip
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_query@multigpu-query-oa-units.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][546] ([Intel XE#3342]) -> [SKIP][547] ([Intel XE#1130])
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [ABORT][548] -> [ABORT][549] ([Intel XE#3521])
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174
[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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
[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#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[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#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[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#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[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#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8118 -> IGTPW_12138
* Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2253-c2bd638d71d621e6887e15ae2e7bf1571b9599de
IGTPW_12138: 12138
IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd
xe-2253-c2bd638d71d621e6887e15ae2e7bf1571b9599de: c2bd638d71d621e6887e15ae2e7bf1571b9599de
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12138/index.html
[-- Attachment #2: Type: text/html, Size: 167361 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ i915.CI.Full: failure for Force connector/crtc attrs to default (rev5)
2024-11-18 9:59 [i-g-t V3 0/4] Force connector/crtc attrs to default Bhanuprakash Modem
` (10 preceding siblings ...)
2024-11-20 9:04 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-11-21 18:57 ` Patchwork
11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-11-21 18:57 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
== Series Details ==
Series: Force connector/crtc attrs to default (rev5)
URL : https://patchwork.freedesktop.org/series/137234/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15721_full -> IGTPW_12138_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12138_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12138_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_12138/index.html
Participating hosts (10 -> 12)
------------------------------
Additional (2): shard-snb-0 shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12138_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_setmaster@master-drop-set-root:
- shard-dg2: [PASS][1] -> ([PASS][2], [FAIL][3])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-1/igt@core_setmaster@master-drop-set-root.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@core_setmaster@master-drop-set-root.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@core_setmaster@master-drop-set-root.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2: [PASS][4] -> ([PASS][5], [SKIP][6]) +7 other tests ( 1 pass, 1 skip )
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-2/igt@core_setmaster@master-drop-set-shared-fd.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@core_setmaster@master-drop-set-shared-fd.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-mtlp: [PASS][7] -> [INCOMPLETE][8] +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-mtlp-3/igt@gem_ctx_isolation@preservation-s3.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-5/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_exercise_blt@fast-copy-emit:
- shard-rkl: [PASS][9] -> ([PASS][10], [DMESG-WARN][11]) +5 other tests ( 1 dmesg-warn, 1 pass )
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-rkl-1/igt@gem_exercise_blt@fast-copy-emit.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@gem_exercise_blt@fast-copy-emit.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@gem_exercise_blt@fast-copy-emit.html
* igt@i915_pm_rpm@gem-evict-pwrite:
- shard-dg2: NOTRUN -> ([SKIP][12], [SKIP][13]) ([i915#4077])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@i915_pm_rpm@gem-evict-pwrite.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@i915_pm_rpm@gem-evict-pwrite.html
* igt@i915_pm_rpm@system-suspend:
- shard-dg2: NOTRUN -> [SKIP][14] +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@i915_pm_rpm@system-suspend.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [PASS][15] -> ([DMESG-FAIL][16], [DMESG-FAIL][17])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-rkl-5/igt@i915_selftest@live@gt_pm.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@i915_selftest@live@gt_pm.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@i915_selftest@live@gt_pm.html
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][18] -> [DMESG-WARN][19] +14 other tests dmesg-warn
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-rkl-1/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-2.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-2.html
* igt@kms_color@ctm-0-50:
- shard-tglu: [PASS][20] -> ([ABORT][21], [PASS][22]) +1 other test ( 1 abort, 1 pass )
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-tglu-9/igt@kms_color@ctm-0-50.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-7/igt@kms_color@ctm-0-50.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-8/igt@kms_color@ctm-0-50.html
* igt@kms_cursor_legacy@torture-move:
- shard-dg1: [PASS][23] -> ([DMESG-WARN][24], [PASS][25]) +1 other test ( 1 dmesg-warn, 1 pass )
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg1-13/igt@kms_cursor_legacy@torture-move.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_cursor_legacy@torture-move.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_cursor_legacy@torture-move.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2: NOTRUN -> ([SKIP][26], [SKIP][27])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-dg2: NOTRUN -> ([SKIP][28], [SKIP][29]) ([i915#2575]) +2 other tests ( 2 skip )
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_flip@2x-flip-vs-modeset.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1:
- shard-rkl: NOTRUN -> ([DMESG-WARN][30], [DMESG-WARN][31]) +5 other tests ( 2 dmesg-warn )
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [PASS][32] -> ([PASS][33], [CRASH][34])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2: [PASS][35] -> ([SKIP][36], [SKIP][37]) ([i915#2575])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-8/igt@kms_hdmi_inject@inject-audio.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@kms_hdmi_inject@inject-audio.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_hdmi_inject@inject-audio.html
- shard-rkl: [PASS][38] -> ([SKIP][39], [SKIP][40])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-rkl-3/igt@kms_hdmi_inject@inject-audio.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@kms_hdmi_inject@inject-audio.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@kms_hdmi_inject@inject-audio.html
- shard-dg1: [PASS][41] -> [SKIP][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg1-12/igt@kms_hdmi_inject@inject-audio.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_hdmi_inject@inject-audio.html
- shard-tglu: [PASS][43] -> ([SKIP][44], [SKIP][45])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
- shard-mtlp: [PASS][46] -> [SKIP][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-rkl: NOTRUN -> ([PASS][48], [DMESG-WARN][49]) +1 other test ( 1 dmesg-warn, 1 pass )
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-rkl: [PASS][50] -> ([DMESG-WARN][51], [DMESG-WARN][52]) +43 other tests ( 2 dmesg-warn )
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-rkl-4/igt@kms_pm_dc@dc5-dpms-negative.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@kms_pm_dc@dc5-dpms-negative.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2: [PASS][53] -> [SKIP][54] +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-6/igt@kms_pm_rpm@basic-pci-d3-state.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> ([SKIP][55], [SKIP][56]) ([i915#9519])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_sequence@get-forked-busy@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][57] +10 other tests dmesg-warn
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@kms_sequence@get-forked-busy@pipe-b-hdmi-a-2.html
* igt@perf_pmu@init-wait:
- shard-dg2: NOTRUN -> ([PASS][58], [SKIP][59]) +3 other tests ( 1 pass, 1 skip )
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@perf_pmu@init-wait.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@perf_pmu@init-wait.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [SKIP][60] -> ([SKIP][61], [PASS][62]) +3 other tests ( 1 pass, 1 skip )
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@device_reset@unbind-reset-rebind.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: [SKIP][63] ([i915#4270]) -> ([TIMEOUT][64], [TIMEOUT][65]) +1 other test ( 2 timeout )
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [DMESG-FAIL][66] ([i915#12964]) -> ([FAIL][67], [FAIL][68])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@gem_tiled_swapping@non-threaded.html
- shard-snb: [FAIL][69] ([i915#12941]) -> [FAIL][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-snb7/igt@gem_tiled_swapping@non-threaded.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-snb2/igt@gem_tiled_swapping@non-threaded.html
- shard-tglu: [FAIL][71] ([i915#12941]) -> ([FAIL][72], [FAIL][73])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-tglu-4/igt@gem_tiled_swapping@non-threaded.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-5/igt@gem_tiled_swapping@non-threaded.html
- shard-glk: [FAIL][74] ([i915#12941]) -> [FAIL][75]
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-glk3/igt@gem_tiled_swapping@non-threaded.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-glk5/igt@gem_tiled_swapping@non-threaded.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: [SKIP][76] ([i915#5354]) -> ([SKIP][77], [SKIP][78]) ([i915#2575]) +6 other tests ( 2 skip )
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-2/igt@kms_flip@2x-absolute-wf_vblank.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_flip@2x-absolute-wf_vblank.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: [SKIP][79] ([i915#5354]) -> [SKIP][80] +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-dg2: [SKIP][81] ([i915#2575]) -> ([SKIP][82], [SKIP][83]) +4 other tests ( 2 skip )
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-11/igt@kms_flip@2x-plain-flip-fb-recreate.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@kms_flip@2x-plain-flip-fb-recreate.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: [SKIP][84] ([i915#5354]) -> ([SKIP][85], [SKIP][86]) +5 other tests ( 2 skip )
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg2: [SKIP][87] ([i915#2575]) -> [SKIP][88] +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-11/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@perf@non-zero-reason:
- shard-dg2: [FAIL][89] ([i915#7484]) -> ([FAIL][90], [SKIP][91]) ([i915#9100])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-6/igt@perf@non-zero-reason.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@perf@non-zero-reason.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@perf@non-zero-reason.html
* igt@sysfs_heartbeat_interval@mixed:
- shard-dg2: [SKIP][92] ([i915#2575]) -> ([INCOMPLETE][93], [PASS][94])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-11/igt@sysfs_heartbeat_interval@mixed.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@sysfs_heartbeat_interval@mixed.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@sysfs_heartbeat_interval@mixed.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_flip@2x-flip-vs-wf_vblank:
- {shard-dg2-9}: NOTRUN -> [SKIP][95] +8 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-9/igt@kms_flip@2x-flip-vs-wf_vblank.html
New tests
---------
New tests have been introduced between CI_DRM_15721_full and IGTPW_12138_full:
### New IGT tests (4) ###
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.83] s
* igt@kms_cursor_crc@cursor-random-64x21@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [4.61] s
* igt@kms_dirtyfb@default-dirtyfb-ioctl@a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [1.44] s
* igt@kms_panel_fitting:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_12138_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_allocator@default-alignment:
- shard-dg2: [PASS][96] -> ([SKIP][97], [PASS][98]) +38 other tests ( 1 pass, 1 skip )
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-1/igt@api_intel_allocator@default-alignment.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@api_intel_allocator@default-alignment.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@api_intel_allocator@default-alignment.html
* igt@api_intel_allocator@gem-pool:
- shard-dg2: NOTRUN -> ([SKIP][99], [PASS][100]) +5 other tests ( 1 pass, 1 skip )
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@api_intel_allocator@gem-pool.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@api_intel_allocator@gem-pool.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> ([SKIP][101], [SKIP][102]) ([i915#8411])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-8/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#8411])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#6230])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#6230])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#6230])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#9318])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-3/igt@debugfs_test@basic-hwmon.html
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#9318])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-3/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#11078])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#8414]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@busy:
- shard-dg2: NOTRUN -> ([SKIP][111], [SKIP][112]) ([i915#12506] / [i915#8414])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@drm_fdinfo@busy.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@drm_fdinfo@busy.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#8414]) +14 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-6/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#8414]) +15 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> ([SKIP][115], [SKIP][116]) ([i915#8414]) +23 other tests ( 2 skip )
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@drm_fdinfo@busy@vcs1.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@drm_fdinfo@busy@vcs1.html
* igt@drm_fdinfo@memory-info-purgeable:
- shard-dg2: [PASS][117] -> [SKIP][118] ([i915#12506]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-2/igt@drm_fdinfo@memory-info-purgeable.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@drm_fdinfo@memory-info-purgeable.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> ([SKIP][119], [SKIP][120]) ([i915#8414]) +7 other tests ( 2 skip )
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-8/igt@drm_fdinfo@virtual-busy-idle.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@drm_fdinfo@virtual-busy-idle.html
* igt@fbdev@unaligned-read:
- shard-dg2: NOTRUN -> ([SKIP][121], [PASS][122]) ([i915#2582])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@fbdev@unaligned-read.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@fbdev@unaligned-read.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#7697]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4873])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-8/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> ([SKIP][125], [SKIP][126]) ([i915#9323])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#9323])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> ([SKIP][128], [SKIP][129]) ([i915#9323])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-5/igt@gem_ccs@block-multicopy-compressed.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#9323])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> ([SKIP][131], [SKIP][132]) ([i915#3555] / [i915#9323]) +1 other test ( 2 skip )
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#9323])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][134] -> [INCOMPLETE][135] ([i915#12392] / [i915#7297])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#7697])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> ([SKIP][137], [SKIP][138]) ([i915#6335])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-8/igt@gem_create@create-ext-cpu-access-big.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#6335])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#8562])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#8562])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-4/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@engines-mixed:
- shard-snb: NOTRUN -> ([SKIP][142], [SKIP][143]) ([i915#1099])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-snb6/igt@gem_ctx_persistence@engines-mixed.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-snb2/igt@gem_ctx_persistence@engines-mixed.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> ([SKIP][144], [SKIP][145]) ([i915#8555])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-close.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> ([SKIP][146], [SKIP][147]) ([i915#8555])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hostile.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@legacy-engines-hostile:
- shard-snb: NOTRUN -> [SKIP][148] ([i915#1099])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-snb2/igt@gem_ctx_persistence@legacy-engines-hostile.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#280])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-9/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> ([SKIP][150], [SKIP][151]) ([i915#2575] / [i915#280])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#280])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg1: NOTRUN -> [ABORT][153] ([i915#7975] / [i915#8213])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][154] -> [FAIL][155] ([i915#5784])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-5/igt@gem_eio@kms.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-7/igt@gem_eio@kms.html
- shard-dg1: NOTRUN -> ([FAIL][156], [FAIL][157]) ([i915#5784])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gem_eio@kms.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> ([SKIP][158], [SKIP][159]) ([i915#4771])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gem_exec_balancer@bonded-pair.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> ([SKIP][160], [SKIP][161]) ([i915#2575] / [i915#4036])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#4812])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-4/igt@gem_exec_fence@concurrent.html
- shard-dg2: NOTRUN -> ([SKIP][163], [SKIP][164]) ([i915#2575] / [i915#4812])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@gem_exec_fence@concurrent.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> ([SKIP][165], [SKIP][166]) ([i915#4812])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@gem_exec_fence@submit3.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3539] / [i915#4852]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3539])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3539] / [i915#4852])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@invalid-bsd-ring:
- shard-dg2: NOTRUN -> ([SKIP][170], [PASS][171]) ([i915#2575]) +54 other tests ( 1 pass, 1 skip )
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_exec_params@invalid-bsd-ring.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@gem_exec_params@invalid-bsd-ring.html
* igt@gem_exec_reloc@basic-cpu-read-active:
- shard-dg2: NOTRUN -> ([SKIP][172], [SKIP][173]) ([i915#2575] / [i915#3281])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read-active.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-read-active.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3281]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-active:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3281]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-active.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> ([SKIP][176], [SKIP][177]) ([i915#3281]) +3 other tests ( 2 skip )
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3281])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-range-active:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3281]) +7 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: NOTRUN -> ([SKIP][180], [SKIP][181]) ([i915#3281])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@gem_exec_reloc@basic-softpin.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> ([SKIP][182], [SKIP][183]) ([i915#3281]) +8 other tests ( 2 skip )
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> ([SKIP][184], [SKIP][185]) ([i915#4812]) +1 other test ( 2 skip )
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_exec_schedule@preempt-queue.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@gem_exec_schedule@preempt-queue.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#4537] / [i915#4812])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue.html
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#4537] / [i915#4812])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-self:
- shard-dg2: [PASS][188] -> ([SKIP][189], [PASS][190]) ([i915#2575]) +196 other tests ( 1 pass, 1 skip )
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-10/igt@gem_exec_schedule@preempt-self.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_exec_schedule@preempt-self.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@gem_exec_schedule@preempt-self.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#4812]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [PASS][192] -> [ABORT][193] ([i915#7975] / [i915#8213]) +1 other test abort
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> ([SKIP][194], [SKIP][195]) ([i915#4860]) +1 other test ( 2 skip )
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#4860]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> ([SKIP][197], [SKIP][198]) ([i915#4860]) +1 other test ( 2 skip )
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#4613] / [i915#7582])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-dg2: NOTRUN -> ([SKIP][200], [PASS][201]) ([i915#12936])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> ([SKIP][202], [SKIP][203]) ([i915#4613]) +1 other test ( 2 skip )
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-tglu: NOTRUN -> ([SKIP][204], [SKIP][205]) ([i915#4613]) +5 other tests ( 2 skip )
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> ([SKIP][206], [SKIP][207]) ([i915#4565]) +1 other test ( 2 skip )
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@massive-random:
- shard-dg2: [PASS][208] -> [SKIP][209] ([i915#12936]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-10/igt@gem_lmem_swapping@massive-random.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-7/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-dg2: [PASS][210] -> ([PASS][211], [SKIP][212]) ([i915#12936]) +3 other tests ( 1 pass, 1 skip )
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-1/igt@gem_lmem_swapping@parallel-multi.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@gem_lmem_swapping@parallel-multi.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#4613]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-glk: NOTRUN -> [SKIP][214] ([i915#4613])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-glk1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-dg1: NOTRUN -> ([SKIP][215], [SKIP][216]) ([i915#12193]) +1 other test ( 2 skip )
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#4613]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: NOTRUN -> [TIMEOUT][218] ([i915#5493]) +1 other test timeout
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify:
- shard-dg2: [PASS][219] -> ([SKIP][220], [SKIP][221]) ([i915#12936])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-6/igt@gem_lmem_swapping@verify.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@gem_lmem_swapping@verify.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-8/igt@gem_lmem_swapping@verify.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#284])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-9/igt@gem_media_vme.html
* igt@gem_mmap@basic-small-bo:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#4083])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-2/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap@short-mmap:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#4083]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#4077]) +4 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@gem_mmap_gtt@basic.html
* igt@gem_mmap_gtt@big-bo-tiledy:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#4077]) +7 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-6/igt@gem_mmap_gtt@big-bo-tiledy.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> ([SKIP][227], [SKIP][228]) ([i915#4077]) +3 other tests ( 2 skip )
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> ([SKIP][229], [SKIP][230]) ([i915#2575] / [i915#4077]) +3 other tests ( 2 skip )
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#4077]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-6/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@copy:
- shard-dg1: NOTRUN -> ([SKIP][232], [SKIP][233]) ([i915#4083]) +3 other tests ( 2 skip )
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@gem_mmap_wc@copy.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> ([SKIP][234], [SKIP][235]) ([i915#4083])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@gem_mmap_wc@fault-concurrent.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> ([SKIP][236], [SKIP][237]) ([i915#3282]) +1 other test ( 2 skip )
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@gem_pread@snoop.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@gem_pread@snoop.html
- shard-rkl: NOTRUN -> ([SKIP][238], [SKIP][239]) ([i915#3282])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@gem_pread@snoop.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@gem_pread@snoop.html
- shard-dg1: NOTRUN -> ([SKIP][240], [SKIP][241]) ([i915#3282]) +7 other tests ( 2 skip )
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@gem_pread@snoop.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_pread@snoop.html
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3282]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-2/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> ([WARN][243], [WARN][244]) ([i915#2658])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-3/igt@gem_pwrite@basic-exhaustion.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> ([SKIP][245], [SKIP][246]) ([i915#4270]) +3 other tests ( 2 skip )
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@gem_pxp@display-protected-crc.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gem_pxp@display-protected-crc.html
- shard-tglu: [PASS][247] -> ([SKIP][248], [SKIP][249]) ([i915#4270]) +3 other tests ( 2 skip )
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-tglu-2/igt@gem_pxp@display-protected-crc.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-3/igt@gem_pxp@display-protected-crc.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#4270])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
- shard-rkl: NOTRUN -> ([TIMEOUT][251], [TIMEOUT][252]) ([i915#12917])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> ([SKIP][253], [SKIP][254]) ([i915#4270]) +1 other test ( 2 skip )
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> ([SKIP][255], [SKIP][256]) ([i915#4270])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#4270])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#3282])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@read-bad-handle:
- shard-dg2: NOTRUN -> ([SKIP][259], [SKIP][260]) ([i915#2575] / [i915#3282]) +1 other test ( 2 skip )
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_readwrite@read-bad-handle.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][261] +143 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-glk1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
- shard-dg2: NOTRUN -> ([SKIP][262], [SKIP][263]) ([i915#5190] / [i915#8428]) +6 other tests ( 2 skip )
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> ([SKIP][264], [SKIP][265]) ([i915#2575] / [i915#5190] / [i915#8428]) +1 other test ( 2 skip )
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#5190] / [i915#8428]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#2575] / [i915#5190]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/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][268] ([i915#8428]) +6 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#4079]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@gem_render_tiled_blits@basic.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#4885]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#4885]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-2/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> ([SKIP][272], [SKIP][273]) ([i915#2575] / [i915#4885])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_pread_basic:
- shard-dg1: NOTRUN -> ([SKIP][274], [SKIP][275]) ([i915#4079])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gem_tiled_pread_basic.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#4079])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-8/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg1: NOTRUN -> ([SKIP][277], [SKIP][278]) ([i915#3297]) +1 other test ( 2 skip )
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_userptr_blits@create-destroy-unsync.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> ([SKIP][279], [SKIP][280]) ([i915#3297] / [i915#3323])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@gem_userptr_blits@dmabuf-sync.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-8/igt@gem_userptr_blits@dmabuf-sync.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3297]) +2 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> ([SKIP][282], [SKIP][283]) ([i915#3297])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@gem_userptr_blits@dmabuf-unsync.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-rkl: NOTRUN -> ([SKIP][284], [SKIP][285]) ([i915#3297]) +1 other test ( 2 skip )
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#3297]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-tglu: NOTRUN -> ([SKIP][287], [SKIP][288]) ([i915#3297]) +2 other tests ( 2 skip )
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-5/igt@gem_userptr_blits@dmabuf-unsync.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> ([SKIP][289], [SKIP][290]) ([i915#3282] / [i915#3297])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> ([SKIP][291], [SKIP][292]) ([i915#3297] / [i915#4880])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#3297]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#3297]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_watchdog@default-physical:
- shard-tglu: NOTRUN -> ([SKIP][295], [SKIP][296]) ([i915#12961])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-6/igt@gem_watchdog@default-physical.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-3/igt@gem_watchdog@default-physical.html
- shard-dg2: NOTRUN -> ([SKIP][297], [SKIP][298]) ([i915#12961])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-8/igt@gem_watchdog@default-physical.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@gem_watchdog@default-physical.html
* igt@gem_watchdog@default-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#12961])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gem_watchdog@default-virtual.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> ([SKIP][300], [SKIP][301]) ([i915#2575]) +1 other test ( 2 skip )
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@gen7_exec_parse@basic-rejected.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg1: NOTRUN -> ([SKIP][302], [SKIP][303]) ([i915#2527]) +2 other tests ( 2 skip )
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#2856]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#2527] / [i915#2856]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-9/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#2527] / [i915#2856]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> ([SKIP][307], [SKIP][308]) ([i915#2527]) +1 other test ( 2 skip )
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-3/igt@gen9_exec_parse@bb-start-param.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#2527]) +3 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> ([SKIP][310], [SKIP][311]) ([i915#2527] / [i915#2856]) +2 other tests ( 2 skip )
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-5/igt@gen9_exec_parse@cmd-crossing-page.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][312] -> ([ABORT][313], [ABORT][314]) ([i915#9820])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][315] -> ([PASS][316], [ABORT][317]) ([i915#12817] / [i915#9820])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#6412])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@i915_module_load@resize-bar.html
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#7178])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][320] -> [FAIL][321] ([i915#12739] / [i915#3591])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#11681]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> ([SKIP][323], [SKIP][324]) ([i915#4387])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@i915_pm_sseu@full-enable.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#5723])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-tglu: NOTRUN -> ([DMESG-WARN][326], [DMESG-WARN][327]) ([i915#9311])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-3/igt@i915_selftest@mock@memory_region.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#4212]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-legacy:
- shard-dg2: [PASS][329] -> ([PASS][330], [SKIP][331]) ([i915#2575] / [i915#5190])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-4/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> ([SKIP][332], [SKIP][333]) ([i915#4215])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> ([SKIP][334], [SKIP][335]) ([i915#2575] / [i915#4212]) +2 other tests ( 2 skip )
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@kms_addfb_basic@clobberred-modifier.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> ([SKIP][336], [SKIP][337]) ([i915#4212]) +2 other tests ( 2 skip )
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-dg2: NOTRUN -> ([SKIP][338], [SKIP][339]) ([i915#4212])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#8709]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: NOTRUN -> ([SKIP][341], [SKIP][342]) ([i915#1769] / [i915#3555])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> ([SKIP][343], [SKIP][344]) ([i915#1769] / [i915#3555])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#5286]) +6 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> ([SKIP][346], [SKIP][347]) ([i915#5286]) +3 other tests ( 2 skip )
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#5286]) +2 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> ([SKIP][349], [SKIP][350]) ([i915#5286]) +4 other tests ( 2 skip )
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#5286])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> ([SKIP][352], [SKIP][353]) ([i915#4538] / [i915#5286]) +3 other tests ( 2 skip )
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][354] ([i915#4538] / [i915#5286]) +2 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: [PASS][355] -> [FAIL][356] ([i915#5138])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> ([SKIP][357], [SKIP][358]) ([i915#3638]) +2 other tests ( 2 skip )
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> ([SKIP][359], [SKIP][360]) +5 other tests ( 2 skip )
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][361] ([i915#3638]) +2 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> ([SKIP][362], [SKIP][363]) ([i915#3638])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#5190]) +2 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg2: NOTRUN -> ([SKIP][365], [SKIP][366]) ([i915#4538] / [i915#5190]) +2 other tests ( 2 skip )
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> ([SKIP][367], [SKIP][368]) +11 other tests ( 2 skip )
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#4538] / [i915#5190]) +3 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#6187])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> ([SKIP][371], [SKIP][372]) ([i915#4538]) +4 other tests ( 2 skip )
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#4538]) +4 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-snb: NOTRUN -> ([SKIP][374], [SKIP][375]) +50 other tests ( 2 skip )
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-snb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-snb4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][376] +11 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#6095]) +69 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> ([SKIP][378], [SKIP][379]) ([i915#10307] / [i915#6095]) +23 other tests ( 2 skip )
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#6095]) +113 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> ([SKIP][381], [SKIP][382]) ([i915#6095]) +79 other tests ( 2 skip )
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> ([SKIP][383], [SKIP][384]) ([i915#12313])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> ([SKIP][385], [SKIP][386]) ([i915#6095]) +24 other tests ( 2 skip )
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-dg1: NOTRUN -> ([SKIP][387], [SKIP][388]) ([i915#6095]) +60 other tests ( 2 skip )
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][389] ([i915#6095]) +9 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> ([SKIP][390], [SKIP][391]) ([i915#12313])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][392] ([i915#12313])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][393] ([i915#12313])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][394] ([i915#12313])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> ([SKIP][395], [SKIP][396]) ([i915#12805])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> ([SKIP][397], [SKIP][398]) ([i915#12805])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> ([SKIP][399], [SKIP][400]) ([i915#6095]) +4 other tests ( 2 skip )
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#6095]) +13 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][402] ([i915#6095]) +46 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#10307] / [i915#6095]) +168 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][404] ([i915#10307] / [i915#10434] / [i915#6095]) +8 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> ([SKIP][405], [SKIP][406]) ([i915#12313])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][407] ([i915#12313])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> ([SKIP][408], [SKIP][409]) ([i915#12313]) +1 other test ( 2 skip )
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-dg2: NOTRUN -> [SKIP][410] ([i915#12313])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][411] ([i915#6095]) +207 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> ([SKIP][412], [SKIP][413]) ([i915#3742])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-tglu: NOTRUN -> ([SKIP][414], [SKIP][415]) ([i915#3742])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-3/igt@kms_cdclk@mode-transition-all-outputs.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-mtlp: NOTRUN -> [SKIP][416] ([i915#7213] / [i915#9010])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][417] ([i915#3742])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][418] ([i915#4087]) +3 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2: NOTRUN -> [SKIP][419] ([i915#7828]) +3 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu: NOTRUN -> [SKIP][420] ([i915#7828]) +3 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-4/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-tglu: NOTRUN -> ([SKIP][421], [SKIP][422]) ([i915#7828]) +8 other tests ( 2 skip )
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> ([SKIP][423], [SKIP][424]) ([i915#2575] / [i915#7828]) +1 other test ( 2 skip )
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> ([SKIP][425], [SKIP][426]) ([i915#7828]) +4 other tests ( 2 skip )
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_chamelium_hpd@dp-hpd-storm.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@kms_chamelium_hpd@dp-hpd-storm.html
- shard-rkl: NOTRUN -> [SKIP][427] ([i915#7828])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> ([SKIP][428], [SKIP][429]) ([i915#7828]) +6 other tests ( 2 skip )
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][430] ([i915#7828]) +7 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][431] ([i915#7828]) +9 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> ([SKIP][432], [SKIP][433]) ([i915#7828]) +2 other tests ( 2 skip )
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
- shard-mtlp: NOTRUN -> [SKIP][434] ([i915#7828]) +3 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> ([SKIP][435], [SKIP][436]) ([i915#3116] / [i915#3299])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-7/igt@kms_content_protection@dp-mst-lic-type-0.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][437] ([i915#3299])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> ([SKIP][438], [SKIP][439]) ([i915#3299]) +1 other test ( 2 skip )
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][440] ([i915#3116] / [i915#3299])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
- shard-tglu: NOTRUN -> [SKIP][441] ([i915#3116] / [i915#3299])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> ([SKIP][442], [SKIP][443]) ([i915#6944] / [i915#9424]) +2 other tests ( 2 skip )
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@kms_content_protection@lic-type-0.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-3/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> ([SKIP][444], [SKIP][445]) ([i915#9424])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_content_protection@lic-type-0.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][446] ([i915#6944] / [i915#9424])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-3/igt@kms_content_protection@lic-type-1.html
- shard-dg2: NOTRUN -> ([SKIP][447], [SKIP][448]) ([i915#9424])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@kms_content_protection@lic-type-1.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> ([SKIP][449], [SKIP][450]) ([i915#9424])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@kms_content_protection@lic-type-1.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][451] ([i915#9424])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][452] ([i915#2575]) +41 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> ([SKIP][453], [SKIP][454]) ([i915#7116])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_content_protection@srm.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@kms_content_protection@srm.html
- shard-mtlp: NOTRUN -> [SKIP][455] ([i915#6944])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-2/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg1: NOTRUN -> ([SKIP][456], [SKIP][457]) ([i915#7116] / [i915#9424])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@kms_content_protection@uevent.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> ([SKIP][458], [SKIP][459]) ([i915#11453] / [i915#2575])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg2: NOTRUN -> ([SKIP][460], [SKIP][461]) ([i915#2575] / [i915#3555])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> ([SKIP][462], [SKIP][463]) ([i915#3555])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][464] ([i915#11453]) +1 other test skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-tglu: NOTRUN -> ([SKIP][465], [SKIP][466]) ([i915#3555]) +4 other tests ( 2 skip )
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-5/igt@kms_cursor_crc@cursor-random-max-size.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][467] ([i915#8814])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][468] ([i915#3555])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> ([SKIP][469], [SKIP][470]) ([i915#11453])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg1: NOTRUN -> ([SKIP][471], [SKIP][472]) ([i915#3555]) +7 other tests ( 2 skip )
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-32x10.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][473] ([i915#3555] / [i915#8814])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> ([SKIP][474], [SKIP][475]) ([i915#11453])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg1: NOTRUN -> ([SKIP][476], [SKIP][477]) ([i915#11453]) +1 other test ( 2 skip )
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x512.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> ([SKIP][478], [SKIP][479]) ([i915#4103] / [i915#4213])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> ([SKIP][480], [SKIP][481]) ([i915#2575] / [i915#5354]) +2 other tests ( 2 skip )
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][482] ([i915#9809]) +5 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-snb: [PASS][483] -> ([PASS][484], [FAIL][485]) ([i915#2346])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-snb: [PASS][486] -> [FAIL][487] ([i915#2346])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> ([SKIP][488], [SKIP][489]) ([i915#9067])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-12/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> ([SKIP][490], [SKIP][491]) ([i915#2575] / [i915#4103] / [i915#4213])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][492] ([i915#4103] / [i915#4213])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][493] ([i915#4213])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][494] ([i915#4103])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][495] ([i915#3555] / [i915#8827])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-mtlp-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> ([SKIP][496], [SKIP][497]) ([i915#8588])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-13/igt@kms_display_modes@mst-extended-mode-negative.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: [PASS][498] -> ([SKIP][499], [SKIP][500]) ([i915#2575] / [i915#3555])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15721/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu: NOTRUN -> ([SKIP][501], [SKIP][502]) ([i915#1769] / [i915#3555] / [i915#3804])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> ([SKIP][503], [SKIP][504]) ([i915#3804])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][505] ([i915#3804])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-tglu-1: NOTRUN -> [SKIP][506] ([i915#1257])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/shard-tglu-1/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][507] ([i915#3840])
[507]: https://intel-gfx-ci.01.org/tree/drm-ti
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12138/index.html
^ permalink raw reply [flat|nested] 13+ messages in thread