* [PATCH i-g-t v2 1/4] tools/intel_vbt_decode: store codename from VBT signature to context
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
@ 2026-06-15 11:29 ` Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 2/4] lib/intel_device_info: add a helper to guess the PCI ID for a codename Jani Nikula
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2026-06-15 11:29 UTC (permalink / raw)
To: igt-dev, Michał Grzelak; +Cc: ville.syrjala, jani.nikula
The VBT often contains something resembling a codename in the
signature. Currently, we only use it for printing a description of sorts
(the --describe option). Store the codename-ish to context for more use.
Cc: Michał Grzelak <michal.grzelak@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
tools/intel_vbt_decode.c | 29 ++++++++++++++++++++---------
1 file changed, 20 insertions(+), 9 deletions(-)
diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c
index cf7bcc5771a4..5b39e0c1c33e 100644
--- a/tools/intel_vbt_decode.c
+++ b/tools/intel_vbt_decode.c
@@ -74,6 +74,8 @@ struct context {
const struct bdb_header *bdb;
int size;
+ char codename[sizeof(((struct vbt_header *)0)->signature) + 1];
+
uint32_t devid;
int panel_type, panel_type2;
int sdvo_panel_type;
@@ -4023,31 +4025,38 @@ static bool dump_section(struct context *context, int section_id)
return true;
}
-/* print a description of the VBT of the form <bdb-version>-<vbt-signature> */
-static void print_description(struct context *context)
+/* initialize something resembling a codename based on the signature */
+static void init_codename(struct context *context)
{
const struct vbt_header *vbt = context->vbt;
- const struct bdb_header *bdb = context->bdb;
- char *desc = strndup((char *)vbt->signature, sizeof(vbt->signature));
+ char signature[sizeof(vbt->signature) + 1] = {};
char *p;
- for (p = desc + strlen(desc) - 1; p >= desc && isspace(*p); p--)
+ memcpy(signature, vbt->signature, sizeof(vbt->signature));
+
+ for (p = signature + strlen(signature) - 1; p >= signature && isspace(*p); p--)
*p = '\0';
- for (p = desc; *p; p++) {
+ for (p = signature; *p; p++) {
if (!isalnum(*p))
*p = '-';
else
*p = tolower(*p);
}
- p = desc;
+ p = signature;
if (strncmp(p, "-vbt-", 5) == 0)
p += 5;
- printf("%d-%s\n", bdb->version, p);
+ strncpy(context->codename, p, sizeof(context->codename));
+}
+
+/* print a description of the VBT of the form <bdb-version>-<vbt-signature> */
+static void print_description(struct context *context)
+{
+ const struct bdb_header *bdb = context->bdb;
- free (desc);
+ printf("%d-%s\n", bdb->version, context->codename);
}
static void dump_headers(struct context *context)
@@ -4313,6 +4322,8 @@ int main(int argc, char **argv)
context.bdb = (const struct bdb_header *)(VBIOS + bdb_off);
context.size = size;
+ init_codename(&context);
+
if (!context.devid) {
const char *devid_string = getenv("DEVICE");
if (devid_string)
--
2.47.3
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH i-g-t v2 2/4] lib/intel_device_info: add a helper to guess the PCI ID for a codename
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 1/4] tools/intel_vbt_decode: store codename from VBT signature to context Jani Nikula
@ 2026-06-15 11:29 ` Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 3/4] tools/vbt_decode: return 0 from get_device_id() Jani Nikula
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2026-06-15 11:29 UTC (permalink / raw)
To: igt-dev, Michał Grzelak; +Cc: ville.syrjala, jani.nikula
The struct intel_device_info contains the codenames for the
corresponding PCI device IDs. Add a reverse lookup to get a PCI ID for a
codename.
It's a bit fuzzy, though. The codenames aren't always spelled the same,
there are suffixes sometimes omitted, and you can only pick one of the
matching PCI IDs. Name the helper intel_guess_device_id() to emphasize
the point, and try increasing fuzziness in the matching to find an
appropriate struct intel_device_info.
There's nothing exact about this, and it should not be considered as
such. But it will be useful in VBT parsing.
v2: Sort includes (Kamil)
Cc: Michał Grzelak <michal.grzelak@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
lib/intel_chipset.h | 1 +
lib/intel_device_info.c | 75 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index 3fcc5b18d648..98a2a81fcffd 100644
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -103,6 +103,7 @@ struct intel_device_info {
};
const struct intel_device_info *intel_get_device_info(uint16_t devid) __attribute__((pure));
+uint16_t intel_guess_device_id(const char *codenameish) __attribute__((pure));
const struct intel_cmds_info *intel_get_cmds_info(uint16_t devid) __attribute__((pure));
unsigned intel_gen(uint16_t devid) __attribute__((pure));
diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
index da0b9f398885..ae316bfcabed 100644
--- a/lib/intel_device_info.c
+++ b/lib/intel_device_info.c
@@ -2,6 +2,7 @@
#include "pciids.h"
#include "i915_pciids_local.h"
+#include <ctype.h>
#include <strings.h> /* ffs() */
static const struct intel_device_info intel_generic_info = {
@@ -746,6 +747,80 @@ out:
return cache;
}
+static bool char_eq(char c1, char c2)
+{
+ c1 = isalnum(c1) ? tolower(c1) : '-';
+ c2 = isalnum(c2) ? tolower(c2) : '-';
+
+ return c1 == c2;
+}
+
+/*
+ * Return true if the codenames s1 and s2 match, with fuzziness.
+ *
+ * Case insensitive matching, ignoring differences in non-alnum characters. With
+ * non-zero fuzziness, accept matches up to the first non-alnum character.
+ */
+static bool codename_match(const char *s1, const char *s2, int fuzziness)
+{
+ while (*s1 && *s2 && char_eq(*s1, *s2)) {
+ s1++;
+ s2++;
+ }
+
+ /* full match */
+ if (!*s1 && !*s2)
+ return true;
+
+ /* sub-string match up to a non-alnum char */
+ if (fuzziness >=1) {
+ if (!*s1 && !isalnum(*s2))
+ return true;
+ if (!*s2 && !isalnum(*s1))
+ return true;
+ }
+
+ return false;
+}
+
+static uint16_t lookup_device_id(const char *codename, int fuzziness)
+{
+ int i;
+
+ for (i = 0; intel_device_match[i].device_id != PCI_MATCH_ANY; i++) {
+ const struct intel_device_info *info = (void *)intel_device_match[i].match_data;
+
+ if (codename_match(info->codename, codename, fuzziness))
+ return intel_device_match[i].device_id;
+ }
+
+ return 0;
+}
+
+/**
+ * intel_guess_device_id:
+ * @codenameish: something resembling a codename
+ *
+ * Based on something resembling a codename, try to fuzzy find the first PCI
+ * device ID matching the codename.
+ *
+ * Returns:
+ * PCI device ID fuzzy matching the @codenameish, or 0 if no match was found.
+ */
+uint16_t intel_guess_device_id(const char *codenameish)
+{
+ uint16_t devid;
+ int fuzziness;
+
+ for (fuzziness = 0; fuzziness < 2; fuzziness++) {
+ devid = lookup_device_id(codenameish, fuzziness);
+ if (devid)
+ return devid;
+ }
+
+ return 0;
+}
+
/**
* intel_get_cmds_info:
* @devid: pci device id
--
2.47.3
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH i-g-t v2 3/4] tools/vbt_decode: return 0 from get_device_id()
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 1/4] tools/intel_vbt_decode: store codename from VBT signature to context Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 2/4] lib/intel_device_info: add a helper to guess the PCI ID for a codename Jani Nikula
@ 2026-06-15 11:29 ` Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 4/4] tools/intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2026-06-15 11:29 UTC (permalink / raw)
To: igt-dev, Michał Grzelak; +Cc: ville.syrjala, jani.nikula, Kamil Konieczny
From: Michał Grzelak <michal.grzelak@intel.com>
This function returns -1 on errors and the caller checks for 0. This
leads to -1 being used as the device id. Return 0 instead of -1.
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Michał Grzelak <michal.grzelak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
tools/intel_vbt_decode.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c
index 5b39e0c1c33e..69961ce29e01 100644
--- a/tools/intel_vbt_decode.c
+++ b/tools/intel_vbt_decode.c
@@ -3702,13 +3702,13 @@ get_device_id(unsigned char *bios, int size)
int offset = (bios[0x19] << 8) + bios[0x18];
if (offset + 7 >= size)
- return -1;
+ return 0;
if (bios[offset] != 'P' ||
bios[offset+1] != 'C' ||
bios[offset+2] != 'I' ||
bios[offset+3] != 'R')
- return -1;
+ return 0;
device = (bios[offset+7] << 8) + bios[offset+6];
--
2.47.3
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH i-g-t v2 4/4] tools/intel_vbt_decode: fall back to guessing PCI ID from VBT signature
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (2 preceding siblings ...)
2026-06-15 11:29 ` [PATCH i-g-t v2 3/4] tools/vbt_decode: return 0 from get_device_id() Jani Nikula
@ 2026-06-15 11:29 ` Jani Nikula
2026-06-15 18:15 ` ✓ Xe.CI.BAT: success for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2) Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2026-06-15 11:29 UTC (permalink / raw)
To: igt-dev, Michał Grzelak; +Cc: ville.syrjala, jani.nikula
If the PCI ID wasn't passed on the command-line, DEVICE environment
variable, or VBIOS, fall back to guessing the device ID from the VBT
signature.
Cc: Michał Grzelak <michal.grzelak@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
tools/intel_vbt_decode.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c
index 69961ce29e01..9451a77318ae 100644
--- a/tools/intel_vbt_decode.c
+++ b/tools/intel_vbt_decode.c
@@ -4331,6 +4331,8 @@ int main(int argc, char **argv)
}
if (!context.devid)
context.devid = get_device_id(VBIOS, size);
+ if (!context.devid)
+ context.devid = intel_guess_device_id(context.codename);
if (!context.devid)
fprintf(stderr, "Warning: could not find PCI device ID!\n");
--
2.47.3
^ permalink raw reply related [flat|nested] 9+ messages in thread* ✓ Xe.CI.BAT: success for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (3 preceding siblings ...)
2026-06-15 11:29 ` [PATCH i-g-t v2 4/4] tools/intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
@ 2026-06-15 18:15 ` Patchwork
2026-06-15 18:39 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-15 18:15 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 802 bytes --]
== Series Details ==
Series: intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
URL : https://patchwork.freedesktop.org/series/168428/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8964_BAT -> XEIGTPW_15368_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8964 -> IGTPW_15368
IGTPW_15368: 15368
IGT_8964: 8964
xe-5260-0984dfdee2a4f9e1922fe919a6b469e115e23360: 0984dfdee2a4f9e1922fe919a6b469e115e23360
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/index.html
[-- Attachment #2: Type: text/html, Size: 1347 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* ✓ i915.CI.BAT: success for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (4 preceding siblings ...)
2026-06-15 18:15 ` ✓ Xe.CI.BAT: success for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2) Patchwork
@ 2026-06-15 18:39 ` Patchwork
2026-06-15 19:26 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-06-16 2:47 ` ✗ i915.CI.Full: " Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-15 18:39 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5699 bytes --]
== Series Details ==
Series: intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
URL : https://patchwork.freedesktop.org/series/168428/
State : success
== Summary ==
CI Bug Log - changes from IGT_8964 -> IGTPW_15368
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): bat-adls-6
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15368 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][4] -> [DMESG-WARN][5] ([i915#13735]) +79 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][6] ([i915#7707]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#13735] / [i915#180])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#16361])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#5354])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][13] -> [DMESG-WARN][14] ([i915#13735] / [i915#15673] / [i915#180]) +52 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#1072] / [i915#9732]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#3555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#3291]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@prime_vgem@basic-fence-read.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8964 -> IGTPW_15368
CI-20190529: 20190529
CI_DRM_18682: 0984dfdee2a4f9e1922fe919a6b469e115e23360 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15368: 15368
IGT_8964: 8964
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/index.html
[-- Attachment #2: Type: text/html, Size: 6867 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* ✗ Xe.CI.FULL: failure for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (5 preceding siblings ...)
2026-06-15 18:39 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-06-15 19:26 ` Patchwork
2026-06-16 2:47 ` ✗ i915.CI.Full: " Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-15 19:26 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 20127 bytes --]
== Series Details ==
Series: intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
URL : https://patchwork.freedesktop.org/series/168428/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8964_FULL -> XEIGTPW_15368_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15368_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15368_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15368_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pmu@gt-frequency:
- shard-bmg: [PASS][1] -> [WARN][2] +1 other test warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-4/igt@xe_pmu@gt-frequency.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@xe_pmu@gt-frequency.html
Known issues
------------
Here are the changes found in XEIGTPW_15368_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#6078])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@linear-tiling-2-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2652]) +8 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#6507])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-5/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2320]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2321] / [Intel XE#7355])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1340] / [Intel XE#7435])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-basic-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#8265]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4156] / [Intel XE#7425])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7178] / [Intel XE#7351])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#4141]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2311]) +10 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7061]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2313]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#3544] / [Intel XE#7916])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7916]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#7915]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-9/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7915]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-6/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7283])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-5/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#7340] / [Intel XE#7504])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#7340])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1489]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#3904] / [Intel XE#7342])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_sharpness_filter@filter-dpms:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6503])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-9/igt@kms_sharpness_filter@filter-dpms.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1499])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-9/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-6/igt@kms_vrr@flipline.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-5/igt@kms_vrr@flipline.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7636]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-10/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7136]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-priority:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6874]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-10/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-priority.html
* igt@xe_exec_threads@threads-multi-queue-cm-rebind:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7138]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#5694] / [Intel XE#7370])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@xe_pm@d3cold-i2c.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4733] / [Intel XE#7417])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#944])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: [FAIL][46] ([Intel XE#6078]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][48] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][49] +1 other test pass
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][50] ([Intel XE#301]) -> [PASS][51] +1 other test pass
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][52] ([Intel XE#7308]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][54] ([Intel XE#7340]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [ABORT][56] ([Intel XE#8007]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-7/igt@xe_wedged@wedged-mode-toggle.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-9/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: [SKIP][58] ([Intel XE#1424]) -> [ABORT][59] ([Intel XE#8007])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-7/igt@kms_cursor_crc@cursor-random-32x10.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-6/igt@kms_cursor_crc@cursor-random-32x10.html
- shard-bmg: [SKIP][60] ([Intel XE#2320]) -> [ABORT][61] ([Intel XE#8007])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x10.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-9/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][62] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][63] ([Intel XE#1729] / [Intel XE#7424])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8964 -> IGTPW_15368
IGTPW_15368: 15368
IGT_8964: 8964
xe-5260-0984dfdee2a4f9e1922fe919a6b469e115e23360: 0984dfdee2a4f9e1922fe919a6b469e115e23360
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/index.html
[-- Attachment #2: Type: text/html, Size: 22214 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* ✗ i915.CI.Full: failure for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (6 preceding siblings ...)
2026-06-15 19:26 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-06-16 2:47 ` Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-16 2:47 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 149679 bytes --]
== Series Details ==
Series: intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
URL : https://patchwork.freedesktop.org/series/168428/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8964_full -> IGTPW_15368_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15368_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15368_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_15368/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15368_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_workarounds@suspend-resume-fd:
- shard-mtlp: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-mtlp-2/igt@gem_workarounds@suspend-resume-fd.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-3/igt@gem_workarounds@suspend-resume-fd.html
Known issues
------------
Here are the changes found in IGTPW_15368_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#14544] / [i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html
* igt@dmabuf@all-tests:
- shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#15931])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@dmabuf@all-tests.html
* igt@drm_buddy@drm_buddy:
- shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#15678])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@drm_buddy@drm_buddy.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#13008])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#13356] / [i915#16348]) +1 other test incomplete
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-6/igt@gem_ccs@suspend-resume.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-6/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#14544] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][17] ([i915#13356]) +1 other test incomplete
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@hang:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@gem_ctx_persistence@hang.html
* igt@gem_eio@kms:
- shard-rkl: [PASS][19] -> [DMESG-WARN][20] ([i915#13363])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-2/igt@gem_eio@kms.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@gem_eio@kms.html
- shard-tglu: NOTRUN -> [DMESG-WARN][21] ([i915#13363])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-2/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][22] ([i915#8898]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-snb5/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#14544] / [i915#4525])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-14/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +12 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#7276])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][33] -> [INCOMPLETE][34] ([i915#13356]) +1 other test incomplete
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
* igt@gem_gtt_cpu_tlb:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4077]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@gem_gtt_cpu_tlb.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#2190])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-10/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4613]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-5/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) +6 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#4613]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) +5 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#284])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4077]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-2/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_wc@coherency:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4083]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-13/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4083])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3282]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3282]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#13398])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4270])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#5190] / [i915#8428]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-linear.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8428])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4079])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk11: NOTRUN -> [INCOMPLETE][55] ([i915#13809] / [i915#16193])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk11/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#3297]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3297]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3297]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282] / [i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#3297]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3281] / [i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3281] / [i915#3297])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: [PASS][66] -> [INCOMPLETE][67] ([i915#13356] / [i915#14586])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-glk1/igt@gem_workarounds@suspend-resume.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk8/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-1/igt@gen9_exec_parse@unaligned-jump.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#14123])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-13/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#11527]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-4/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#13786])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][77] -> [DMESG-WARN][78] ([i915#13029] / [i915#14545])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-17/igt@i915_module_load@reload-no-display.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-14/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#16080] / [i915#16166])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][80] -> [FAIL][81] ([i915#12964]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#14498])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][83] ([i915#13356]) +3 other tests incomplete
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk1/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#11681])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#16079])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-4/igt@i915_query@query-topology-unsupported.html
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#16079])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@i915_query@query-topology-unsupported.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#16079])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-12/igt@i915_query@query-topology-unsupported.html
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#16079])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-8/igt@i915_query@query-topology-unsupported.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#16079])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-6/igt@i915_query@query-topology-unsupported.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][90] -> [INCOMPLETE][91] ([i915#4817])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
- shard-glk11: NOTRUN -> [INCOMPLETE][92] ([i915#16182] / [i915#4817])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk11/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#7707])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-9/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4212])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@kms_addfb_basic@basic-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4212])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-13/igt@kms_addfb_basic@basic-x-tiled-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4212])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][97] ([i915#14888]) +3 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#12761])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][99] ([i915#12761] / [i915#14995])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#9531])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#9531])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk10: NOTRUN -> [SKIP][104] ([i915#1769])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +6 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][106] -> [FAIL][107] ([i915#15733] / [i915#5138])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#5286])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#5286])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#5286]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#3828]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#3828])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#14544] / [i915#3638])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3638])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3638])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
- shard-mtlp: NOTRUN -> [SKIP][119] +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][120] +77 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#6095]) +113 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#12313]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][123] +596 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#6095]) +74 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#6095]) +44 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#14098] / [i915#6095]) +49 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6095]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#12805])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [PASS][129] -> [INCOMPLETE][130] ([i915#14694] / [i915#15582])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [PASS][131] -> [ABORT][132] ([i915#15132]) +1 other test abort
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#6095]) +12 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][134] ([i915#15582])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#12313]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#12313])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#12313])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#14544] / [i915#6095]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#6095]) +183 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +73 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3742]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3742])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#13783]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][147] +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-6/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +6 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +9 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-rkl: [PASS][155] -> [SKIP][156] ([i915#12655] / [i915#3555])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_color@deep-color.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#15865])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#15330] / [i915#3116] / [i915#3299])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#15330] / [i915#3299])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#15330] / [i915#3116])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#15330] / [i915#3299])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#15330]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#15865])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_content_protection@mei-interface.html
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#15865]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#14544] / [i915#15865])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#13049])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][170] ([i915#13566])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][172] ([i915#13566]) +1 other test fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#9809])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#13046] / [i915#5354]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#4103])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#4103]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- shard-dg1: [PASS][177] -> [DMESG-WARN][178] ([i915#4423])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-14/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#4103]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#9833])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#9723])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#9723])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#9723])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#13691] / [i915#14544])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#13749])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#13748])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-9/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#16361])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#16361]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#16361])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-3/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_dsc@dsc-with-formats-bigjoiner:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#16361]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_dsc@dsc-with-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#16361])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-ultrajoiner:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#16361]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#3469])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#16081]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-9/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#658])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-14/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#14544] / [i915#658])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#9934]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#9934])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#9934])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9934])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#9934])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637] / [i915#9934]) +9 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-8/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#9934]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-4/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][204] ([i915#12745] / [i915#4839])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk10/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][205] ([i915#12745])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3:
- shard-dg1: [PASS][206] -> [FAIL][207] ([i915#14600]) +1 other test fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-12/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-12/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-vga1:
- shard-snb: [PASS][208] -> [FAIL][209] ([i915#10826]) +1 other test fail
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-snb1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-vga1.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-snb1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#14544] / [i915#15643])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#15643]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#15643]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#15643]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#15643]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#15990] / [i915#8708]) +7 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#14544]) +12 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#1825]) +5 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#14544] / [i915#1825]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][219] +17 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#15990]) +10 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2: [PASS][221] -> [SKIP][222] ([i915#15989]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: [PASS][223] -> [SKIP][224] ([i915#15989]) +8 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][225] +48 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][226] +114 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#15991]) +19 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][228] ([i915#16056])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#15989]) +19 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#15989]) +6 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#15104] / [i915#15990])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#15991] / [i915#1825]) +6 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#15102]) +44 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#15102]) +19 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#15102]) +16 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#15102]) +9 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#15989]) +9 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-glk10: NOTRUN -> [SKIP][238] +127 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte:
- shard-glk11: NOTRUN -> [SKIP][239] +22 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk11/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#10055])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-glk: [PASS][241] -> [SKIP][242] +4 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#15989]) +9 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#15989]) +29 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-modesetfrombusy:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#15989]) +11 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15990]) +11 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#14544] / [i915#15102]) +4 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#15102] / [i915#3023]) +22 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#15990] / [i915#4423] / [i915#8708])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15991] / [i915#5354]) +18 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#15990] / [i915#8708]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#15990] / [i915#8708]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#14544] / [i915#15102] / [i915#3023])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#15102]) +24 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#15991]) +4 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15990]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-8/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [PASS][257] -> [SKIP][258] ([i915#15725])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-mtlp-6/igt@kms_hdmi_inject@inject-audio.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [PASS][259] -> [SKIP][260] ([i915#16012] / [i915#3555] / [i915#8228])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_hdr@bpc-switch.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#16012] / [i915#3555] / [i915#8228])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#16012]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#16012]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-2-xrgb16161616f:
- shard-rkl: [PASS][264] -> [SKIP][265] ([i915#16012]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-2-xrgb16161616f.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-2-xrgb16161616f.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#16011]) +6 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-8/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#16012] / [i915#3555] / [i915#8228])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#16012]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#16012]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#16011]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#16011] / [i915#3555] / [i915#8228])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@kms_hdr@static-toggle.html
- shard-rkl: [PASS][272] -> [SKIP][273] ([i915#16011] / [i915#3555] / [i915#8228])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-1/igt@kms_hdr@static-toggle.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-6/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#16011] / [i915#3555] / [i915#8228])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#16011]) +7 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-4-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#16011]) +7 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#13688])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#15460])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#15458]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#14544] / [i915#15458])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#15458])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#15458])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#15458]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#13409] / [i915#13476])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#14712])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#14712])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#16386]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#15709]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#15709]) +4 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#14544] / [i915#15709])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#16386]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#15709]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15709])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#16386]) +3 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#16386]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#16386]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][298] ([i915#10647] / [i915#12177])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][299] ([i915#10647]) +1 other test fail
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#13958])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#14259])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#15329]) +4 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#12343] / [i915#9812])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#12343] / [i915#5354])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#15948])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#15073])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: [PASS][307] -> [SKIP][308] ([i915#15073])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#15073])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-10/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][310] -> [SKIP][311] ([i915#15073])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#6524])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#6524] / [i915#6805])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#11520]) +5 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#11520]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][316] ([i915#11520]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#12316])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][318] ([i915#11520]) +13 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][319] ([i915#11520]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk10/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#11520]) +8 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-glk11: NOTRUN -> [SKIP][321] ([i915#11520])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk11/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#11520]) +4 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#11520]) +3 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#11520] / [i915#14544])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#14544] / [i915#9683])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu: NOTRUN -> [SKIP][326] ([i915#9683])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#9683])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#1072] / [i915#9732]) +7 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-6/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-sprite-blt:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#14544] / [i915#9732])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#9732]) +20 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-3/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +14 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_psr@psr2-sprite-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#9732]) +8 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#15949])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#15949])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-snb: NOTRUN -> [SKIP][336] +145 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-snb1/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][337] ([i915#15492] / [i915#16184])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk4/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#12755] / [i915#15867] / [i915#5190])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#12755] / [i915#15867])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#5289]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_selftest@drm_framebuffer:
- shard-dg1: NOTRUN -> [ABORT][341] ([i915#13179]) +1 other test abort
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-12/igt@kms_selftest@drm_framebuffer.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][342] ([i915#12276]) +1 other test incomplete
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk2/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#9906])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#9906]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#9906]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@kms_vrr@flip-basic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#9906])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-3/igt@kms_vrr@flip-basic-fastset.html
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#8808] / [i915#9906])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#3555]) +3 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-1/igt@kms_vrr@flip-dpms.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][349] ([i915#4349]) +4 other tests fail
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-suspend:
- shard-rkl: [PASS][350] -> [INCOMPLETE][351] ([i915#13520])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-8/igt@perf_pmu@rc6-suspend.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#3708])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#9917]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#16066]) +9 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-7/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#14544] / [i915#9917])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [ABORT][356] ([i915#15131]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_softpin@noreloc-s3:
- shard-snb: [ABORT][358] ([i915#15840]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-snb6/igt@gem_softpin@noreloc-s3.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-snb1/igt@gem_softpin@noreloc-s3.html
- shard-tglu: [ABORT][360] ([i915#15840]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-tglu-10/igt@gem_softpin@noreloc-s3.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-8/igt@gem_softpin@noreloc-s3.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [INCOMPLETE][362] ([i915#13356]) -> [PASS][363] +1 other test pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_module_load@load:
- shard-dg1: ([PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [DMESG-WARN][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387]) ([i915#4423]) -> ([PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-12/igt@i915_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-12/igt@i915_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-12/igt@i915_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-12/igt@i915_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-13/igt@i915_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-13/igt@i915_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-13/igt@i915_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-14/igt@i915_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-14/igt@i915_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-14/igt@i915_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-15/igt@i915_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-15/igt@i915_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-16/igt@i915_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-16/igt@i915_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-16/igt@i915_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-17/igt@i915_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-17/igt@i915_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-17/igt@i915_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-17/igt@i915_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-18/igt@i915_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-18/igt@i915_module_load@load.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-18/igt@i915_module_load@load.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-19/igt@i915_module_load@load.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-19/igt@i915_module_load@load.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-14/igt@i915_module_load@load.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@i915_module_load@load.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-12/igt@i915_module_load@load.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-18/igt@i915_module_load@load.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-14/igt@i915_module_load@load.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-18/igt@i915_module_load@load.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-18/igt@i915_module_load@load.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@i915_module_load@load.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-12/igt@i915_module_load@load.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-13/igt@i915_module_load@load.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@i915_module_load@load.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-13/igt@i915_module_load@load.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@i915_module_load@load.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-12/igt@i915_module_load@load.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@i915_module_load@load.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@i915_module_load@load.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@i915_module_load@load.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-13/igt@i915_module_load@load.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@i915_module_load@load.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@i915_module_load@load.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@i915_module_load@load.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@i915_module_load@load.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@i915_module_load@load.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-13/igt@i915_module_load@load.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [ABORT][412] ([i915#15132]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-1/igt@kms_async_flips@async-flip-suspend-resume.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][414] ([i915#15582]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-glk8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-rkl: [FAIL][416] ([i915#13566]) -> [PASS][417] +5 other tests pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][418] ([i915#12358] / [i915#14152]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg1: [DMESG-WARN][420] ([i915#4423]) -> [PASS][421] +3 other tests pass
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-17/igt@kms_flip@absolute-wf_vblank.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2: [FAIL][422] ([i915#13027]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-10/igt@kms_flip@flip-vs-expired-vblank.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-3/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: [ABORT][424] ([i915#15132]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-suspend.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-pri-indfb-multidraw:
- shard-glk: [SKIP][426] -> [PASS][427] +1 other test pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-glk6/igt@kms_frontbuffer_tracking@fbchdr-2p-pri-indfb-multidraw.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
- shard-rkl: [SKIP][428] ([i915#15989]) -> [PASS][429] +11 other tests pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][430] ([i915#12756] / [i915#13409] / [i915#13476]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][432] ([i915#15073]) -> [PASS][433] +1 other test pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-rkl: [SKIP][434] ([i915#15073]) -> [PASS][435] +1 other test pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-dg1: [SKIP][436] ([i915#15073]) -> [PASS][437] +1 other test pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [INCOMPLETE][438] ([i915#14419]) -> [PASS][439]
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_setmode@basic:
- shard-dg2: [FAIL][440] ([i915#15106]) -> [PASS][441]
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-6/igt@kms_setmode@basic.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-4/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][442] ([i915#15106]) -> [PASS][443] +2 other tests pass
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [INCOMPLETE][444] ([i915#12276]) -> [PASS][445]
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][446] ([i915#6335]) -> [SKIP][447] ([i915#14544] / [i915#6335])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: [SKIP][448] ([i915#280]) -> [SKIP][449] ([i915#14544] / [i915#280])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-3/igt@gem_ctx_sseu@engines.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#280]) -> [SKIP][451] ([i915#280])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#4525]) -> [SKIP][453] ([i915#4525]) +1 other test skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@gem_exec_balancer@parallel.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-rkl: [SKIP][454] ([i915#14544] / [i915#3281]) -> [SKIP][455] ([i915#3281]) +5 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-rkl: [SKIP][456] ([i915#3281]) -> [SKIP][457] ([i915#14544] / [i915#3281]) +1 other test skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][458] ([i915#4613] / [i915#7582]) -> [SKIP][459] ([i915#14544] / [i915#4613] / [i915#7582])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: [SKIP][460] ([i915#4613]) -> [SKIP][461] ([i915#14544] / [i915#4613])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#4613]) -> [SKIP][463] ([i915#4613])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@gem_lmem_swapping@random-engines.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#3282]) -> [SKIP][465] ([i915#3282]) +3 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: [SKIP][466] ([i915#15656]) -> [SKIP][467] ([i915#14544] / [i915#15656])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-3/igt@gem_tiled_pread_basic@basic.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#3297]) -> [SKIP][469] ([i915#3297]) +2 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: [SKIP][470] ([i915#3282] / [i915#3297]) -> [SKIP][471] ([i915#14544] / [i915#3282] / [i915#3297])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gen9_exec_parse@bb-secure:
- shard-rkl: [SKIP][472] ([i915#14544] / [i915#2527]) -> [SKIP][473] ([i915#2527])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: [SKIP][474] ([i915#2527]) -> [SKIP][475] ([i915#14544] / [i915#2527]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#6412]) -> [SKIP][477] ([i915#6412])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@i915_module_load@resize-bar.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][478] ([i915#8399]) -> [SKIP][479] ([i915#14544] / [i915#8399])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-8/igt@i915_pm_freq_api@freq-reset.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#16109]) -> [SKIP][481] ([i915#16109])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@i915_query@query-topology-known-pci-ids.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@i915_query@query-topology-known-pci-ids.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#7707]) -> [SKIP][483] ([i915#7707])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@intel_hwmon@hwmon-read.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: [SKIP][484] ([i915#5286]) -> [SKIP][485] ([i915#14544] / [i915#5286]) +2 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#5286]) -> [SKIP][487] ([i915#5286])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: [SKIP][488] ([i915#3638]) -> [SKIP][489] ([i915#14544] / [i915#3638]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-270.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][490] ([i915#3828]) -> [SKIP][491] ([i915#14544] / [i915#3828])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][492] ([i915#14544] / [i915#3638]) -> [SKIP][493] ([i915#3638]) +2 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][494] ([i915#14098] / [i915#6095]) -> [SKIP][495] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][496] ([i915#6095]) -> [SKIP][497] ([i915#14544] / [i915#6095]) +4 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-rkl: [SKIP][498] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][499] ([i915#14098] / [i915#6095]) +4 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][500] ([i915#12313]) -> [SKIP][501] ([i915#12313] / [i915#14544])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][502] ([i915#12805] / [i915#14544]) -> [SKIP][503] ([i915#12805])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: [INCOMPLETE][504] ([i915#15582]) -> [INCOMPLETE][505] ([i915#14694] / [i915#15582])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][506] ([i915#12313] / [i915#14544]) -> [SKIP][507] ([i915#12313]) +1 other test skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#6095]) -> [SKIP][509] ([i915#6095]) +3 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: [SKIP][510] ([i915#11151] / [i915#7828]) -> [SKIP][511] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-fast.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: [SKIP][512] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][513] ([i915#11151] / [i915#7828]) +3 other tests skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: [SKIP][514] ([i915#15330] / [i915#3116]) -> [SKIP][515] ([i915#14544] / [i915#15330] / [i915#3116])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][517] ([i915#15330] / [i915#3116])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent:
- shard-rkl: [SKIP][518] ([i915#14544] / [i915#15865]) -> [SKIP][519] ([i915#15865])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_content_protection@uevent.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][520] ([i915#13049]) -> [SKIP][521] ([i915#13049] / [i915#14544])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#4103]) -> [SKIP][523] ([i915#4103])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg1: [SKIP][524] -> [SKIP][525] ([i915#4423]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-17/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dsc@dsc-with-output-formats-ultrajoiner:
- shard-rkl: [SKIP][526] ([i915#16361]) -> [SKIP][527] ([i915#14544] / [i915#16361]) +2 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- shard-rkl: [SKIP][528] ([i915#14544] / [i915#16361]) -> [SKIP][529] ([i915#16361]) +3 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: [SKIP][530] ([i915#14544] / [i915#16084]) -> [SKIP][531] ([i915#16084])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: [SKIP][532] ([i915#14544] / [i915#16081]) -> [SKIP][533] ([i915#16081])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_feature_discovery@display-3x.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-rkl: [SKIP][534] ([i915#9934]) -> [SKIP][535] ([i915#14544] / [i915#9934]) +5 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@kms_flip@2x-absolute-wf_vblank.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-rkl: [SKIP][536] ([i915#14544] / [i915#9934]) -> [SKIP][537] ([i915#9934]) +1 other test skip
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: [SKIP][538] ([i915#15643]) -> [SKIP][539] ([i915#14544] / [i915#15643])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#15643]) -> [SKIP][541] ([i915#15643])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][542] ([i915#14544] / [i915#1825]) -> [SKIP][543] ([i915#1825]) +2 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#5439]) -> [SKIP][545] ([i915#5439])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][546] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][547] ([i915#15102] / [i915#3023]) +7 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][548] ([i915#1825]) -> [SKIP][549] ([i915#14544] / [i915#1825]) +6 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][550] ([i915#15102]) -> [SKIP][551] ([i915#14544] / [i915#15102]) +13 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-shrfb-plflip-blt:
- shard-dg1: [SKIP][552] ([i915#4423]) -> [SKIP][553]
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-shrfb-plflip-blt.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu:
- shard-rkl: [SKIP][554] ([i915#14544] / [i915#15102]) -> [SKIP][555] ([i915#15102]) +13 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-rkl: [SKIP][556] ([i915#5439]) -> [SKIP][557] ([i915#14544] / [i915#5439])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][558] -> [SKIP][559] ([i915#14544]) +37 other tests skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: [SKIP][560] ([i915#9766]) -> [SKIP][561] ([i915#14544] / [i915#9766])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][562] ([i915#15102] / [i915#3023]) -> [SKIP][563] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][564] ([i915#10433] / [i915#15102]) -> [SKIP][565] ([i915#15102]) +2 other tests skip
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt:
- shard-rkl: [SKIP][566] ([i915#14544]) -> [SKIP][567] +32 other tests skip
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt:
- shard-dg1: [SKIP][568] ([i915#15102]) -> [SKIP][569] ([i915#15102] / [i915#4423])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: [SKIP][570] ([i915#15709]) -> [SKIP][571] ([i915#14544] / [i915#15709]) +2 other tests skip
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-rkl: [SKIP][572] ([i915#14544] / [i915#15709]) -> [SKIP][573] ([i915#15709])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: [SKIP][574] ([i915#13958] / [i915#14544]) -> [SKIP][575] ([i915#13958]) +1 other test skip
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][576] ([i915#14259] / [i915#14544]) -> [SKIP][577] ([i915#14259])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: [SKIP][578] ([i915#14544] / [i915#15329]) -> [SKIP][579] ([i915#15329]) +3 other tests skip
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][580] ([i915#12343] / [i915#5354]) -> [SKIP][581] ([i915#12343] / [i915#14544] / [i915#5354])
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: [SKIP][582] ([i915#12343] / [i915#14544]) -> [SKIP][583] ([i915#12343])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][584] ([i915#3828]) -> [SKIP][585] ([i915#9340])
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: [SKIP][586] ([i915#9340]) -> [SKIP][587] ([i915#3828])
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [SKIP][588] ([i915#14544] / [i915#15073]) -> [SKIP][589] ([i915#15073])
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][590] ([i915#15073]) -> [SKIP][591] ([i915#14544] / [i915#15073])
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][592] ([i915#11520]) -> [SKIP][593] ([i915#11520] / [i915#14544]) +3 other tests skip
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][594] ([i915#11520] / [i915#14544]) -> [SKIP][595] ([i915#11520]) +2 other tests skip
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-dg1: [SKIP][596] ([i915#11520]) -> [SKIP][597] ([i915#11520] / [i915#4423])
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-19/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-rkl: [SKIP][598] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][599] ([i915#1072] / [i915#9732]) +8 other tests skip
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_psr@pr-cursor-plane-onoff.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-rkl: [SKIP][600] ([i915#1072] / [i915#9732]) -> [SKIP][601] ([i915#1072] / [i915#14544] / [i915#9732]) +10 other tests skip
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-2/igt@kms_psr@psr2-primary-mmap-gtt.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][602] ([i915#5289]) -> [SKIP][603] ([i915#14544] / [i915#5289])
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-rkl: [SKIP][604] ([i915#14544] / [i915#3555]) -> [SKIP][605] ([i915#3555]) +1 other test skip
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-center.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-3/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: [SKIP][606] ([i915#3555]) -> [SKIP][607] ([i915#14544] / [i915#3555])
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: [SKIP][608] ([i915#14544] / [i915#8623]) -> [SKIP][609] ([i915#8623])
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][610] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][611] ([i915#15243] / [i915#3555])
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@kms_vrr@flip-basic.html
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- shard-rkl: [SKIP][612] ([i915#15243] / [i915#3555]) -> [SKIP][613] ([i915#14544] / [i915#15243] / [i915#3555])
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-8/igt@kms_vrr@flipline.html
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][614] ([i915#11920]) -> [SKIP][615] ([i915#11920] / [i915#14544])
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-5/igt@kms_vrr@lobf.html
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][616] ([i915#15778]) -> [ABORT][617] ([i915#13029] / [i915#15778])
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg2-4/igt@perf_pmu@module-unload.html
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg2-8/igt@perf_pmu@module-unload.html
- shard-dg1: [ABORT][618] ([i915#15778]) -> [ABORT][619] ([i915#13029] / [i915#15778])
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-dg1-15/igt@perf_pmu@module-unload.html
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-dg1-19/igt@perf_pmu@module-unload.html
- shard-tglu: [ABORT][620] ([i915#13029] / [i915#15778]) -> [ABORT][621] ([i915#15778])
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-tglu-10/igt@perf_pmu@module-unload.html
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-tglu-6/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][622] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][623] ([i915#3291] / [i915#3708])
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/shard-rkl-6/igt@prime_vgem@basic-read.html
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/shard-rkl-7/igt@prime_vgem@basic-read.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
[i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
[i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
[i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
[i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16193
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8964 -> IGTPW_15368
CI-20190529: 20190529
CI_DRM_18682: 0984dfdee2a4f9e1922fe919a6b469e115e23360 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15368: 15368
IGT_8964: 8964
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/index.html
[-- Attachment #2: Type: text/html, Size: 202281 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread