* [PATCH i-g-t v2 1/2] lib/igt_sysfs: Update DRM debug mask handling for verbosity control
2025-03-20 9:07 [PATCH i-g-t v2 0/2] Refactor DRM Debug Severity Handling for enhanced precision Pranay Samala
@ 2025-03-20 9:07 ` Pranay Samala
2025-03-21 11:13 ` Jani Nikula
2025-03-20 9:07 ` [PATCH i-g-t v2 2/2] tests/kms: Simplify DRM debug mask update Pranay Samala
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Pranay Samala @ 2025-03-20 9:07 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar, pranay.samala,
Leo Li, Jani Nikula, Uma Shankar, Ramanaidu Naladala
Modified the DRM debug logic to use a mask passed by
the test to control the debug mask.
Once the test is completed, the exit handler will update
the debug mask with the original value, even if function
is called multiple times.
v2:
- Update the commit message (Jani)
- Using mask to update instead of a single category (Jani)
- To handle nested updates, exit_handler is set before the
update process (Jani)
Cc: Leo Li <sunpeng.li@amd.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Uma Shankar <uma.shankar@intel.com>
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Cc: Karthik B S <karthik.b.s@intel.com>
Cc: Ramanaidu Naladala <ramanaidu.naladala@intel.com>
Cc: Sameer Lattannavar <sameer.lattannavar@intel.com>
Fixes: 56b91193b825 ("lib/igt_sysfs: Implement dynamic adjustment of debug log level")
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
lib/igt_sysfs.c | 61 +++++++++++++++++++++++++++----------------------
lib/igt_sysfs.h | 20 +++++++++++++---
2 files changed, 51 insertions(+), 30 deletions(-)
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index 2e4c2ee63..af4b6c71d 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -443,69 +443,72 @@ int igt_sysfs_drm_module_params_open(void)
return open(path, O_RDONLY);
}
-static int log_level = -1;
+static int original_debug_mask = -1;
/**
- * igt_drm_debug_level_get:
+ * igt_drm_debug_mask_get:
*
- * This reads the current debug log level of the machine on
+ * This reads the current debug mask of the machine on
* which the test is currently executing.
*
* Returns:
- * The current log level, or -1 on error.
+ * The current log mask, or -1 on error.
*/
-int igt_drm_debug_level_get(int dir)
+int igt_drm_debug_mask_get(int dir)
{
char buf[20];
- if (log_level >= 0)
- return log_level;
+ if (original_debug_mask >= 0)
+ return original_debug_mask;
- if (igt_sysfs_read(dir, "debug", buf, sizeof(buf) - 1) < 0)
+ if (igt_sysfs_read(dir, "debug", buf, sizeof(buf)) < 0)
return -1;
return atoi(buf);
}
/**
- * igt_drm_debug_level_reset:
+ * igt_drm_debug_mask_reset:
*
- * This modifies the current debug log level of the machine
+ * This modifies the current debug mask
* to the default value post-test.
*
*/
-void igt_drm_debug_level_reset(void)
+void igt_drm_debug_mask_reset(void)
{
char buf[20];
int dir;
- if (log_level < 0)
+ if (original_debug_mask < 0)
return;
dir = igt_sysfs_drm_module_params_open();
if (dir < 0)
return;
- igt_debug("Resetting DRM debug level to %d\n", log_level);
- snprintf(buf, sizeof(buf), "%d", log_level);
+ igt_debug("Resetting DRM debug severity to 0x%x\n", original_debug_mask);
+ snprintf(buf, sizeof(buf), "%d", original_debug_mask);
igt_assert(igt_sysfs_set(dir, "debug", buf));
close(dir);
}
-static void igt_drm_debug_level_reset_exit_handler(int sig)
+void igt_drm_debug_mask_reset_exit_handler(int sig)
{
- igt_drm_debug_level_reset();
+ igt_drm_debug_mask_reset();
}
/**
- * igt_drm_debug_level_update:
- * @debug_level: new debug level to set
+ * igt_drm_debug_mask_update:
+ * @mask_to_set: new debug mask to set
*
- * This modifies the current drm debug log level to the new value.
+ * This modifies the current drm debug mask to the new value.
*/
-void igt_drm_debug_level_update(unsigned int new_log_level)
+
+void igt_drm_debug_mask_update(unsigned int mask_to_set)
{
+ unsigned int new_debug_mask;
+ static bool update_flag = true;
char buf[20];
int dir;
@@ -513,14 +516,19 @@ void igt_drm_debug_level_update(unsigned int new_log_level)
if (dir < 0)
return;
- log_level = igt_drm_debug_level_get(dir);
- if (log_level < 0) {
- close(dir);
- return;
+ if (update_flag) {
+ update_flag = false;
+ original_debug_mask = igt_drm_debug_mask_get(dir);
+ if (original_debug_mask < 0) {
+ close(dir);
+ return;
+ }
}
- igt_debug("Setting DRM debug level to %d\n", new_log_level);
- snprintf(buf, sizeof(buf), "%d", new_log_level);
+ new_debug_mask = mask_to_set;
+
+ igt_debug("Setting DRM debug severity to 0x%x\n", new_debug_mask);
+ snprintf(buf, sizeof(buf), "%d", new_debug_mask);
igt_assert(igt_sysfs_set(dir, "debug", buf));
close(dir);
@@ -529,7 +537,6 @@ void igt_drm_debug_level_update(unsigned int new_log_level)
* TODO: Check whether multiple exit handlers will get installed,
* if we call this api multiple times
*/
- igt_install_exit_handler(igt_drm_debug_level_reset_exit_handler);
}
/**
diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h
index 86345f3d1..b181fda35 100644
--- a/lib/igt_sysfs.h
+++ b/lib/igt_sysfs.h
@@ -143,9 +143,23 @@ void igt_sysfs_set_boolean(int dir, const char *attr, bool value);
void bind_fbcon(bool enable);
void fbcon_blink_enable(bool enable);
-void igt_drm_debug_level_update(unsigned int new_log_level);
-void igt_drm_debug_level_reset(void);
-int igt_drm_debug_level_get(int dir);
+enum drm_debug_category {
+ DRM_UT_CORE = 1 << 0,
+ DRM_UT_DRIVER = 1 << 1,
+ DRM_UT_KMS = 1 << 2,
+ DRM_UT_PRIME = 1 << 3,
+ DRM_UT_ATOMIC = 1 << 4,
+ DRM_UT_VBL = 1 << 5,
+ DRM_UT_STATE = 1 << 6,
+ DRM_UT_LEASE = 1 << 7,
+ DRM_UT_DP = 1 << 8,
+ DRM_UT_DRMRES = 1 << 9,
+};
+
+void igt_drm_debug_mask_reset_exit_handler(int sig);
+void igt_drm_debug_mask_update(unsigned int mask_to_set);
+void igt_drm_debug_mask_reset(void);
+int igt_drm_debug_mask_get(int dir);
int igt_sysfs_drm_module_params_open(void);
/**
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH i-g-t v2 2/2] tests/kms: Simplify DRM debug mask update
2025-03-20 9:07 [PATCH i-g-t v2 0/2] Refactor DRM Debug Severity Handling for enhanced precision Pranay Samala
2025-03-20 9:07 ` [PATCH i-g-t v2 1/2] lib/igt_sysfs: Update DRM debug mask handling for verbosity control Pranay Samala
@ 2025-03-20 9:07 ` Pranay Samala
2025-03-20 9:32 ` ✓ Xe.CI.BAT: success for Refactor DRM Debug Severity Handling for enhanced precision (rev2) Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Pranay Samala @ 2025-03-20 9:07 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar, pranay.samala
This fixes directly sends the debug mask to be updated.
User can use bitmask option during execution and update
it as per the requirement. If user doesn't passes any
mask during the execution then it will update the debug
mask as 0x4 and at the end of the test, exit handler will
set the debug mask to the original value.
v2: Implementated to allow flexible bitmask usage during execution. (Jani)
Fixes: a2ab0ec12ef4 ("tests/kms_atomic_transition: Reducing debug loglevel dynamically")
Fixes: 4baeb7397d71 ("tests/intel/kms_dp_linktrain_fallback: Reduce debug loglevel dynamically")
Fixes: 7a8a3744466f ("tests/kms_cursor_legacy: Reduce debug loglevel dynamically")
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/intel/kms_dp_linktrain_fallback.c | 40 ++++++++++++++++++-------
tests/kms_atomic_transition.c | 25 +++++++++-------
tests/kms_cursor_legacy.c | 38 ++++++++++++++++-------
3 files changed, 72 insertions(+), 31 deletions(-)
diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
index 6a872efd2..f827b9479 100644
--- a/tests/intel/kms_dp_linktrain_fallback.c
+++ b/tests/intel/kms_dp_linktrain_fallback.c
@@ -608,12 +608,33 @@ static bool run_dsc_sst_fallaback_test(data_t *data)
return ran;
}
-igt_main
+static unsigned int parse_bitmask;
+static unsigned int def_mask = 0x4;
+
+static int opt_handler(int opt, int opt_index, void *_data)
+{
+ switch (opt) {
+ case 'b':
+ parse_bitmask = strtoul(optarg, NULL, 16);
+ break;
+ }
+
+ return IGT_OPT_HANDLER_SUCCESS;
+}
+
+static const struct option long_opts[] = {
+ { .name = "bitmask", .has_arg = true, .val = 'b', },
+ {}
+};
+
+static const char help_str[] =
+ " --bitmask\t\tSpecify a bitmask in hexadecimal\n";
+
+igt_main_args("", long_opts, help_str, opt_handler, NULL)
{
data_t data = {};
igt_fixture {
- int dir, current_log_level;
data.drm_fd = drm_open_driver_master(DRIVER_INTEL |
DRIVER_XE);
kmstest_set_vt_graphics_mode();
@@ -621,18 +642,17 @@ igt_main
igt_display_require_output(&data.display);
for_each_pipe(&data.display, data.pipe)
data.n_pipes++;
- dir = igt_sysfs_drm_module_params_open();
- if (dir >= 0) {
- current_log_level = igt_drm_debug_level_get(dir);
- close(dir);
-
- if (current_log_level > 10)
- igt_drm_debug_level_update(10);
- }
/*
* Some environments may have environment
* variable set to ignore long hpd, disable it for this test
*/
+
+ igt_install_exit_handler(igt_drm_debug_mask_reset_exit_handler);
+ if (parse_bitmask)
+ igt_drm_debug_mask_update(parse_bitmask);
+ else
+ igt_drm_debug_mask_update(def_mask);
+
igt_assert_f(igt_ignore_long_hpd(data.drm_fd, false),
"Unable to disable ignore long hpd\n");
}
diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c
index 0342af206..9973ff263 100644
--- a/tests/kms_atomic_transition.c
+++ b/tests/kms_atomic_transition.c
@@ -1093,6 +1093,9 @@ static bool pipe_output_combo_valid(igt_display_t *display,
return ret;
}
+static unsigned int parse_bitmask;
+static unsigned int def_mask = 0x4;
+
static int opt_handler(int opt, int opt_index, void *_data)
{
data_t *data = _data;
@@ -1101,6 +1104,9 @@ static int opt_handler(int opt, int opt_index, void *_data)
case 'e':
data->extended = true;
break;
+ case 'b':
+ parse_bitmask = strtoul(optarg, NULL, 16);
+ break;
}
return IGT_OPT_HANDLER_SUCCESS;
@@ -1108,11 +1114,13 @@ static int opt_handler(int opt, int opt_index, void *_data)
static const struct option long_opts[] = {
{ .name = "extended", .has_arg = false, .val = 'e', },
+ { .name = "bitmask", .has_arg = true, .val = 'b', },
{}
};
static const char help_str[] =
- " --extended\t\tRun the extended tests\n";
+ " --extended\t\tRun the extended tests\n"
+ " --bitmask\t\tSpecify a bitmask in hexadecimal\n";
static data_t data;
@@ -1171,8 +1179,6 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
int pipe_count = 0;
igt_fixture {
- int dir, current_log_level;
-
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
kmstest_set_vt_graphics_mode();
@@ -1185,14 +1191,11 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_connected_output(&data.display, output)
count++;
- dir = igt_sysfs_drm_module_params_open();
- if (dir >= 0) {
- current_log_level = igt_drm_debug_level_get(dir);
- close(dir);
-
- if (current_log_level > 10)
- igt_drm_debug_level_update(10);
- }
+ igt_install_exit_handler(igt_drm_debug_mask_reset_exit_handler);
+ if (parse_bitmask)
+ igt_drm_debug_mask_update(parse_bitmask);
+ else
+ igt_drm_debug_mask_update(def_mask);
}
igt_describe("Check toggling of primary plane with vblank");
diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
index 44f031e7b..2985e4852 100644
--- a/tests/kms_cursor_legacy.c
+++ b/tests/kms_cursor_legacy.c
@@ -1823,7 +1823,29 @@ static void modeset_atomic_cursor_hotspot(igt_display_t *display)
igt_remove_fb(display->drm_fd, &cursor_fb);
}
-igt_main
+static unsigned int parse_bitmask;
+static unsigned int def_mask = 0x4;
+
+static int opt_handler(int opt, int opt_index, void *_data)
+{
+ switch (opt) {
+ case 'b':
+ parse_bitmask = strtoul(optarg, NULL, 16);
+ break;
+ }
+
+ return IGT_OPT_HANDLER_SUCCESS;
+}
+
+static const struct option long_opts[] = {
+ { .name = "bitmask", .has_arg = true, .val = 'b', },
+ {}
+};
+
+static const char help_str[] =
+ " --bitmask\t\tSpecify a bitmask in hexadecimal\n";
+
+igt_main_args("", long_opts, help_str, opt_handler, NULL)
{
const int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
igt_display_t display = { .drm_fd = -1 };
@@ -1839,7 +1861,6 @@ igt_main
};
igt_fixture {
- int dir, current_log_level;
display.drm_fd = drm_open_driver_master(DRIVER_ANY);
kmstest_set_vt_graphics_mode();
@@ -1851,14 +1872,11 @@ igt_main
*/
intel_psr2_restore = i915_psr2_sel_fetch_to_psr1(display.drm_fd, NULL);
- dir = igt_sysfs_drm_module_params_open();
- if (dir >= 0) {
- current_log_level = igt_drm_debug_level_get(dir);
- close(dir);
-
- if (current_log_level > 10)
- igt_drm_debug_level_update(10);
- }
+ igt_install_exit_handler(igt_drm_debug_mask_reset_exit_handler);
+ if (parse_bitmask)
+ igt_drm_debug_mask_update(parse_bitmask);
+ else
+ igt_drm_debug_mask_update(def_mask);
}
igt_describe("Test checks how many cursor updates we can fit between vblanks "
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✗ Xe.CI.Full: failure for Refactor DRM Debug Severity Handling for enhanced precision (rev2)
2025-03-20 9:07 [PATCH i-g-t v2 0/2] Refactor DRM Debug Severity Handling for enhanced precision Pranay Samala
` (3 preceding siblings ...)
2025-03-20 9:52 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-03-20 10:23 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-03-20 10:23 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 102613 bytes --]
== Series Details ==
Series: Refactor DRM Debug Severity Handling for enhanced precision (rev2)
URL : https://patchwork.freedesktop.org/series/146093/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8276_full -> XEIGTPW_12800_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12800_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12800_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12800_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
- shard-dg2-set2: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
- shard-lnl: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
New tests
---------
New tests have been introduced between XEIGT_8276_full and XEIGTPW_12800_full:
### New IGT tests (1) ###
* igt@xe_oa@syncs-ufence-wait-cfg@ccs-0:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_12800_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-lnl: NOTRUN -> [ABORT][4] ([Intel XE#3914])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@core_hotunplug@hotreplug-lateclose.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#873])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#873])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#3768])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#664])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [PASS][9] -> [INCOMPLETE][10] ([Intel XE#2613]) +1 other test incomplete
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2370])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3658])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2327]) +4 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2328])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#607])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1477])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#607])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +19 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +13 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +10 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#610])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1428])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#610])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2191])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2191])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2191]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1512]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#367])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +181 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +18 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#3432]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2652] / [Intel XE#787]) +21 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#3432])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2669]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2887]) +29 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][42] ([Intel XE#3124])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][43] ([Intel XE#1727] / [Intel XE#3113])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#455] / [Intel XE#787]) +49 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4416]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@kms_cdclk@plane-scaling.html
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2724])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2325]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#306]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#306]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2252]) +15 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#373]) +11 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#373]) +9 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2390])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2341]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2320]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#308]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2321]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2321]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1424]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#309]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2291])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2291]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#309]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: NOTRUN -> [DMESG-WARN][66] ([Intel XE#877])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2286])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4210])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1340])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([i915#3804])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#4354])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#4354])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4354]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#2244]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2244]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#4422])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4422])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#4422])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4156]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#776])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#703])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2373])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#703])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-busy-flip:
- shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#2316]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-7/igt@kms_flip@2x-busy-flip.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_flip@2x-busy-flip.html
- shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#310])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-435/igt@kms_flip@2x-busy-flip.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-plain-flip:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1421]) +7 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][89] ([Intel XE#301]) +3 other tests fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][90] ([Intel XE#301]) +5 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [PASS][91] -> [FAIL][92] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [INCOMPLETE][93] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][94] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][95] ([Intel XE#2882]) +1 other test fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#886]) +2 other tests fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1397] / [Intel XE#1745])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1397])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2293]) +8 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2293] / [Intel XE#2380]) +8 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1401]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#352])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#651]) +43 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#651]) +13 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#4141]) +23 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [PASS][108] -> [SKIP][109] ([Intel XE#656]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#658]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2352]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2311]) +49 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2313]) +56 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#656]) +9 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1469])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#4439])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2312]) +22 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#656]) +57 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#653]) +36 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2340])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2340])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1470] / [Intel XE#2853])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1503])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2927])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2927])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2934])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2927])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2501])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#356])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#356])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2486])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: NOTRUN -> [DMESG-FAIL][132] ([Intel XE#324]) +2 other tests dmesg-fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3:
- shard-lnl: NOTRUN -> [DMESG-WARN][133] ([Intel XE#324]) +17 other tests dmesg-warn
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][134] ([Intel XE#616]) +3 other tests fail
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_lowres@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#599])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_plane_lowres@tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2393])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#455]) +22 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2763]) +24 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2763]) +17 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2763]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1131])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][143] -> [FAIL][144] ([Intel XE#718])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#3309])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#1439] / [Intel XE#836])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#836])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1439] / [Intel XE#3141])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#2893]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#1489]) +16 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1489]) +9 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1128]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1122])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2387]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2850] / [Intel XE#929]) +20 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2234] / [Intel XE#2850]) +30 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1406]) +5 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2234])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2414])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2939])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#3414]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@kms_rotation_crc@primary-rotation-270.html
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@kms_rotation_crc@primary-rotation-270.html
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#1127])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2330])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#1127])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2413])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic:
- shard-bmg: NOTRUN -> [FAIL][169] ([Intel XE#2883]) +6 other tests fail
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-dp-4:
- shard-dg2-set2: [PASS][170] -> [FAIL][171] ([Intel XE#2883]) +4 other tests fail
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@kms_setmode@basic@pipe-b-dp-4.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@kms_setmode@basic@pipe-b-dp-4.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][172] -> [FAIL][173] ([Intel XE#2883]) +2 other tests fail
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2-set2: [PASS][174] -> [SKIP][175] ([Intel XE#455])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@kms_setmode@clone-exclusive-crtc.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#1435])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][177] ([Intel XE#1729])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2450])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][179] ([Intel XE#899]) +3 other tests fail
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#1499]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1499])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#756])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@kms_writeback@writeback-fb-id.html
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#756])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#756]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#1091] / [Intel XE#2849])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#1091] / [Intel XE#2849])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#1126]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#2504])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@unprivileged-access:
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#4497]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@xe_eu_stall@unprivileged-access.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#2905]) +15 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#2905] / [Intel XE#3889])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#2905] / [Intel XE#3889]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
- shard-bmg: NOTRUN -> [SKIP][194] ([Intel XE#2905] / [Intel XE#3889])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#2905]) +20 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#2905]) +16 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#688]) +7 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-dg2-set2: [PASS][198] -> [SKIP][199] ([Intel XE#1392]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#1392])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#1392]) +7 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2322]) +19 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#288]) +38 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#2360])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#2229])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#2229])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#512])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@xe_mmap@small-bar.html
- shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#586])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@xe_mmap@small-bar.html
- shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#512])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#378])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@xe_module_load@force-load.html
- shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#378])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@xe_module_load@force-load.html
- shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#2457])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@xe_module_load@force-load.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#4501])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@xe_oa@buffer-size.html
- shard-lnl: NOTRUN -> [FAIL][214] ([Intel XE#4541]) +1 other test fail
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@xe_oa@buffer-size.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#2248])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@xe_oa@polling-small-buf.html
* igt@xe_oa@syncs-syncobj-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][217] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@xe_oa@syncs-syncobj-wait-cfg.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#2838] / [Intel XE#979])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
- shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#1420] / [Intel XE#2838])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@xe_pat@pat-index-xehpc.html
- shard-bmg: NOTRUN -> [SKIP][220] ([Intel XE#1420])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][221] ([Intel XE#977])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][222] ([Intel XE#2245])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][223] ([Intel XE#2236])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: NOTRUN -> [FAIL][224] ([Intel XE#1173]) +1 other test fail
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-434/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][225] ([Intel XE#2427])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@xe_peer2peer@write.html
- shard-lnl: NOTRUN -> [SKIP][226] ([Intel XE#1061])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#2284])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][228] ([Intel XE#2284]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-dg2-set2: NOTRUN -> [SKIP][229] ([Intel XE#2284] / [Intel XE#366])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#2284] / [Intel XE#366])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][231] ([Intel XE#584]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-basic:
- shard-bmg: NOTRUN -> [ABORT][232] ([Intel XE#4268])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: NOTRUN -> [ABORT][233] ([Intel XE#4268])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-engines:
- shard-lnl: NOTRUN -> [SKIP][234] ([Intel XE#944]) +7 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: NOTRUN -> [SKIP][235] ([Intel XE#944]) +6 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-434/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][236] ([Intel XE#944]) +8 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: NOTRUN -> [SKIP][237] ([Intel XE#4130]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][238] ([Intel XE#4130]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
- shard-lnl: NOTRUN -> [SKIP][239] ([Intel XE#4130]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: NOTRUN -> [SKIP][240] ([Intel XE#4351])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][241] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][242] +1 other test pass
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
- shard-dg2-set2: [SKIP][243] ([Intel XE#2191]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][245] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4522]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-dg2-set2: [SKIP][247] ([Intel XE#309]) -> [PASS][248] +2 other tests pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-434/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][249] ([Intel XE#2291]) -> [PASS][250] +5 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2-set2: [SKIP][251] ([Intel XE#310]) -> [PASS][252] +6 other tests pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][253] ([Intel XE#2316]) -> [PASS][254] +5 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][255] ([Intel XE#301]) -> [PASS][256] +1 other test pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][257] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
- shard-dg2-set2: [FAIL][259] ([Intel XE#301]) -> [PASS][260] +2 other tests pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][261] ([Intel XE#656]) -> [PASS][262] +4 other tests pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-set2: [SKIP][263] ([Intel XE#4328]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@kms_joiner@basic-force-big-joiner.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [SKIP][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290]) ([Intel XE#378]) -> ([PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-1/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-5/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-5/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-2/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-5/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-4/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-4/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-3/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-1/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-1/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-8/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-3/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-8/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-7/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-7/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-7/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-2/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-2/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-7/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-6/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-8/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-6/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-8/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-6/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-4/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-5/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-8/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-3/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-7/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-6/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-4/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-5/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-1/igt@xe_module_load@load.html
- shard-bmg: ([PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [SKIP][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335]) ([Intel XE#2457]) -> ([PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-4/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-2/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-2/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-7/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-7/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-7/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-2/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-2/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-4/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-7/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-4/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-4/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-4/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-4/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-2/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-6/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [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], [SKIP][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382]) ([Intel XE#378]) -> ([PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [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])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-463/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-463/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-435/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-435/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-435/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-435/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-435/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-463/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-463/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-463/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@xe_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@xe_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@xe_module_load@load.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@xe_module_load@load.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@xe_module_load@load.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-434/igt@xe_module_load@load.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-434/igt@xe_module_load@load.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-434/igt@xe_module_load@load.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@xe_module_load@load.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@xe_module_load@load.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@xe_module_load@load.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@xe_module_load@load.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@xe_module_load@load.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@xe_module_load@load.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@xe_module_load@load.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@xe_module_load@load.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@xe_module_load@load.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@xe_module_load@load.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@xe_module_load@load.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@xe_module_load@load.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@xe_module_load@load.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@xe_module_load@load.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@xe_module_load@load.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@xe_module_load@load.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@xe_module_load@load.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-435/igt@xe_module_load@load.html
#### Warnings ####
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][408] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][409] ([Intel XE#787]) +10 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][410] ([Intel XE#787]) -> [SKIP][411] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-6.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][412] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][413] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [FAIL][414] ([Intel XE#1178]) -> [SKIP][415] ([Intel XE#455])
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@kms_content_protection@atomic.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][416] ([Intel XE#4132]) -> [FAIL][417] ([Intel XE#1178]) +1 other test fail
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][418] ([Intel XE#4132]) -> [FAIL][419] ([Intel XE#1178]) +1 other test fail
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-466/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-lnl: [ABORT][420] ([Intel XE#4528]) -> [SKIP][421] ([Intel XE#1397] / [Intel XE#1745])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: [ABORT][422] ([Intel XE#4528]) -> [SKIP][423] ([Intel XE#1397])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][424] ([Intel XE#656]) -> [SKIP][425] ([Intel XE#651]) +15 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][426] ([Intel XE#2311]) -> [SKIP][427] ([Intel XE#2312]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][428] ([Intel XE#2312]) -> [SKIP][429] ([Intel XE#2311]) +13 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][430] ([Intel XE#2312]) -> [SKIP][431] ([Intel XE#4141]) +4 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][432] ([Intel XE#4141]) -> [SKIP][433] ([Intel XE#2312]) +1 other test skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][434] ([Intel XE#651]) -> [SKIP][435] ([Intel XE#656]) +5 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][436] ([Intel XE#656]) -> [SKIP][437] ([Intel XE#653]) +11 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][438] ([Intel XE#653]) -> [SKIP][439] ([Intel XE#656]) +3 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][440] ([Intel XE#2312]) -> [SKIP][441] ([Intel XE#2313]) +12 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][442] ([Intel XE#2313]) -> [SKIP][443] ([Intel XE#2312]) +5 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][444] ([Intel XE#362]) -> [SKIP][445] ([Intel XE#1500])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8276/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4132]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4132
[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#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4439
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4528]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4528
[Intel XE#4541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4541
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8276 -> IGTPW_12800
IGTPW_12800: 12800
IGT_8276: 8276
xe-2825-a958e31a81b3267201c85b6f171419586afa792c: a958e31a81b3267201c85b6f171419586afa792c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12800/index.html
[-- Attachment #2: Type: text/html, Size: 119312 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread