* [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client
@ 2024-09-26 10:39 Mika Kuoppala
2024-09-26 10:39 ` [PATCH i-g-t 2/3] tests/xe_eudebug: Detect thread starvation on discovery Mika Kuoppala
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Mika Kuoppala @ 2024-09-26 10:39 UTC (permalink / raw)
To: igt-dev; +Cc: Mika Kuoppala, Christoph Manszewski, Dominik Grzegorzek
If we only find hardware engine for first client,
it can be stale for other clients, after we close
the first client, as it was associated through the fd
and we should not trust lib/xe internals how it handles
the engine array.
I found this when trying to track down:
[ 132.467616] xe 0000:00:02.0: [drm] *ERROR* Ioctl argument check
failed at drivers/gpu/drm/xe/xe_exec_queue.c:611:
eci[0].gt_id >= xe->info.gt_count
transient error when running xe_eudebug@discovery-empty.
Implying that a provided class_instance was corrupted/stale.
Rediscover the engine for each opened client so that
it points to a proper valid entry for exec_queue_create.
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
---
tests/intel/xe_eudebug.c | 18 ++++++------------
1 file changed, 6 insertions(+), 12 deletions(-)
diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
index 40e07ddf6..a2b2f3596 100644
--- a/tests/intel/xe_eudebug.c
+++ b/tests/intel/xe_eudebug.c
@@ -1007,7 +1007,6 @@ static void test_basic_discovery(int fd, unsigned int flags, bool match_opposite
#define DISCOVERY_VM_BIND (1 << 3)
static void run_discovery_client(struct xe_eudebug_client *c)
{
- struct drm_xe_engine_class_instance *hwe = NULL;
int fd[RESOURCE_COUNT], i;
bool skip_sleep = c->flags & (DISCOVERY_DESTROY_RESOURCES | DISCOVERY_CLOSE_CLIENT);
uint64_t addr = 0x1a0000;
@@ -1015,20 +1014,15 @@ static void run_discovery_client(struct xe_eudebug_client *c)
srand(getpid());
for (i = 0; i < RESOURCE_COUNT; i++) {
+ struct drm_xe_engine_class_instance *hwe = NULL;
+
fd[i] = xe_eudebug_client_open_driver(c);
- if (!i) {
- bool found = false;
+ /* Get first */
+ xe_eudebug_for_each_engine(fd[i], hwe)
+ break;
- xe_for_each_engine(fd[0], hwe) {
- if (hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE ||
- hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER) {
- found = true;
- break;
- }
- }
- igt_assert(found);
- }
+ igt_assert(hwe);
/*
* Give the debugger a break in event stream after every
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 2/3] tests/xe_eudebug: Detect thread starvation on discovery
2024-09-26 10:39 [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client Mika Kuoppala
@ 2024-09-26 10:39 ` Mika Kuoppala
2024-09-26 14:18 ` Grzegorzek, Dominik
2024-09-26 10:39 ` [PATCH i-g-t 3/3] lib/xe_eudebug: Warn on pipe timeouts Mika Kuoppala
` (5 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Mika Kuoppala @ 2024-09-26 10:39 UTC (permalink / raw)
To: igt-dev; +Cc: Mika Kuoppala
Discovery tests spawns multiple clients and multiple
debuggers and sometimes, especially with kernel debugs on,
some thread really can starve more than one second.
Add a check that we dont start to assert missing
resources if we didn't get any.
Another option would be to just skip starved thread
checks and assert that some of the threads succeeded.
But lets try this as a stopgap measure before giving
up.
Increase worker time until we see an event.
Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
---
tests/intel/xe_eudebug.c | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
index a2b2f3596..bf560462e 100644
--- a/tests/intel/xe_eudebug.c
+++ b/tests/intel/xe_eudebug.c
@@ -1107,11 +1107,24 @@ static void *discovery_race_thread(void *data)
if (random() % 2) {
struct drm_xe_eudebug_event *e = NULL;
+ int max_worker_waits = 30;
int i = -1;
xe_eudebug_debugger_start_worker(s->debugger);
- sleep(1);
+
+ /*
+ * Thread can starve for more than one second. Make
+ * sure we get atleast one event before stopping.
+ */
+ do
+ sleep(1);
+ while (!READ_ONCE(s->debugger->event_count) &&
+ --max_worker_waits);
+
+ igt_assert(READ_ONCE(s->debugger->event_count));
+
xe_eudebug_debugger_stop_worker(s->debugger, 1);
+
igt_debug("Resources discovered: %lu\n", s->debugger->event_count);
xe_eudebug_for_each_event(e, s->debugger->log) {
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 3/3] lib/xe_eudebug: Warn on pipe timeouts
2024-09-26 10:39 [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client Mika Kuoppala
2024-09-26 10:39 ` [PATCH i-g-t 2/3] tests/xe_eudebug: Detect thread starvation on discovery Mika Kuoppala
@ 2024-09-26 10:39 ` Mika Kuoppala
2024-09-26 14:38 ` Grzegorzek, Dominik
2024-09-26 11:49 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client Patchwork
` (4 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Mika Kuoppala @ 2024-09-26 10:39 UTC (permalink / raw)
To: igt-dev; +Cc: Mika Kuoppala
eudebug test helpers use pipe between debugger/debuggee
communication. If we ever fail even a single pipe read
the whole test framework sync is lost. So if we get a
timeout we should be quite vocal about in instead of
just notifying that the pipe read size was not met.
Further with kernel debugs on, some discovery tests
can starve some of the debugger threads for quite
a long time so increase the default timeout value.
Future improvement could be to parametrize the
timeout value so that simple tests with quite
deterministic runtime could specify a shorter
timeout.
Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
---
lib/xe/xe_eudebug.c | 43 +++++++++++++++++++++++++++++--------------
lib/xe/xe_eudebug.h | 2 +-
2 files changed, 30 insertions(+), 15 deletions(-)
diff --git a/lib/xe/xe_eudebug.c b/lib/xe/xe_eudebug.c
index 2c7cd2ae1..da93e9785 100644
--- a/lib/xe/xe_eudebug.c
+++ b/lib/xe/xe_eudebug.c
@@ -47,6 +47,23 @@ struct match_dto {
#define CLIENT_STAGE 5
#define DEBUGGER_STAGE 6
+static const char *token_to_str(uint64_t token)
+{
+ static const char *s[] = {
+ "client pid",
+ "client run",
+ "client fini",
+ "client stop",
+ "client stage",
+ "debugger stage",
+ };
+
+ if (token >= ARRAY_SIZE(s))
+ return "unknown";
+
+ return s[token];
+}
+
static const char *type_to_str(unsigned int type)
{
switch (type) {
@@ -248,18 +265,7 @@ static int safe_pipe_read(int pipe[2], void *buf, int nbytes, int timeout_ms)
if (ret > 0)
return read(pipe[0], buf, nbytes);
- return 0;
-}
-
-static uint64_t pipe_read(int pipe[2], int timeout_ms)
-{
- uint64_t in;
- uint64_t ret;
-
- ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms);
- igt_assert(ret == sizeof(in));
-
- return in;
+ return -ETIMEDOUT;
}
static void pipe_signal(int pipe[2], uint64_t token)
@@ -279,12 +285,21 @@ static void pipe_close(int pipe[2])
static uint64_t __wait_token(int pipe[2], const uint64_t token, int timeout_ms)
{
uint64_t in;
+ int ret;
- in = pipe_read(pipe, timeout_ms);
+ ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms);
+ igt_assert_f(ret > 0,
+ "Pipe read timeout waiting for token '%s:(%ld)'\n",
+ token_to_str(token), token);
igt_assert_eq(in, token);
- return pipe_read(pipe, timeout_ms);
+ ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms);
+ igt_assert_f(ret > 0,
+ "Pipe read timeout waiting for token '%s:(%ld)'\n",
+ token_to_str(token), token);
+
+ return in;
}
static uint64_t client_wait_token(struct xe_eudebug_client *c, const uint64_t token)
diff --git a/lib/xe/xe_eudebug.h b/lib/xe/xe_eudebug.h
index 29ab68fee..6e4666333 100644
--- a/lib/xe/xe_eudebug.h
+++ b/lib/xe/xe_eudebug.h
@@ -112,7 +112,7 @@ typedef void (*xe_eudebug_trigger_fn)(struct xe_eudebug_debugger *,
* Default abort timeout to use across xe_eudebug lib and tests if no specific
* timeout value is required.
*/
-#define XE_EUDEBUG_DEFAULT_TIMEOUT_SEC 25ULL
+#define XE_EUDEBUG_DEFAULT_TIMEOUT_SEC 60ULL
#define XE_EUDEBUG_FILTER_EVENT_NONE BIT(DRM_XE_EUDEBUG_EVENT_NONE)
#define XE_EUDEBUG_FILTER_EVENT_READ BIT(DRM_XE_EUDEBUG_EVENT_READ)
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client
2024-09-26 10:39 [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client Mika Kuoppala
2024-09-26 10:39 ` [PATCH i-g-t 2/3] tests/xe_eudebug: Detect thread starvation on discovery Mika Kuoppala
2024-09-26 10:39 ` [PATCH i-g-t 3/3] lib/xe_eudebug: Warn on pipe timeouts Mika Kuoppala
@ 2024-09-26 11:49 ` Patchwork
2024-09-26 12:07 ` ✗ CI.xeBAT: failure " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-09-26 11:49 UTC (permalink / raw)
To: Mika Kuoppala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 14167 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client
URL : https://patchwork.freedesktop.org/series/139150/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15446 -> IGTPW_11810
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_11810 need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11810, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/index.html
Participating hosts (38 -> 37)
------------------------------
Additional (1): bat-dg1-7
Missing (2): fi-snb-2520m fi-kbl-8809g
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11810:
### IGT changes ###
#### Warnings ####
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-twl-2: [SKIP][1] ([i915#11731]) -> [SKIP][2] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-twl-1: [SKIP][3] ([i915#11731]) -> [SKIP][4] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-twl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
Known issues
------------
Here are the changes found in IGTPW_11810 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg1-7: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-arls-2: [PASS][9] -> [DMESG-FAIL][10] ([i915#10262] / [i915#10341])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-2/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-arls-2/igt@i915_selftest@live.html
- bat-arls-1: [PASS][11] -> [DMESG-WARN][12] ([i915#10341] / [i915#12133])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-1/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-arls-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_engines:
- bat-arls-2: [PASS][13] -> [DMESG-WARN][14] ([i915#10341])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-2/igt@i915_selftest@live@gt_engines.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-arls-2/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-1: [PASS][15] -> [DMESG-WARN][16] ([i915#11349])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-1/igt@i915_selftest@live@hangcheck.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-arls-1/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@ring_submission:
- bat-arls-2: [PASS][17] -> [DMESG-FAIL][18] ([i915#10262]) +32 other tests dmesg-fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-2/igt@i915_selftest@live@ring_submission.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-arls-2/igt@i915_selftest@live@ring_submission.html
* igt@i915_selftest@live@sanitycheck:
- bat-apl-1: [PASS][19] -> [DMESG-WARN][20] ([i915#11621]) +46 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][21] ([i915#4212]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][22] ([i915#4215])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_busy@basic@flip:
- bat-apl-1: [PASS][23] -> [DMESG-WARN][24] ([i915#180] / [i915#1982]) +3 other tests dmesg-warn
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_busy@basic@flip.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-apl-1/igt@kms_busy@basic@flip.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg1-7: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#3840])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-modeset@b-dp1:
- bat-apl-1: [PASS][27] -> [DMESG-WARN][28] ([i915#11621] / [i915#180]) +32 other tests dmesg-warn
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1:
- bat-apl-1: [PASS][29] -> [DMESG-WARN][30] ([i915#11621] / [i915#180] / [i915#1982])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg1-7: NOTRUN -> [SKIP][31]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][32] ([i915#433])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-apl-1: [PASS][33] -> [DMESG-WARN][34] ([i915#180]) +10 other tests dmesg-warn
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg1-7: NOTRUN -> [SKIP][35] ([i915#5354])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg1-7: NOTRUN -> [SKIP][36] ([i915#1072] / [i915#9732]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg1-7: NOTRUN -> [SKIP][37] ([i915#3555])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg1-7: NOTRUN -> [SKIP][38] ([i915#3708]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][39] ([i915#3708] / [i915#4077]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][40] ([i915#12216]) -> [PASS][41] +1 other test pass
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-mtlp-8/igt@i915_selftest@live.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-mtlp-8/igt@i915_selftest@live.html
- bat-twl-1: [INCOMPLETE][42] ([i915#9413]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@i915_selftest@live.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: [INCOMPLETE][44] ([i915#10886] / [i915#9413]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
#### Warnings ####
* igt@gem_mmap@basic:
- bat-arls-2: [SKIP][46] ([i915#4083]) -> [SKIP][47] ([i915#11343] / [i915#4083])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-2/igt@gem_mmap@basic.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-arls-2/igt@gem_mmap@basic.html
- bat-arls-1: [SKIP][48] ([i915#4083]) -> [SKIP][49] ([i915#11343] / [i915#4083])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-1/igt@gem_mmap@basic.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-arls-1/igt@gem_mmap@basic.html
- bat-arls-5: [SKIP][50] ([i915#4083]) -> [SKIP][51] ([i915#11343] / [i915#4083])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-5/igt@gem_mmap@basic.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-arls-5/igt@gem_mmap@basic.html
* igt@i915_module_load@reload:
- bat-arls-5: [DMESG-WARN][52] ([i915#11637]) -> [DMESG-WARN][53] ([i915#11637] / [i915#1982])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-5/igt@i915_module_load@reload.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-arls-5/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@module-reload:
- bat-apl-1: [DMESG-WARN][54] ([i915#11621]) -> [DMESG-WARN][55] ([i915#11621] / [i915#180])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@i915_pm_rpm@module-reload.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/bat-apl-1/igt@i915_pm_rpm@module-reload.html
[i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10886
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637
[i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8032 -> IGTPW_11810
CI-20190529: 20190529
CI_DRM_15446: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11810: 4138af80d1463387b08bffaec814bdbd0107b2ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/index.html
[-- Attachment #2: Type: text/html, Size: 17573 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ CI.xeBAT: failure for series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client
2024-09-26 10:39 [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client Mika Kuoppala
` (2 preceding siblings ...)
2024-09-26 11:49 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client Patchwork
@ 2024-09-26 12:07 ` Patchwork
2024-09-26 14:06 ` [PATCH i-g-t 1/3] " Grzegorzek, Dominik
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-09-26 12:07 UTC (permalink / raw)
To: Mika Kuoppala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5376 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client
URL : https://patchwork.freedesktop.org/series/139150/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8032_BAT -> XEIGTPW_11810_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11810_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11810_BAT, 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 (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11810_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-dg2-oem2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Warnings ####
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-1: [SKIP][3] ([Intel XE#2236]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-adlp-vf: [SKIP][5] ([Intel XE#2468]) -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@xe_pat@pat-index-xelpg:
- {bat-bmg-2}: [SKIP][7] ([Intel XE#2236]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
Known issues
------------
Here are the changes found in XEIGTPW_11810_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-lnl-1: [PASS][9] -> [FAIL][10] ([Intel XE#886]) +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_psr@psr-primary-page-flip@edp-1:
- bat-lnl-1: [PASS][11] -> [FAIL][12] ([Intel XE#1649]) +5 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][13] ([Intel XE#1861]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@basic:
- bat-lnl-2: [SKIP][15] ([Intel XE#2235]) -> [SKIP][16] ([Intel XE#2235] / [Intel XE#2548])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2468
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
Build changes
-------------
* IGT: IGT_8032 -> IGTPW_11810
* Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da
IGTPW_11810: 4138af80d1463387b08bffaec814bdbd0107b2ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47
xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/index.html
[-- Attachment #2: Type: text/html, Size: 6294 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client
2024-09-26 10:39 [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client Mika Kuoppala
` (3 preceding siblings ...)
2024-09-26 12:07 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-09-26 14:06 ` Grzegorzek, Dominik
2024-09-26 15:11 ` ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] " Patchwork
2024-09-27 6:02 ` ✗ CI.xeFULL: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Grzegorzek, Dominik @ 2024-09-26 14:06 UTC (permalink / raw)
To: mika.kuoppala@linux.intel.com, igt-dev@lists.freedesktop.org
Cc: Manszewski, Christoph
On Thu, 2024-09-26 at 13:39 +0300, Mika Kuoppala wrote:
> If we only find hardware engine for first client,
> it can be stale for other clients, after we close
> the first client, as it was associated through the fd
> and we should not trust lib/xe internals how it handles
> the engine array.
>
> I found this when trying to track down:
>
> [ 132.467616] xe 0000:00:02.0: [drm] *ERROR* Ioctl argument check
> failed at drivers/gpu/drm/xe/xe_exec_queue.c:611:
> eci[0].gt_id >= xe->info.gt_count
>
> transient error when running xe_eudebug@discovery-empty.
> Implying that a provided class_instance was corrupted/stale.
>
> Rediscover the engine for each opened client so that
> it points to a proper valid entry for exec_queue_create.
>
> Cc: Christoph Manszewski <christoph.manszewski@intel.com>
> Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Looks good to me.
It is:
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
> tests/intel/xe_eudebug.c | 18 ++++++------------
> 1 file changed, 6 insertions(+), 12 deletions(-)
>
> diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
> index 40e07ddf6..a2b2f3596 100644
> --- a/tests/intel/xe_eudebug.c
> +++ b/tests/intel/xe_eudebug.c
> @@ -1007,7 +1007,6 @@ static void test_basic_discovery(int fd, unsigned int flags, bool match_opposite
> #define DISCOVERY_VM_BIND (1 << 3)
> static void run_discovery_client(struct xe_eudebug_client *c)
> {
> - struct drm_xe_engine_class_instance *hwe = NULL;
> int fd[RESOURCE_COUNT], i;
> bool skip_sleep = c->flags & (DISCOVERY_DESTROY_RESOURCES | DISCOVERY_CLOSE_CLIENT);
> uint64_t addr = 0x1a0000;
> @@ -1015,20 +1014,15 @@ static void run_discovery_client(struct xe_eudebug_client *c)
> srand(getpid());
>
> for (i = 0; i < RESOURCE_COUNT; i++) {
> + struct drm_xe_engine_class_instance *hwe = NULL;
> +
> fd[i] = xe_eudebug_client_open_driver(c);
>
> - if (!i) {
> - bool found = false;
> + /* Get first */
> + xe_eudebug_for_each_engine(fd[i], hwe)
> + break;
>
> - xe_for_each_engine(fd[0], hwe) {
> - if (hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE ||
> - hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER) {
> - found = true;
> - break;
> - }
> - }
> - igt_assert(found);
> - }
> + igt_assert(hwe);
>
> /*
> * Give the debugger a break in event stream after every
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/xe_eudebug: Detect thread starvation on discovery
2024-09-26 10:39 ` [PATCH i-g-t 2/3] tests/xe_eudebug: Detect thread starvation on discovery Mika Kuoppala
@ 2024-09-26 14:18 ` Grzegorzek, Dominik
0 siblings, 0 replies; 10+ messages in thread
From: Grzegorzek, Dominik @ 2024-09-26 14:18 UTC (permalink / raw)
To: mika.kuoppala@linux.intel.com, igt-dev@lists.freedesktop.org
On Thu, 2024-09-26 at 13:39 +0300, Mika Kuoppala wrote:
> Discovery tests spawns multiple clients and multiple
> debuggers and sometimes, especially with kernel debugs on,
> some thread really can starve more than one second.
>
> Add a check that we dont start to assert missing
> resources if we didn't get any.
>
> Another option would be to just skip starved thread
> checks and assert that some of the threads succeeded.
> But lets try this as a stopgap measure before giving
> up.
>
> Increase worker time until we see an event.
>
> Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
> ---
> tests/intel/xe_eudebug.c | 15 ++++++++++++++-
> 1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
> index a2b2f3596..bf560462e 100644
> --- a/tests/intel/xe_eudebug.c
> +++ b/tests/intel/xe_eudebug.c
> @@ -1107,11 +1107,24 @@ static void *discovery_race_thread(void *data)
>
> if (random() % 2) {
> struct drm_xe_eudebug_event *e = NULL;
> + int max_worker_waits = 30;
> int i = -1;
>
> xe_eudebug_debugger_start_worker(s->debugger);
> - sleep(1);
> +
> + /*
> + * Thread can starve for more than one second. Make
> + * sure we get atleast one event before stopping.
> + */
> + do
> + sleep(1);
> + while (!READ_ONCE(s->debugger->event_count) &&
> + --max_worker_waits);
> +
> + igt_assert(READ_ONCE(s->debugger->event_count));
> +
> xe_eudebug_debugger_stop_worker(s->debugger, 1);
> +
Yep, sleep(1) had some risk to be not enough. Your approach is more elegant.
Thanks for the fix!
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> igt_debug("Resources discovered: %lu\n", s->debugger->event_count);
>
> xe_eudebug_for_each_event(e, s->debugger->log) {
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 3/3] lib/xe_eudebug: Warn on pipe timeouts
2024-09-26 10:39 ` [PATCH i-g-t 3/3] lib/xe_eudebug: Warn on pipe timeouts Mika Kuoppala
@ 2024-09-26 14:38 ` Grzegorzek, Dominik
0 siblings, 0 replies; 10+ messages in thread
From: Grzegorzek, Dominik @ 2024-09-26 14:38 UTC (permalink / raw)
To: mika.kuoppala@linux.intel.com, igt-dev@lists.freedesktop.org
On Thu, 2024-09-26 at 13:39 +0300, Mika Kuoppala wrote:
> eudebug test helpers use pipe between debugger/debuggee
> communication. If we ever fail even a single pipe read
> the whole test framework sync is lost. So if we get a
> timeout we should be quite vocal about in instead of
> just notifying that the pipe read size was not met.
>
> Further with kernel debugs on, some discovery tests
> can starve some of the debugger threads for quite
> a long time so increase the default timeout value.
>
> Future improvement could be to parametrize the
> timeout value so that simple tests with quite
> deterministic runtime could specify a shorter
> timeout.
>
> Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
> ---
> lib/xe/xe_eudebug.c | 43 +++++++++++++++++++++++++++++--------------
> lib/xe/xe_eudebug.h | 2 +-
> 2 files changed, 30 insertions(+), 15 deletions(-)
>
> diff --git a/lib/xe/xe_eudebug.c b/lib/xe/xe_eudebug.c
> index 2c7cd2ae1..da93e9785 100644
> --- a/lib/xe/xe_eudebug.c
> +++ b/lib/xe/xe_eudebug.c
> @@ -47,6 +47,23 @@ struct match_dto {
> #define CLIENT_STAGE 5
> #define DEBUGGER_STAGE 6
>
> +static const char *token_to_str(uint64_t token)
> +{
> + static const char *s[] = {
> + "client pid",
> + "client run",
> + "client fini",
> + "client stop",
> + "client stage",
> + "debugger stage",
> + };
> +
> + if (token >= ARRAY_SIZE(s))
> + return "unknown";
> +
> + return s[token];
> +}
> +
> static const char *type_to_str(unsigned int type)
> {
> switch (type) {
> @@ -248,18 +265,7 @@ static int safe_pipe_read(int pipe[2], void *buf, int nbytes, int timeout_ms)
> if (ret > 0)
> return read(pipe[0], buf, nbytes);
>
> - return 0;
> -}
> -
> -static uint64_t pipe_read(int pipe[2], int timeout_ms)
> -{
> - uint64_t in;
> - uint64_t ret;
> -
> - ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms);
> - igt_assert(ret == sizeof(in));
> -
> - return in;
> + return -ETIMEDOUT;
> }
>
> static void pipe_signal(int pipe[2], uint64_t token)
> @@ -279,12 +285,21 @@ static void pipe_close(int pipe[2])
> static uint64_t __wait_token(int pipe[2], const uint64_t token, int timeout_ms)
> {
> uint64_t in;
> + int ret;
>
> - in = pipe_read(pipe, timeout_ms);
> + ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms);
> + igt_assert_f(ret > 0,
> + "Pipe read timeout waiting for token '%s:(%ld)'\n",
> + token_to_str(token), token);
>
> igt_assert_eq(in, token);
>
> - return pipe_read(pipe, timeout_ms);
> + ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms);
> + igt_assert_f(ret > 0,
> + "Pipe read timeout waiting for token '%s:(%ld)'\n",
> + token_to_str(token), token);
Can we differentiate debug prints between those two asserts? Let's say
"Pipe read timeout waiting for token's payload '%s:(%ld)'" ? Or sth simmilar.
> +
> + return in;
> }
>
> static uint64_t client_wait_token(struct xe_eudebug_client *c, const uint64_t token)
> diff --git a/lib/xe/xe_eudebug.h b/lib/xe/xe_eudebug.h
> index 29ab68fee..6e4666333 100644
> --- a/lib/xe/xe_eudebug.h
> +++ b/lib/xe/xe_eudebug.h
> @@ -112,7 +112,7 @@ typedef void (*xe_eudebug_trigger_fn)(struct xe_eudebug_debugger *,
> * Default abort timeout to use across xe_eudebug lib and tests if no specific
> * timeout value is required.
> */
> -#define XE_EUDEBUG_DEFAULT_TIMEOUT_SEC 25ULL
> +#define XE_EUDEBUG_DEFAULT_TIMEOUT_SEC 60ULL
I have a feeling this should go in a separate patch.
Can you split it? Add to both:
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Clear assert messages are always welcome!
Regards,
Dominik
>
> #define XE_EUDEBUG_FILTER_EVENT_NONE BIT(DRM_XE_EUDEBUG_EVENT_NONE)
> #define XE_EUDEBUG_FILTER_EVENT_READ BIT(DRM_XE_EUDEBUG_EVENT_READ)
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client
2024-09-26 10:39 [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client Mika Kuoppala
` (4 preceding siblings ...)
2024-09-26 14:06 ` [PATCH i-g-t 1/3] " Grzegorzek, Dominik
@ 2024-09-26 15:11 ` Patchwork
2024-09-27 6:02 ` ✗ CI.xeFULL: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-09-26 15:11 UTC (permalink / raw)
To: Mika Kuoppala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100298 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client
URL : https://patchwork.freedesktop.org/series/139150/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15446_full -> IGTPW_11810_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11810_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11810_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/index.html
Participating hosts (8 -> 9)
------------------------------
Additional (2): shard-dg2-set2 shard-glk-0
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11810_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_busy@close-race:
- shard-tglu: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@gem_busy@close-race.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][2] +19 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-tglu: [PASS][3] -> [SKIP][4] +26 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][5] +10 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][6] +21 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][7] +23 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-15/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: NOTRUN -> [SKIP][8] +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: [SKIP][9] ([i915#5286]) -> [SKIP][10] +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: [SKIP][11] ([i915#6095]) -> [SKIP][12] +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: [SKIP][13] ([i915#12042]) -> [SKIP][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-tglu: [SKIP][15] ([i915#3555]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: [SKIP][17] ([i915#11453]) -> [SKIP][18] +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: [SKIP][19] ([i915#4103]) -> [SKIP][20] +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: [SKIP][21] ([i915#3555] / [i915#3840]) -> [SKIP][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_dsc@dsc-basic.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_dsc@dsc-basic.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][23] ([i915#5354]) -> [SKIP][24] +6 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- {shard-tglu-1}: NOTRUN -> [SKIP][25] +145 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-1/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_selftest@drm_framebuffer:
- {shard-tglu-1}: NOTRUN -> [ABORT][26] +1 other test abort
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
Known issues
------------
Here are the changes found in IGTPW_11810_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#8411])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#8411])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#8411]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@drm_fdinfo@most-busy-check-all:
- shard-rkl: NOTRUN -> [FAIL][30] ([i915#12179])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][31] ([i915#7742])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all:
- shard-rkl: [PASS][32] -> [FAIL][33] ([i915#12179])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all.html
* igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#8414]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][35] -> [FAIL][36] ([i915#7742])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#8414]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#8414]) +7 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-idle.html
* igt@fbdev@nullptr:
- shard-tglu: [PASS][39] -> [SKIP][40] ([i915#2582])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@fbdev@nullptr.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@fbdev@nullptr.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#9323])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#9323])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][43] -> [INCOMPLETE][44] ([i915#7297])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#6335])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [PASS][46] -> [FAIL][47] ([i915#12027])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html
- shard-tglu: NOTRUN -> [FAIL][48] ([i915#12027])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-10/igt@gem_ctx_engines@invalid-engines.html
- shard-mtlp: [PASS][49] -> [FAIL][50] ([i915#12027])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-4/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#8555])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@hostile:
- shard-dg2: NOTRUN -> [FAIL][52] ([i915#11980])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@gem_ctx_persistence@hostile.html
- shard-rkl: NOTRUN -> [FAIL][53] ([i915#11980])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@gem_ctx_persistence@hostile.html
- shard-dg1: NOTRUN -> [FAIL][54] ([i915#11980])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@gem_ctx_persistence@hostile.html
- shard-snb: NOTRUN -> [SKIP][55] ([i915#1099])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb4/igt@gem_ctx_persistence@hostile.html
- shard-mtlp: NOTRUN -> [FAIL][56] ([i915#11980])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#280])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#280])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4812]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4525])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#6334]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@gem_exec_capture@capture-invisible.html
- shard-tglu: NOTRUN -> [SKIP][62] ([i915#6334]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-9/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3539] / [i915#4852]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-tglu: NOTRUN -> [FAIL][64] ([i915#2842]) +3 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-10/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3539] / [i915#4852]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-6/igt@gem_exec_fair@basic-none-share.html
- shard-rkl: [PASS][66] -> [FAIL][67] ([i915#2842]) +1 other test fail
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-6/igt@gem_exec_fair@basic-none-share.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3539]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@gem_exec_fair@basic-pace-solo.html
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4473])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-2/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-sync:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4473] / [i915#4771]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-rkl: NOTRUN -> [FAIL][71] ([i915#2842]) +1 other test fail
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-4/igt@gem_exec_fair@basic-throttle.html
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3539])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4812])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-7/igt@gem_exec_fence@submit67.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3281]) +6 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3281]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3281]) +10 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3281]) +5 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4537] / [i915#4812])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4537] / [i915#4812])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4860])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4860]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4860])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#4613]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-9/igt@gem_lmem_swapping@smem-oom.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4613]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-8/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#4613]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-2/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#12193])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4565])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_mmap@big-bo:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4083]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-2/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4077]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4083]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4083]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3282]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3282]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3282]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@create-regular-context-1:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4270]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-2/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@display-protected-crc:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#4270]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4270]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#4270])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4270]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3282]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-1/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#5190] / [i915#8428]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8428]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4079]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-15/igt@gem_render_tiled_blits@basic.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#4885])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-12/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4885])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-2/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4885])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#4077]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4079]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-8/igt@gem_tiled_pread_basic.html
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4079])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@gem_tiled_pread_basic.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#4077]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-7/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#3297])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-7/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#3297])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3282] / [i915#3297])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3297]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-1/igt@gem_userptr_blits@unsync-overlap.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3297])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-13/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][116] +106 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#2527] / [i915#2856]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#2856])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#2527])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-17/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-without-end:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#2527]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#2856]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-4/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-snb: NOTRUN -> [SKIP][122] ([i915#6227])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb4/igt@i915_module_load@load.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#6227])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@i915_module_load@load.html
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6227])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#6227])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][126] -> [ABORT][127] ([i915#9820])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [PASS][128] -> [ABORT][129] ([i915#9820])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [PASS][130] -> [ABORT][131] ([i915#9820])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#8399])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#6590]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#6590]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-2/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6590]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-4/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][136] -> [FAIL][137] ([i915#3591])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#4387])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][139] ([i915#9311]) +1 other test dmesg-warn
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb5/igt@i915_selftest@mock.html
- shard-tglu: NOTRUN -> [DMESG-WARN][140] ([i915#9311]) +1 other test dmesg-warn
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@i915_selftest@mock.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][141] ([i915#9311]) +1 other test dmesg-warn
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-8/igt@i915_selftest@mock.html
- shard-dg1: NOTRUN -> [DMESG-WARN][142] ([i915#1982] / [i915#9311])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][143] ([i915#9311])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#7707])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-4/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#4212])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4212])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4212])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8709]) +11 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#8709]) +7 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#8709]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#9531])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#1769] / [i915#3555])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#1769] / [i915#3555])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [PASS][155] -> [SKIP][156] ([i915#9197]) +34 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
- shard-snb: [PASS][157] -> [FAIL][158] ([i915#5956]) +1 other test fail
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][159] ([i915#11808])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][160] +14 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5286]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#5286]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][164] -> [FAIL][165] ([i915#5138])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3638]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3638]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#4538] / [i915#5190]) +6 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#5190] / [i915#9197]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#4538]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#6095]) +115 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#10307] / [i915#6095]) +114 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#6095]) +44 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#6095]) +81 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#12042]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#12042])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#12042])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#12042])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#12042])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#6095]) +123 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3742])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4087]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#7828]) +10 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#7828]) +8 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#7828]) +3 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#7828]) +6 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#7828]) +8 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#9979])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-10/igt@kms_color@deep-color.html
* igt@kms_color@legacy-gamma:
- shard-dg2: [PASS][190] -> [SKIP][191] ([i915#5354]) +7 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-5/igt@kms_color@legacy-gamma.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_color@legacy-gamma.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#7116] / [i915#9424]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-15/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#7118] / [i915#9424])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#9424])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#9424])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-13/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#9197]) +10 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_content_protection@mei-interface.html
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#9424]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#6944] / [i915#9424]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8814])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#11453])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#11453]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3359])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555]) +4 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8814]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#9809])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][206] +67 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-9/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#4103] / [i915#4213])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4213])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#4103])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#4103] / [i915#4213]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#4103])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#9723])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-14/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9833])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#9723])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#9723])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3840])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#3840])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#3840])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#3840])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3840])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1839]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#658])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-3/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#658])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#658])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#3637]) +8 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3637]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#3637] / [i915#3966])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@blocking-wf_vblank:
- shard-mtlp: [PASS][232] -> [FAIL][233] ([i915#2122]) +3 other tests fail
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-2/igt@kms_flip@blocking-wf_vblank.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@kms_flip@blocking-wf_vblank.html
- shard-dg2: [PASS][234] -> [FAIL][235] ([i915#2122]) +2 other tests fail
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_flip@blocking-wf_vblank.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-6/igt@kms_flip@blocking-wf_vblank.html
- shard-rkl: [PASS][236] -> [FAIL][237] ([i915#11961] / [i915#2122])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-4/igt@kms_flip@blocking-wf_vblank.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-2/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a1:
- shard-rkl: [PASS][238] -> [FAIL][239] ([i915#2122]) +1 other test fail
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-4/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-2/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][240] ([i915#2122]) +2 other tests fail
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-2/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-panning-vs-hang:
- shard-tglu: [PASS][241] -> [SKIP][242] ([i915#3637]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-4/igt@kms_flip@flip-vs-panning-vs-hang.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_flip@flip-vs-panning-vs-hang.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [PASS][243] -> [DMESG-WARN][244] ([i915#4423])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4:
- shard-dg1: NOTRUN -> [DMESG-WARN][245] ([i915#4423]) +1 other test dmesg-warn
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [PASS][246] -> [FAIL][247] ([i915#2122]) +8 other tests fail
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#2672]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#2672]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#2587] / [i915#2672]) +8 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#2672]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8813])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8810])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#3555]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555] / [i915#5190])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#1849]) +15 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-tglu: [PASS][264] -> [SKIP][265] ([i915#1849]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#1825]) +28 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][267] +34 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-snb: [PASS][268] -> [SKIP][269] +4 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3023]) +16 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][271] +24 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#1825]) +18 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#10433] / [i915#3458])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#5354]) +30 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#3458]) +8 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#3458]) +14 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#6118])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-2/igt@kms_hdr@static-swap.html
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@kms_hdr@static-swap.html
* igt@kms_invalid_mode@int-max-clock:
- shard-tglu: [PASS][281] -> [SKIP][282] ([i915#3555]) +2 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_invalid_mode@int-max-clock.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#1839]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#6301])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-12/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][285] +12 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@plane-position-hole:
- shard-dg2: [PASS][286] -> [SKIP][287] ([i915#8825])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_plane@plane-position-hole.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane@plane-position-hole.html
* igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
- shard-dg2: [PASS][288] -> [SKIP][289] ([i915#7294])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#7294])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#8806])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#8152]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#5354] / [i915#8152] / [i915#9423])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [PASS][294] -> [SKIP][295] ([i915#6953] / [i915#9423])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#12247] / [i915#8152]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8152])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2: [PASS][299] -> [SKIP][300] ([i915#3555] / [i915#8152] / [i915#9423])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#3555]) +5 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#3555]) +2 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-dg2: [PASS][303] -> [SKIP][304] ([i915#12247] / [i915#8152] / [i915#9423])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#12247]) +16 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- shard-dg2: [PASS][306] -> [SKIP][307] ([i915#12247] / [i915#8152])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- shard-dg2: [PASS][308] -> [SKIP][309] ([i915#8152] / [i915#9423]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- shard-tglu: [PASS][310] -> [SKIP][311] ([i915#12247]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- shard-tglu: [PASS][312] -> [SKIP][313] ([i915#8152]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#12247]) +23 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#8152]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#9423])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#12247]) +18 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#12247]) +13 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953] / [i915#9423])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#6953])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#6953] / [i915#8152])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-dg2: [PASS][322] -> [SKIP][323] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12247] / [i915#3555] / [i915#6953])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][325] ([i915#12247]) +17 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- shard-dg2: [PASS][326] -> [SKIP][327] ([i915#12247]) +14 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- shard-dg2: [PASS][328] -> [SKIP][329] ([i915#8152]) +3 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#5354])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-12/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#9812])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#5354])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-2/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#9685])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#10139])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#3361])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-15/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][336] -> [SKIP][337] ([i915#4281])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#9340])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][339] ([i915#9301])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html
* igt@kms_pm_rpm@cursor:
- shard-dg2: [PASS][340] -> [SKIP][341] ([i915#1849])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-1/igt@kms_pm_rpm@cursor.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][342] -> [SKIP][343] ([i915#9519])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#9519])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#9519]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#9519])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][347] ([i915#9519]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2: [PASS][348] -> [SKIP][349] ([i915#3547])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_pm_rpm@system-suspend-modeset.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#6524])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#6524])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#6524]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@kms_prime@basic-modeset-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][353] ([i915#6524])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-2/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#6524] / [i915#6805])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_properties@crtc-properties-legacy:
- shard-dg2: [PASS][355] -> [SKIP][356] ([i915#11521]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@kms_properties@crtc-properties-legacy.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#9808]) +8 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-mtlp: NOTRUN -> [SKIP][358] ([i915#9688]) +19 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#9732]) +20 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-10/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#1072] / [i915#9732]) +19 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +12 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-7/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +15 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-15/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#9685]) +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#9685])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#4235])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#11131])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#5289])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#5289]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][369] ([i915#3555]) +5 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#8623])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#3555] / [i915#8808])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-7/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#11920])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-3/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#11920])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu: NOTRUN -> [SKIP][374] ([i915#9906]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][375] ([i915#9906])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#9906]) +2 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#9906])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#8808] / [i915#9906])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#2437] / [i915#9412])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#7387])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-7/igt@perf@global-sseu-config.html
* igt@perf_pmu@busy-idle@vecs1:
- shard-dg2: [PASS][381] -> [FAIL][382] ([i915#4349]) +2 other tests fail
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@perf_pmu@busy-idle@vecs1.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-4/igt@perf_pmu@busy-idle@vecs1.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#8516])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][384] ([i915#8516])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-14/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#3708] / [i915#4077])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#3708] / [i915#4077])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][387] ([i915#3708] / [i915#4077])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#3291] / [i915#3708])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][389] ([i915#3708])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#3708])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#3708])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][392] ([i915#3708])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-19/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][393] ([i915#9781])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-7/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-tglu: NOTRUN -> [FAIL][394] ([i915#9781])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@fbdev@info:
- shard-dg2: [SKIP][395] ([i915#1849] / [i915#2582]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@fbdev@info.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-11/igt@fbdev@info.html
* igt@fbdev@unaligned-read:
- shard-tglu: [SKIP][397] ([i915#2582]) -> [PASS][398] +1 other test pass
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@fbdev@unaligned-read.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@fbdev@unaligned-read.html
* igt@gem_eio@hibernate:
- shard-dg1: [ABORT][399] ([i915#7975] / [i915#8213]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@gem_eio@hibernate.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-18/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-mtlp: [INCOMPLETE][401] -> [PASS][402] +2 other tests pass
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-1/igt@gem_eio@reset-stress.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-7/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][403] ([i915#5784]) -> [PASS][404] +1 other test pass
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@gem_eio@unwedge-stress.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-13/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-rkl: [FAIL][405] ([i915#2842]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-7/igt@gem_exec_fair@basic-none@vecs0.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-3/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_params@no-blt:
- shard-dg2: [INCOMPLETE][407] ([i915#2295]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@gem_exec_params@no-blt.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-2/igt@gem_exec_params@no-blt.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][409] ([i915#5493]) -> [PASS][410] +1 other test pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][411] ([i915#9820]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][413] ([i915#3591]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: [DMESG-WARN][415] ([i915#4423]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [ABORT][417] ([i915#12216]) -> [PASS][418] +1 other test pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
* igt@kms_atomic_interruptible@legacy-pageflip:
- shard-tglu: [SKIP][419] -> [PASS][420] +58 other tests pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_atomic_interruptible@legacy-pageflip.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-6/igt@kms_atomic_interruptible@legacy-pageflip.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [FAIL][421] ([i915#11808] / [i915#5956]) -> [PASS][422] +1 other test pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_color@ctm-max:
- shard-dg2: [SKIP][423] ([i915#5354]) -> [PASS][424] +8 other tests pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_color@ctm-max.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-5/igt@kms_color@ctm-max.html
* igt@kms_cursor_edge_walk@256x256-top-edge:
- shard-dg2: [SKIP][425] ([i915#9197]) -> [PASS][426] +18 other tests pass
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_cursor_edge_walk@256x256-top-edge.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-4/igt@kms_cursor_edge_walk@256x256-top-edge.html
* igt@kms_feature_discovery@display-1x:
- shard-dg2: [SKIP][427] -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_feature_discovery@display-1x.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-6/igt@kms_feature_discovery@display-1x.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][429] ([i915#2122]) -> [PASS][430] +9 other tests pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-modeset-vs-hang:
- shard-tglu: [SKIP][431] ([i915#3637]) -> [PASS][432] +7 other tests pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_flip@flip-vs-modeset-vs-hang.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-9/igt@kms_flip@flip-vs-modeset-vs-hang.html
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1:
- shard-tglu: [FAIL][433] ([i915#2122]) -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- shard-dg2: [SKIP][435] ([i915#3555]) -> [PASS][436] +4 other tests pass
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-tglu: [SKIP][437] ([i915#3555]) -> [PASS][438] +3 other tests pass
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: [SKIP][439] ([i915#1849]) -> [PASS][440] +8 other tests pass
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:
- shard-snb: [SKIP][441] -> [PASS][442] +1 other test pass
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_plane@pixel-format:
- shard-tglu: [ABORT][443] -> [PASS][444] +1 other test pass
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_plane@pixel-format.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-4/igt@kms_plane@pixel-format.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-tglu: [SKIP][445] ([i915#7294]) -> [PASS][446]
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_plane_alpha_blend@alpha-7efc.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-tglu-6/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-dg2: [SKIP][447] ([i915#7294]) -> [PASS][448] +1 other test pass
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/shard-dg2-8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11810/index.html
[-- Attachment #2: Type: text/html, Size: 108833 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client
2024-09-26 10:39 [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client Mika Kuoppala
` (5 preceding siblings ...)
2024-09-26 15:11 ` ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] " Patchwork
@ 2024-09-27 6:02 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-09-27 6:02 UTC (permalink / raw)
To: Mika Kuoppala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 93661 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client
URL : https://patchwork.freedesktop.org/series/139150/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8032_full -> XEIGTPW_11810_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11810_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11810_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_11810_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-4/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-lnl: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-lnl: [PASS][4] -> [FAIL][5] +57 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-8/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][6] +1 other test fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-2/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [PASS][8] -> [SKIP][9] +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
#### Warnings ####
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][10] ([Intel XE#1430]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][12] ([Intel XE#1201]) -> [SKIP][13] +18 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- {shard-bmg}: [SKIP][14] ([Intel XE#2233]) -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events:
- {shard-bmg}: [DMESG-WARN][16] ([Intel XE#1033]) -> [SKIP][17]
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_async_flips@async-flip-with-page-flip-events.html
* igt@kms_async_flips@crc@pipe-d-dp-2:
- {shard-bmg}: [FAIL][18] ([Intel XE#1656]) -> [DMESG-FAIL][19]
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_async_flips@crc@pipe-d-dp-2.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-8/igt@kms_async_flips@crc@pipe-d-dp-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- {shard-bmg}: [SKIP][20] ([Intel XE#2370]) -> [SKIP][21]
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/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:
- {shard-bmg}: [FAIL][22] ([Intel XE#1659]) -> [SKIP][23]
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- {shard-bmg}: [PASS][24] -> [SKIP][25] +142 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- {shard-bmg}: [SKIP][26] ([Intel XE#2327]) -> [SKIP][27] +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- {shard-bmg}: [SKIP][28] ([Intel XE#607]) -> [SKIP][29]
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- {shard-bmg}: [SKIP][30] ([Intel XE#1124]) -> [SKIP][31] +15 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- {shard-bmg}: [SKIP][32] ([Intel XE#367]) -> [SKIP][33] +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- {shard-bmg}: [SKIP][34] ([Intel XE#2251]) -> [SKIP][35] +18 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- {shard-bmg}: [SKIP][36] ([Intel XE#2724]) -> [SKIP][37]
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-green-to-red:
- {shard-bmg}: [SKIP][38] ([Intel XE#2325]) -> [SKIP][39] +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_chamelium_color@ctm-green-to-red.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- {shard-bmg}: [SKIP][40] ([Intel XE#2252]) -> [SKIP][41] +10 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@atomic:
- {shard-bmg}: [FAIL][42] ([Intel XE#1178]) -> [SKIP][43] +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_content_protection@atomic.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@type1:
- {shard-bmg}: [SKIP][44] ([Intel XE#2341]) -> [SKIP][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_content_protection@type1.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- {shard-bmg}: [SKIP][46] ([Intel XE#2320]) -> [SKIP][47] +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-256x85.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_display_modes@extended-mode-basic:
- {shard-bmg}: [SKIP][48] ([Intel XE#2425]) -> [SKIP][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- {shard-bmg}: [SKIP][50] ([Intel XE#2244]) -> [SKIP][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_dsc@dsc-with-bpc-formats.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@fbc:
- {shard-bmg}: [FAIL][52] ([Intel XE#1695]) -> [SKIP][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- {shard-bmg}: [SKIP][54] ([Intel XE#2380]) -> [SKIP][55] +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt:
- {shard-bmg}: [SKIP][56] ([Intel XE#2312]) -> [SKIP][57] +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- {shard-bmg}: [SKIP][58] ([Intel XE#2311]) -> [SKIP][59] +38 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt:
- {shard-bmg}: NOTRUN -> [FAIL][60]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- {shard-bmg}: [FAIL][61] -> [SKIP][62] +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- {shard-bmg}: [FAIL][63] ([Intel XE#2333]) -> [SKIP][64] +10 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- {shard-bmg}: NOTRUN -> [SKIP][65] +34 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- {shard-bmg}: [SKIP][66] ([Intel XE#2313]) -> [SKIP][67] +38 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_getfb@getfb-reject-ccs:
- {shard-bmg}: [SKIP][68] ([Intel XE#2502]) -> [SKIP][69]
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_plane_multiple@tiling-yf:
- {shard-bmg}: [SKIP][70] ([Intel XE#2493]) -> [SKIP][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- {shard-bmg}: [SKIP][72] ([Intel XE#2763]) -> [SKIP][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_pm_lpsp@kms-lpsp:
- {shard-bmg}: [SKIP][74] ([Intel XE#2499]) -> [SKIP][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- {shard-bmg}: [SKIP][76] ([Intel XE#1489]) -> [SKIP][77] +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr@psr-primary-page-flip:
- {shard-bmg}: [SKIP][78] ([Intel XE#2850]) -> [SKIP][79] +19 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_psr@psr-primary-page-flip.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- {shard-bmg}: [SKIP][80] ([Intel XE#2329]) -> [SKIP][81] +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- {shard-bmg}: [SKIP][82] ([Intel XE#2413]) -> [SKIP][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- {shard-bmg}: [SKIP][84] ([Intel XE#1499]) -> [SKIP][85] +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-invalid-parameters:
- {shard-bmg}: [SKIP][86] ([Intel XE#756]) -> [SKIP][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- {shard-bmg}: [SKIP][88] ([Intel XE#2849]) -> [SKIP][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_pat@pat-index-xelpg:
- {shard-bmg}: [SKIP][90] ([Intel XE#2236]) -> [SKIP][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html
New tests
---------
New tests have been introduced between XEIGT_8032_full and XEIGTPW_11810_full:
### New IGT tests (126) ###
* igt@kms_flip_event_leak@basic@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.41] s
* igt@kms_flip_event_leak@basic@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_flip_event_leak@basic@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_lease@atomic-implicit-crtc@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_lease@atomic-implicit-crtc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@atomic-implicit-crtc@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@cursor-implicit-plane@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_lease@cursor-implicit-plane@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_lease@cursor-implicit-plane@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_lease@cursor-implicit-plane@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_lease@empty-lease@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@lease-again@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-revoke@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-revoke@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-revoke@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-connector@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_lease@lease-unleased-connector@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-connector@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_lease@lease-unleased-connector@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-connector@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_lease@lease-unleased-connector@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-connector@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_lease@lease-unleased-connector@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-connector@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_lease@lease-unleased-connector@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-connector@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-connector@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_lease@lease-unleased-connector@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.13] s
* igt@kms_lease@lease-unleased-connector@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-crtc@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-crtc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-crtc@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-crtc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-crtc@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-crtc@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-crtc@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-crtc@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lessee-list@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@page-flip-implicit-plane@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_lease@page-flip-implicit-plane@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_lease@page-flip-implicit-plane@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_lease@page-flip-implicit-plane@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_lease@page-flip-implicit-plane@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_lease@page-flip-implicit-plane@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_lease@page-flip-implicit-plane@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_lease@page-flip-implicit-plane@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_lease@simple-lease@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.43] s
* igt@kms_lease@simple-lease@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.34] s
* igt@kms_lease@simple-lease@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.34] s
* igt@kms_lease@simple-lease@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.34] s
Known issues
------------
Here are the changes found in XEIGTPW_11810_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#911]) +3 other tests fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-dp-4-x:
- shard-dg2-set2: [PASS][94] -> [INCOMPLETE][95] ([Intel XE#1195]) +6 other tests incomplete
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-dp-4-x.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-dp-4-x.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#1426]) +3 other tests fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-lnl: [PASS][98] -> [FAIL][99] ([Intel XE#1659])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1407])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-7/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1201] / [Intel XE#316])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1124]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1124])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#367])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-466/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1201] / [Intel XE#1252])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][109] -> [INCOMPLETE][110] ([Intel XE#1195] / [Intel XE#1727])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-433/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#373]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1424])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-7/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-lnl: [PASS][115] -> [DMESG-WARN][116] ([Intel XE#877]) +1 other test dmesg-warn
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-8/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-lnl: [PASS][117] -> [SKIP][118] ([Intel XE#1508])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#886]) +4 other tests fail
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1401] / [Intel XE#1745])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1401])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1397] / [Intel XE#1745])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1397])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#656]) +7 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#651])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1201] / [Intel XE#651]) +8 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#651])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1201] / [Intel XE#653]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#653])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#1201] / [Intel XE#455])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3:
- shard-lnl: [PASS][133] -> [DMESG-WARN][134] ([Intel XE#324]) +5 other tests dmesg-warn
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-2/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [PASS][135] -> [FAIL][136] ([Intel XE#616]) +1 other test fail
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_cursor@viewport.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-436/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2763]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1201] / [Intel XE#870])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_pm_backlight@fade.html
* igt@kms_psr@fbc-psr2-cursor-render@edp-1:
- shard-lnl: [PASS][139] -> [FAIL][140] ([Intel XE#1649]) +107 other tests fail
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: NOTRUN -> [FAIL][141] ([Intel XE#1649]) +5 other tests fail
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-blt:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1406])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-2/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1201] / [Intel XE#2850])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@kms_psr@psr2-primary-blt.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [PASS][144] -> [FAIL][145] ([Intel XE#2443]) +3 other tests fail
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_vrr@flip-basic.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][146] ([Intel XE#2443]) +1 other test fail
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-8/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1201] / [Intel XE#756])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][148] -> [TIMEOUT][149] ([Intel XE#1473] / [Intel XE#402])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][150] ([Intel XE#1600])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [PASS][151] -> [TIMEOUT][152] ([Intel XE#1473])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1392])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@twice-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1201] / [Intel XE#288])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@xe_exec_fault_mode@twice-basic-prefetch.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [PASS][155] -> [TIMEOUT][156] ([Intel XE#2105])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_oa@invalid-map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2541])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@xe_oa@invalid-map-oa-buffer.html
* igt@xe_oa@mmio-triggered-reports:
- shard-lnl: [PASS][158] -> [FAIL][159] ([Intel XE#2249])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-4/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@oa-exponents:
- shard-lnl: [PASS][160] -> [FAIL][161] ([Intel XE#2723])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@xe_oa@oa-exponents.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-5/igt@xe_oa@oa-exponents.html
* igt@xe_oa@oa-exponents@ccs-0:
- shard-lnl: NOTRUN -> [FAIL][162] ([Intel XE#2723])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-5/igt@xe_oa@oa-exponents@ccs-0.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#1201] / [Intel XE#2541]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-466/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][164] -> [ABORT][165] ([Intel XE#1358] / [Intel XE#1607])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@xe_pm@s4-d3hot-basic-exec.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1201]) +6 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@xe_query@multigpu-query-engines.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-lnl: [PASS][167] -> [FAIL][168] ([Intel XE#2747])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@xe_wedged@wedged-at-any-timeout.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-2/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug-lateclose:
- {shard-bmg}: [ABORT][169] -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@core_hotunplug@hotreplug-lateclose.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-7/igt@core_hotunplug@hotreplug-lateclose.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- {shard-bmg}: [FAIL][171] ([Intel XE#1426]) -> [PASS][172] +1 other test pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][173] ([Intel XE#1426]) -> [PASS][174] +1 other test pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][175] ([Intel XE#1426]) -> [PASS][176] +1 other test pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- {shard-bmg}: [INCOMPLETE][177] -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: [FAIL][179] ([Intel XE#1659]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3:
- {shard-bmg}: [DMESG-WARN][181] ([Intel XE#877]) -> [PASS][182] +3 other tests pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
- shard-lnl: [INCOMPLETE][183] ([Intel XE#1616]) -> [PASS][184] +1 other test pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- {shard-bmg}: [SKIP][185] -> [PASS][186] +6 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][187] ([Intel XE#886]) -> [PASS][188] +4 other tests pass
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_flip@blocking-wf_vblank.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
- {shard-bmg}: [DMESG-WARN][189] -> [PASS][190] +5 other tests pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: [INCOMPLETE][191] ([Intel XE#1195]) -> [PASS][192] +1 other test pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_plane@plane-position-hole@pipe-a-plane-4:
- shard-lnl: [DMESG-FAIL][193] ([Intel XE#324]) -> [PASS][194] +2 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-7/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-3:
- shard-lnl: [DMESG-WARN][195] ([Intel XE#324]) -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-3.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-7/igt@kms_plane@plane-position-hole@pipe-b-plane-3.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][197] ([Intel XE#616]) -> [PASS][198] +3 other tests pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- {shard-bmg}: [SKIP][199] ([Intel XE#2763]) -> [PASS][200] +4 other tests pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][201] ([Intel XE#718]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [INCOMPLETE][203] ([Intel XE#1195] / [Intel XE#569]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_pm@s3-vm-bind-userptr.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-433/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-basic:
- shard-lnl: [ABORT][205] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@xe_pm@s4-basic.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-8/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][207] ([Intel XE#1794]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-lnl-5/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][209] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][210] ([Intel XE#316]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][211] ([Intel XE#316]) -> [SKIP][212] ([Intel XE#1201] / [Intel XE#316]) +5 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][213] ([Intel XE#1124]) -> [SKIP][214] ([Intel XE#1124] / [Intel XE#1201]) +3 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][215] ([Intel XE#619]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#619])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][217] ([Intel XE#610]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#610])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][219] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][220] ([Intel XE#1124]) +6 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][221] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][222] ([Intel XE#619])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: [SKIP][223] ([Intel XE#367]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][225] ([Intel XE#2191]) -> [SKIP][226] ([Intel XE#1201] / [Intel XE#2191])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][227] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][228] ([Intel XE#367]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][229] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][230] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][231] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][232] ([Intel XE#787]) +34 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][233] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][234] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [SKIP][235] ([Intel XE#787]) -> [SKIP][236] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][237] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][238] ([Intel XE#314]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-set2: [SKIP][239] ([Intel XE#306]) -> [SKIP][240] ([Intel XE#1201] / [Intel XE#306])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-433/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][241] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][242] ([Intel XE#306]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][243] ([Intel XE#373]) -> [SKIP][244] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-dg2-set2: [SKIP][245] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][246] ([Intel XE#373]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][247] ([Intel XE#307]) -> [SKIP][248] ([Intel XE#1201] / [Intel XE#307])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][249] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][250] ([Intel XE#307])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][251] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][252] ([Intel XE#308])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: [SKIP][253] ([Intel XE#308]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#308])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][255] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][256] ([Intel XE#323]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: [SKIP][257] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][258] ([Intel XE#455]) +11 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_dsc@dsc-with-formats.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][259] ([Intel XE#455]) -> [SKIP][260] ([Intel XE#1201] / [Intel XE#455]) +15 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][261] ([Intel XE#651]) -> [SKIP][262] ([Intel XE#1201] / [Intel XE#651]) +14 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][263] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][264] ([Intel XE#651]) +14 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][265] ([Intel XE#1201]) -> [SKIP][266] ([Intel XE#1201] / [Intel XE#658]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: [SKIP][267] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][268] ([Intel XE#653]) +19 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][269] ([Intel XE#1158] / [Intel XE#1201]) -> [SKIP][270] ([Intel XE#1158])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][271] ([Intel XE#653]) -> [SKIP][272] ([Intel XE#1201] / [Intel XE#653]) +17 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2-set2: [SKIP][273] ([Intel XE#455]) -> [SKIP][274] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +5 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][275] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][276] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +9 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg2-set2: [SKIP][277] ([Intel XE#1201]) -> [SKIP][278] ([Intel XE#2763]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: [SKIP][279] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][280] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- shard-dg2-set2: [SKIP][281] ([Intel XE#2763]) -> [SKIP][282] ([Intel XE#1201] / [Intel XE#2763]) +8 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: [SKIP][283] ([Intel XE#1201]) -> [SKIP][284] ([Intel XE#1201] / [Intel XE#2763]) +14 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][285] ([Intel XE#1201]) -> [SKIP][286] ([Intel XE#1201] / [Intel XE#870]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][287] ([Intel XE#1201]) -> [SKIP][288] ([Intel XE#1489]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][289] ([Intel XE#1489]) -> [SKIP][290] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][291] ([Intel XE#1201]) -> [SKIP][292] ([Intel XE#1201] / [Intel XE#1489]) +18 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-436/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][293] ([Intel XE#1201]) -> [SKIP][294] ([Intel XE#1201] / [Intel XE#2850]) +58 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][295] ([Intel XE#2850]) -> [SKIP][296] ([Intel XE#1201] / [Intel XE#2850]) +8 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][297] ([Intel XE#1201]) -> [SKIP][298] ([Intel XE#2850]) +6 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_psr@psr-dpms.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][299] ([Intel XE#327]) -> [SKIP][300] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_rotation_crc@bad-pixel-format.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][301] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][302] ([Intel XE#1201] / [Intel XE#362])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][303] ([Intel XE#1201] / [Intel XE#330]) -> [SKIP][304] ([Intel XE#330])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2-set2: [SKIP][305] ([Intel XE#756]) -> [SKIP][306] ([Intel XE#1201] / [Intel XE#756])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_writeback@writeback-check-output.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][307] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][308] ([Intel XE#756])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][309] ([Intel XE#2849]) -> [SKIP][310] ([Intel XE#1201] / [Intel XE#2849])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][311] ([Intel XE#1201]) -> [SKIP][312] ([Intel XE#1201] / [Intel XE#2849])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-463/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][313] ([Intel XE#288]) -> [SKIP][314] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][315] -> [SKIP][316] ([Intel XE#1201]) +16 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: [SKIP][317] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][318] ([Intel XE#288]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][319] ([Intel XE#512]) -> [SKIP][320] ([Intel XE#1201] / [Intel XE#512])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_mmap@small-bar.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@xe_mmap@small-bar.html
* igt@xe_oa@oa-formats:
- shard-dg2-set2: [SKIP][321] ([Intel XE#1201]) -> [SKIP][322] ([Intel XE#2541])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@xe_oa@oa-formats.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@xe_oa@oa-formats.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-dg2-set2: [SKIP][323] ([Intel XE#2541]) -> [SKIP][324] ([Intel XE#1201] / [Intel XE#2541])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_oa@oa-regs-whitelisted.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-436/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][325] ([Intel XE#1201]) -> [SKIP][326] ([Intel XE#1201] / [Intel XE#2541]) +27 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][327] ([Intel XE#1337]) -> [SKIP][328] ([Intel XE#1201] / [Intel XE#1337])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][329] ([Intel XE#1201]) -> [SKIP][330] ([Intel XE#1201] / [Intel XE#977])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@xe_pat@pat-index-xe2.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-435/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][331] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][332] ([Intel XE#366])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@xe_pm@d3cold-basic.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-432/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][333] ([Intel XE#366]) -> [SKIP][334] ([Intel XE#1201] / [Intel XE#366])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[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#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#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#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2690]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2690
[Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2747
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[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#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8032 -> IGTPW_11810
* Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da
IGTPW_11810: 4138af80d1463387b08bffaec814bdbd0107b2ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47
xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11810/index.html
[-- Attachment #2: Type: text/html, Size: 117010 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-09-27 6:02 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-26 10:39 [PATCH i-g-t 1/3] tests/xe_eudebug: Keep engine for each client Mika Kuoppala
2024-09-26 10:39 ` [PATCH i-g-t 2/3] tests/xe_eudebug: Detect thread starvation on discovery Mika Kuoppala
2024-09-26 14:18 ` Grzegorzek, Dominik
2024-09-26 10:39 ` [PATCH i-g-t 3/3] lib/xe_eudebug: Warn on pipe timeouts Mika Kuoppala
2024-09-26 14:38 ` Grzegorzek, Dominik
2024-09-26 11:49 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/xe_eudebug: Keep engine for each client Patchwork
2024-09-26 12:07 ` ✗ CI.xeBAT: failure " Patchwork
2024-09-26 14:06 ` [PATCH i-g-t 1/3] " Grzegorzek, Dominik
2024-09-26 15:11 ` ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] " Patchwork
2024-09-27 6:02 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox