* [i-g-t, v2, 0/1] tests/intel/xe_exec_threads: wait for all submissions to complete
@ 2024-10-28 22:53 fei.yang
2024-10-28 22:53 ` [i-g-t, v2, 1/1] " fei.yang
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: fei.yang @ 2024-10-28 22:53 UTC (permalink / raw)
To: igt-dev; +Cc: Fei Yang
From: Fei Yang <fei.yang@intel.com>
In test_compute_mode, there is an one second sleep waiting for all
the submissions to complete, but that is not reliable especially
on pre-si platforms where the GPU could be a lot slower. Instead we
should wait for the ufence to make sure the GPU is inactive before
unbinding the BO.
Signed-off-by: Fei Yang <fei.yang@intel.com>
Fei Yang (1):
tests/intel/xe_exec_threads: wait for all submissions to complete
tests/intel/xe_exec_threads.c | 29 ++++++++++++++++++++++-------
1 file changed, 22 insertions(+), 7 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [i-g-t, v2, 1/1] tests/intel/xe_exec_threads: wait for all submissions to complete 2024-10-28 22:53 [i-g-t, v2, 0/1] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang @ 2024-10-28 22:53 ` fei.yang 2024-10-29 23:38 ` Matt Roper 2024-10-29 17:13 ` ✓ Fi.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: fei.yang @ 2024-10-28 22:53 UTC (permalink / raw) To: igt-dev; +Cc: Fei Yang From: Fei Yang <fei.yang@intel.com> In test_compute_mode, there is an one second sleep waiting for all the submissions to complete, but that is not reliable especially on pre-si platforms where the GPU could be a lot slower. Instead we should wait for the ufence to make sure the GPU is inactive before unbinding the BO. Signed-off-by: Fei Yang <fei.yang@intel.com> --- tests/intel/xe_exec_threads.c | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index 413d6626b..03043c53e 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -340,7 +340,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, xe_exec(fd, &exec); if (flags & REBIND && i && !(i & 0x1f)) { - for (j = i - 0x20; j <= i; ++j) + for (j = i == 0x20 ? 0 : i - 0x1f; j <= i; ++j) xe_wait_ufence(fd, &data[j].exec_sync, USER_FENCE_VALUE, exec_queues[e], fence_timeout); @@ -404,16 +404,31 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, } } - j = flags & INVALIDATE ? - (flags & RACE ? n_execs / 2 + 1 : n_execs - 1) : 0; + j = 0; /* wait for all submissions to complete */ + if (flags & INVALIDATE) + /* + * For !RACE cases xe_wait_ufence has been called in above for-loop + * except the last batch of submissions. For RACE cases we will need + * to wait for the second half of the submissions to complete. There + * is a potential race here because the first half submissions might + * have updated the fence in the old physical location while the test + * is remapping the buffer from a different physical location, but the + * wait_ufence only checks the fence from the new location which would + * never be updated. We have to assume the first half of the submissions + * complete before the second half. + */ + j = (flags & RACE) ? (n_execs / 2 + 1) : (((n_execs - 1) & ~0x1f) + 1); + else if (flags & REBIND) + /* + * For REBIND cases xe_wait_ufence has been called in above for-loop + * except the last batch of submissions. + */ + j = ((n_execs - 1) & ~0x1f) + 1; + for (i = j; i < n_execs; i++) xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, exec_queues[i % n_exec_queues], fence_timeout); - /* Wait for all execs to complete */ - if (flags & INVALIDATE) - sleep(1); - sync[0].addr = to_user_pointer(&data[0].vm_sync); xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout); -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [i-g-t, v2, 1/1] tests/intel/xe_exec_threads: wait for all submissions to complete 2024-10-28 22:53 ` [i-g-t, v2, 1/1] " fei.yang @ 2024-10-29 23:38 ` Matt Roper 2024-10-30 0:15 ` Yang, Fei 0 siblings, 1 reply; 8+ messages in thread From: Matt Roper @ 2024-10-29 23:38 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev On Mon, Oct 28, 2024 at 03:53:49PM -0700, fei.yang@intel.com wrote: > From: Fei Yang <fei.yang@intel.com> > > In test_compute_mode, there is an one second sleep waiting for all > the submissions to complete, but that is not reliable especially > on pre-si platforms where the GPU could be a lot slower. Instead we > should wait for the ufence to make sure the GPU is inactive before > unbinding the BO. > > Signed-off-by: Fei Yang <fei.yang@intel.com> > --- > tests/intel/xe_exec_threads.c | 29 ++++++++++++++++++++++------- > 1 file changed, 22 insertions(+), 7 deletions(-) > > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c > index 413d6626b..03043c53e 100644 > --- a/tests/intel/xe_exec_threads.c > +++ b/tests/intel/xe_exec_threads.c > @@ -340,7 +340,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, > xe_exec(fd, &exec); > > if (flags & REBIND && i && !(i & 0x1f)) { > - for (j = i - 0x20; j <= i; ++j) > + for (j = i == 0x20 ? 0 : i - 0x1f; j <= i; ++j) The change here doesn't seem to be related to or explained in the commit message as far as I can see. Right now every time the outer loop is on a non-zero iteration that's a multiple of 0x20, it does this inner loop to wait for those last group of execs to complete. As written today, the test is accidentally waiting twice for some of the execs (e.g., after exec 0x20 the test waits for 0x0-0x20, but after exec 0x40 it waits for 0x20-0x40, accidentally waiting on 0x20 a second time). It looks like this is an attempt to fix that by starting the inner loop from i-0x1f instead of i-0x20, except for the special case first time to ensure we don't miss out on 0x0. The logic in this test is already pretty confusing and poorly explained. Maybe it would be cleaner to replace loop variable j with a running 'last_wait' variable that we use to catch up with all necessary waits? E.g., int last_wait = -1; ... for (i = 0; i < n_execs; i++) { ... do { last_wait++; xe_wait_ufence(... &data[last_wait].exec_sync ...); } while (last_wait < i); ... That said, this change still seems unrelated to the change described in the commit message, so maybe this should be a separate patch? > xe_wait_ufence(fd, &data[j].exec_sync, > USER_FENCE_VALUE, > exec_queues[e], fence_timeout); > @@ -404,16 +404,31 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, > } > } > > - j = flags & INVALIDATE ? > - (flags & RACE ? n_execs / 2 + 1 : n_execs - 1) : 0; > + j = 0; /* wait for all submissions to complete */ > + if (flags & INVALIDATE) > + /* > + * For !RACE cases xe_wait_ufence has been called in above for-loop > + * except the last batch of submissions. For RACE cases we will need > + * to wait for the second half of the submissions to complete. There > + * is a potential race here because the first half submissions might > + * have updated the fence in the old physical location while the test > + * is remapping the buffer from a different physical location, but the > + * wait_ufence only checks the fence from the new location which would > + * never be updated. We have to assume the first half of the submissions > + * complete before the second half. Doesn't this assumption just bring us back to the same bug we were trying to fix here? We don't have any guarantees on scheduling order or speed, so the earlier execs might just happen to get scheduled later than the more recent ones, and we don't really know whether the work is finished or not if the sync's aren't reliable. We can't tell whether they're still truly running, or whether our copying of data from the old buffer to the new buffer read the pre-completion value a split second before the GPU wrote out something new to the old buffer, so when we switch to the new buffer we lose that racing GPU update. It seems like the proper solution here is really to have a completely separate bind at a separate location that doesn't move or get clobbered that holds the syncs for all of the execs. If there's a bug in the driver, we'll still see it because we'll get faults from the 0xcoffee data write. Matt > + */ > + j = (flags & RACE) ? (n_execs / 2 + 1) : (((n_execs - 1) & ~0x1f) + 1); > + else if (flags & REBIND) > + /* > + * For REBIND cases xe_wait_ufence has been called in above for-loop > + * except the last batch of submissions. > + */ > + j = ((n_execs - 1) & ~0x1f) + 1; > + > for (i = j; i < n_execs; i++) > xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, > exec_queues[i % n_exec_queues], fence_timeout); > > - /* Wait for all execs to complete */ > - if (flags & INVALIDATE) > - sleep(1); > - > sync[0].addr = to_user_pointer(&data[0].vm_sync); > xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); > xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout); > -- > 2.25.1 > -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [i-g-t, v2, 1/1] tests/intel/xe_exec_threads: wait for all submissions to complete 2024-10-29 23:38 ` Matt Roper @ 2024-10-30 0:15 ` Yang, Fei 0 siblings, 0 replies; 8+ messages in thread From: Yang, Fei @ 2024-10-30 0:15 UTC (permalink / raw) To: Roper, Matthew D; +Cc: igt-dev@lists.freedesktop.org > On Mon, Oct 28, 2024 at 03:53:49PM -0700, fei.yang@intel.com wrote: >> From: Fei Yang <fei.yang@intel.com> >> >> In test_compute_mode, there is an one second sleep waiting for all the >> submissions to complete, but that is not reliable especially on pre-si >> platforms where the GPU could be a lot slower. Instead we should wait >> for the ufence to make sure the GPU is inactive before unbinding the >> BO. >> >> Signed-off-by: Fei Yang <fei.yang@intel.com> >> --- >> tests/intel/xe_exec_threads.c | 29 ++++++++++++++++++++++------- >> 1 file changed, 22 insertions(+), 7 deletions(-) >> >> diff --git a/tests/intel/xe_exec_threads.c >> b/tests/intel/xe_exec_threads.c index 413d6626b..03043c53e 100644 >> --- a/tests/intel/xe_exec_threads.c >> +++ b/tests/intel/xe_exec_threads.c >> @@ -340,7 +340,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, >> xe_exec(fd, &exec); >> >> if (flags & REBIND && i && !(i & 0x1f)) { >> - for (j = i - 0x20; j <= i; ++j) >> + for (j = i == 0x20 ? 0 : i - 0x1f; j <= i; ++j) > > The change here doesn't seem to be related to or explained in the commit message as far as I can see. Right now every time the outer loop is on a non-zero iteration that's a multiple of 0x20, it does this inner loop to wait for those last group of execs to complete. As written today, the test is accidentally waiting twice for some of the execs (e.g., after exec 0x20 the test waits for 0x0-0x20, but after exec 0x40 it waits for 0x20-0x40, accidentally waiting on 0x20 a second time). It looks like this is an attempt to fix that by starting the inner loop from i-0x1f instead of i-0x20, except for the special case first time to ensure we don't miss out on 0x0. > Yes, this change is to avoid waiting on same fence twice. I can separate it into a different patch. > > The logic in this test is already pretty confusing and poorly explained. > Maybe it would be cleaner to replace loop variable j with a running 'last_wait' variable that we use to catch up with all necessary waits? > E.g., > > int last_wait = -1; > ... > for (i = 0; i < n_execs; i++) { > ... > do { > last_wait++; > xe_wait_ufence(... &data[last_wait].exec_sync ...); > } while (last_wait < i); > ... > > That said, this change still seems unrelated to the change described in the commit message, so maybe this should be a separate patch? There is another line of code inside if (flags & INVALIDATE && i && !(i & 0x1f)) down below that does exactly the same thing, I just copied it over because it's correct. I think we should just keep the code consistent. >> xe_wait_ufence(fd, &data[j].exec_sync, >> USER_FENCE_VALUE, >> exec_queues[e], fence_timeout); @@ -404,16 +404,31 @@ >> test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, >> } >> } >> >> - j = flags & INVALIDATE ? >> - (flags & RACE ? n_execs / 2 + 1 : n_execs - 1) : 0; >> + j = 0; /* wait for all submissions to complete */ >> + if (flags & INVALIDATE) >> + /* >> + * For !RACE cases xe_wait_ufence has been called in above for-loop >> + * except the last batch of submissions. For RACE cases we will need >> + * to wait for the second half of the submissions to complete. There >> + * is a potential race here because the first half submissions might >> + * have updated the fence in the old physical location while the test >> + * is remapping the buffer from a different physical location, but the >> + * wait_ufence only checks the fence from the new location which would >> + * never be updated. We have to assume the first half of the submissions >> + * complete before the second half. > > Doesn't this assumption just bring us back to the same bug we were trying to fix here? We don't have any guarantees on scheduling order or speed, so the earlier execs might just happen to get scheduled later than the more recent ones, and we don't really know whether the work is finished or not if the sync's aren't reliable. We can't tell whether they're still truly running, or whether our copying of data from the old buffer to the new buffer read the pre-completion value a split second before the GPU wrote out something new to the old buffer, so when we switch to the new buffer we lose that racing GPU update. > > It seems like the proper solution here is really to have a completely separate bind at a separate location that doesn't move or get clobbered that holds the syncs for all of the execs. If there's a bug in the driver, we'll still see it because we'll get faults from the 0xcoffee data write. > Yes, there is still a chance for the race here, but so far it works in my tests, so sent this as a quick fix and left a comment here. I'm working on another patch which separates batch buffer and sync data, but don't want to have too much pressure on this issue, so my intention was to merge this first if possible, and take some time to make sure the subsequent patch works perfectly. -Fei > > Matt > >> + */ >> + j = (flags & RACE) ? (n_execs / 2 + 1) : (((n_execs - 1) & ~0x1f) + 1); >> + else if (flags & REBIND) >> + /* >> + * For REBIND cases xe_wait_ufence has been called in above for-loop >> + * except the last batch of submissions. >> + */ >> + j = ((n_execs - 1) & ~0x1f) + 1; >> + >> for (i = j; i < n_execs; i++) >> xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, >> exec_queues[i % n_exec_queues], fence_timeout); >> >> - /* Wait for all execs to complete */ >> - if (flags & INVALIDATE) >> - sleep(1); >> - >> sync[0].addr = to_user_pointer(&data[0].vm_sync); >> xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); >> xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, >> fence_timeout); >> -- >> 2.25.1 ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_exec_threads: wait for all submissions to complete 2024-10-28 22:53 [i-g-t, v2, 0/1] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang 2024-10-28 22:53 ` [i-g-t, v2, 1/1] " fei.yang @ 2024-10-29 17:13 ` Patchwork 2024-10-29 17:36 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-29 17:13 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2770 bytes --] == Series Details == Series: tests/intel/xe_exec_threads: wait for all submissions to complete URL : https://patchwork.freedesktop.org/series/140617/ State : success == Summary == CI Bug Log - changes from IGT_8087 -> IGTPW_11994 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/index.html Participating hosts (47 -> 46) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11994 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-arlh-3: [PASS][1] -> [ABORT][2] ([i915#12133]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8087/bat-arlh-3/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/bat-arlh-3/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][3] -> [ABORT][4] ([i915#12061]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8087/bat-arlh-3/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/bat-arlh-3/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arlh-2: [ABORT][5] ([i915#12133]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8087/bat-arlh-2/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-2: [ABORT][7] ([i915#12061]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8087/bat-arlh-2/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/bat-arlh-2/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8087 -> IGTPW_11994 * Linux: CI_DRM_15604 -> CI_DRM_15605 CI-20190529: 20190529 CI_DRM_15604: 738c18d8599dce736da8b6958f96d2eac08a36ab @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15605: 95fd9af8bb5389f9b5a639d567ef5c3e43e25682 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11994: 806a3db2ed415f0f5b7f93c0cd6af2c5542bd82c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8087: 7abd9c49a49a9ff1f3300d7c51a92a5af8a789f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/index.html [-- Attachment #2: Type: text/html, Size: 3625 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_exec_threads: wait for all submissions to complete 2024-10-28 22:53 [i-g-t, v2, 0/1] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang 2024-10-28 22:53 ` [i-g-t, v2, 1/1] " fei.yang 2024-10-29 17:13 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-10-29 17:36 ` Patchwork 2024-10-29 20:43 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-30 0:53 ` ✗ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-29 17:36 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2855 bytes --] == Series Details == Series: tests/intel/xe_exec_threads: wait for all submissions to complete URL : https://patchwork.freedesktop.org/series/140617/ State : success == Summary == CI Bug Log - changes from XEIGT_8087_BAT -> XEIGTPW_11994_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11994_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#2229]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [INCOMPLETE][4] ([Intel XE#2874]) -> [PASS][5] +1 other test pass [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 Build changes ------------- * IGT: IGT_8087 -> IGTPW_11994 * Linux: xe-2136-738c18d8599dce736da8b6958f96d2eac08a36ab -> xe-2137-95fd9af8bb5389f9b5a639d567ef5c3e43e25682 IGTPW_11994: 806a3db2ed415f0f5b7f93c0cd6af2c5542bd82c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8087: 7abd9c49a49a9ff1f3300d7c51a92a5af8a789f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2136-738c18d8599dce736da8b6958f96d2eac08a36ab: 738c18d8599dce736da8b6958f96d2eac08a36ab xe-2137-95fd9af8bb5389f9b5a639d567ef5c3e43e25682: 95fd9af8bb5389f9b5a639d567ef5c3e43e25682 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/index.html [-- Attachment #2: Type: text/html, Size: 3505 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/xe_exec_threads: wait for all submissions to complete 2024-10-28 22:53 [i-g-t, v2, 0/1] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang ` (2 preceding siblings ...) 2024-10-29 17:36 ` ✓ CI.xeBAT: " Patchwork @ 2024-10-29 20:43 ` Patchwork 2024-10-30 0:53 ` ✗ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-29 20:43 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 125811 bytes --] == Series Details == Series: tests/intel/xe_exec_threads: wait for all submissions to complete URL : https://patchwork.freedesktop.org/series/140617/ State : failure == Summary == CI Bug Log - changes from XEIGT_8087_full -> XEIGTPW_11994_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11994_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11994_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_11994_full: ### IGT changes ### #### Possible regressions #### * igt@core_getversion@basic: - shard-bmg: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@core_getversion@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@core_getversion@basic.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [PASS][3] -> [SKIP][4] +6 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt@kms_pm_dc@dc9-dpms: - shard-lnl: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-5/igt@kms_pm_dc@dc9-dpms.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-6/igt@kms_pm_dc@dc9-dpms.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm: - shard-lnl: [PASS][7] -> [FAIL][8] +3 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html #### Warnings #### * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][10] ([Intel XE#2327]) -> [SKIP][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][12] ([Intel XE#1124]) -> [SKIP][13] +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][14] ([Intel XE#2887]) -> [SKIP][15] +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-bmg: [SKIP][16] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][17] +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][18] ([Intel XE#2311]) -> [SKIP][19] +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [FAIL][20] ([Intel XE#2333]) -> [SKIP][21] +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][22] ([Intel XE#2231]) -> [SKIP][23] +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-bmg: [SKIP][24] ([Intel XE#2313]) -> [SKIP][25] +6 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: [SKIP][26] ([Intel XE#1489]) -> [SKIP][27] +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr@psr2-suspend: - shard-bmg: [SKIP][28] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][29] +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_psr@psr2-suspend.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_psr@psr2-suspend.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race: - shard-bmg: [SKIP][30] ([Intel XE#1130]) -> [FAIL][31] +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html Known issues ------------ Here are the changes found in XEIGTPW_11994_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [PASS][32] -> [FAIL][33] ([Intel XE#3130] / [Intel XE#3249]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@eof: - shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#2134]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@fbdev@eof.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@fbdev@eof.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-dg2-set2: [PASS][36] -> [SKIP][37] ([Intel XE#2423] / [i915#2575]) +11 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-433/igt@kms_atomic_transition@modeset-transition-nonblocking.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#1701]) +3 other tests fail [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#1426]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1407]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#316]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-dg2-set2: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#877]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-0.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-16bpp-rotate-0: - shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#2890]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1124]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1124]) +11 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#2890]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#2191]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#367]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#787]) +69 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#2887]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#2907]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#314]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-50: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#306]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-8/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#306]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#373]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#373]) +9 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#307]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][63] ([Intel XE#2715]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_content_protection@legacy@pipe-a-dp-2.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][64] ([Intel XE#1178]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][65] ([Intel XE#1188]) +1 other test fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#308]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1424]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_edge_walk@128x128-top-edge: - shard-dg2-set2: [PASS][68] -> [INCOMPLETE][69] ([Intel XE#1195]) +1 other test incomplete [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-433/igt@kms_cursor_edge_walk@128x128-top-edge.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@kms_cursor_edge_walk@128x128-top-edge.html * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-edp-1: - shard-lnl: [PASS][70] -> [FAIL][71] ([Intel XE#2577]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-7/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-edp-1.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-6/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-edp-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#323]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html * igt@kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#2244]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1421]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][76] -> [FAIL][77] ([Intel XE#301]) +14 other tests fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][78] -> [SKIP][79] ([Intel XE#2423]) +87 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#3267]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html * igt@kms_flip@flip-vs-suspend: - shard-lnl: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#2049]) +1 other test incomplete [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-3/igt@kms_flip@flip-vs-suspend.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-4/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: NOTRUN -> [ABORT][84] ([Intel XE#2625]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#886]) +6 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2380]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#2890]) +11 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1397] / [Intel XE#1745]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1397]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#651]) +36 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#656]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#651]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#653]) +35 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#605]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch@pipe-a-dp-4: - shard-dg2-set2: [PASS][99] -> [FAIL][100] ([Intel XE#3197]) +1 other test fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-436/igt@kms_hdr@bpc-switch@pipe-a-dp-4.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_hdr@bpc-switch@pipe-a-dp-4.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1503]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_lease@page-flip-implicit-plane: - shard-lnl: [PASS][102] -> [FAIL][103] ([Intel XE#2205]) +1 other test fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-4/igt@kms_lease@page-flip-implicit-plane.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-8/igt@kms_lease@page-flip-implicit-plane.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][104] ([Intel XE#361]) +1 other test fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +8 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2763] / [Intel XE#455]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#870]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#718]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@i2c: - shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#2446]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-7/igt@kms_pm_rpm@i2c.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_pm_rpm@i2c.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +8 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1122]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1406]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-blt@edp-1: - shard-lnl: [PASS][116] -> [FAIL][117] ([Intel XE#2808]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2850] / [Intel XE#929]) +22 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#2948]) +3 other tests fail [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-6/igt@kms_psr@psr2-cursor-plane-onoff.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#327]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#899]) +1 other test fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2168]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@kms_vrr@cmrr.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][125] -> [FAIL][126] ([Intel XE#2159]) +1 other test fail [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#455]) +19 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#756]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1091] / [Intel XE#2849]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1123]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2905]) +12 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@xe_eudebug@basic-close.html * igt@xe_eudebug_online@basic-breakpoint: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2905]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@xe_eudebug_online@basic-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [PASS][133] -> [TIMEOUT][134] ([Intel XE#1473]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: NOTRUN -> [FAIL][135] ([Intel XE#1000]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#688]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@xe_evict@evict-cm-threads-small-multi-vm.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][137] ([Intel XE#1600]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][138] ([Intel XE#1473]) +1 other test timeout [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1392]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1130]) +10 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_compute_mode@twice-userptr: - shard-dg2-set2: [PASS][141] -> [SKIP][142] ([Intel XE#1130]) +21 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-433/igt@xe_exec_compute_mode@twice-userptr.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@xe_exec_compute_mode@twice-userptr.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm: - shard-lnl: [PASS][143] -> [FAIL][144] ([Intel XE#3160]) +1 other test fail [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#288]) +31 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2360]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [PASS][147] -> [DMESG-WARN][148] ([Intel XE#3184]) +1 other test dmesg-warn [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-8/igt@xe_gt_freq@freq_reset_multiple.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-6/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-bmg: [PASS][149] -> [SKIP][150] ([Intel XE#2229]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][151] ([Intel XE#1999]) +2 other tests fail [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2541]) +10 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][154] ([Intel XE#1358]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][155] -> [ABORT][156] ([Intel XE#1794]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-1/igt@xe_pm@s4-vm-bind-userptr.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [PASS][157] -> [ABORT][158] ([Intel XE#2625]) +1 other test abort [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-434/igt@xe_pm_residency@gt-c6-freeze.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@xe_pm_residency@gt-c6-freeze.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][159] -> [FAIL][160] ([Intel XE#958]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#944]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#944]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_query@query-gt-list: - shard-bmg: [PASS][163] -> [SKIP][164] ([Intel XE#1130]) +181 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-7/igt@xe_query@query-gt-list.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@xe_query@query-gt-list.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: NOTRUN -> [FAIL][165] ([Intel XE#2922]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@xe_tlb@basic-tlb.html #### Possible fixes #### * igt@core_setmaster@master-drop-set-user: - shard-bmg: [FAIL][166] -> [PASS][167] +2 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@core_setmaster@master-drop-set-user.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-6/igt@core_setmaster@master-drop-set-user.html - shard-dg2-set2: [FAIL][168] -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@core_setmaster@master-drop-set-user.html * igt@fbdev@pan: - shard-bmg: [SKIP][170] ([Intel XE#2134]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@fbdev@pan.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@fbdev@pan.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][172] ([Intel XE#911]) -> [PASS][173] +3 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][174] ([Intel XE#2231]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][176] ([Intel XE#2890]) -> [PASS][177] +15 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180: - shard-lnl: [FAIL][178] ([Intel XE#1454]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][180] ([Intel XE#2890]) -> [PASS][181] +4 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html - shard-bmg: [SKIP][182] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][184] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][186] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_color@ctm-0-75@pipe-c-edp-1: - shard-lnl: [DMESG-WARN][188] ([Intel XE#2929]) -> [PASS][189] +1 other test pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-5/igt@kms_color@ctm-0-75@pipe-c-edp-1.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-5/igt@kms_color@ctm-0-75@pipe-c-edp-1.html * igt@kms_cursor_edge_walk@64x64-left-edge: - shard-lnl: [FAIL][190] ([Intel XE#2577]) -> [PASS][191] +1 other test pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-3/igt@kms_cursor_edge_walk@64x64-left-edge.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-3/igt@kms_cursor_edge_walk@64x64-left-edge.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [SKIP][192] ([Intel XE#2423] / [i915#2575]) -> [PASS][193] +6 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][194] ([Intel XE#877]) -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@forked-move: - shard-bmg: [SKIP][196] ([Intel XE#3007]) -> [PASS][197] +6 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_cursor_legacy@forked-move.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_cursor_legacy@forked-move.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][198] ([Intel XE#2423]) -> [PASS][199] +93 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1: - shard-lnl: [FAIL][200] ([Intel XE#886]) -> [PASS][201] +5 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: [FAIL][202] ([Intel XE#301]) -> [PASS][203] +1 other test pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip@flip-vs-suspend@c-dp4: - shard-dg2-set2: [INCOMPLETE][204] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-435/igt@kms_flip@flip-vs-suspend@c-dp4.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_flip@flip-vs-suspend@c-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-bmg: [SKIP][206] -> [PASS][207] +3 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-dg2-set2: [SKIP][208] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-stridechange.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_pm_rpm@cursor: - shard-bmg: [SKIP][210] ([Intel XE#2446]) -> [PASS][211] +3 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_pm_rpm@cursor.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2-set2: [SKIP][212] ([Intel XE#2446]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_pm_rpm@dpms-lpsp.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-433/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-lnl: [FAIL][214] -> [PASS][215] +1 other test pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-3/igt@kms_psr@psr2-cursor-blt@edp-1.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-2/igt@kms_psr@psr2-cursor-blt@edp-1.html * igt@kms_psr@psr2-cursor-plane-move@edp-1: - shard-lnl: [FAIL][216] ([Intel XE#2948]) -> [PASS][217] +1 other test pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-3/igt@kms_psr@psr2-cursor-plane-move@edp-1.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-3/igt@kms_psr@psr2-cursor-plane-move@edp-1.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][218] ([Intel XE#2883]) -> [PASS][219] +2 other tests pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][220] ([Intel XE#899]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [FAIL][222] ([Intel XE#2443]) -> [PASS][223] +1 other test pass [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html * igt@xe_drm_fdinfo@parallel-utilization-single-idle: - shard-dg2-set2: [SKIP][224] ([Intel XE#1130]) -> [PASS][225] +16 other tests pass [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm: - shard-lnl: [DMESG-WARN][226] -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: - shard-lnl: [FAIL][228] ([Intel XE#3160]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][230] ([Intel XE#1999]) -> [PASS][231] +2 other tests pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_pm@s4-basic: - shard-dg2-set2: [ABORT][232] ([Intel XE#1358]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-432/igt@xe_pm@s4-basic.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-exec-after: - shard-lnl: [ABORT][234] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-2/igt@xe_pm@s4-exec-after.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-7/igt@xe_pm@s4-exec-after.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [SKIP][236] ([Intel XE#1130]) -> [PASS][237] +198 other tests pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt@xe_tlb@basic-tlb: - shard-bmg: [CRASH][238] ([Intel XE#3212]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@xe_tlb@basic-tlb.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@xe_tlb@basic-tlb.html - shard-lnl: [CRASH][240] ([Intel XE#3212]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-8/igt@xe_tlb@basic-tlb.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-5/igt@xe_tlb@basic-tlb.html * igt@xe_vm@mixed-binds-1611661312: - shard-dg2-set2: [INCOMPLETE][242] ([Intel XE#1195]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-434/igt@xe_vm@mixed-binds-1611661312.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@xe_vm@mixed-binds-1611661312.html #### Warnings #### * igt@kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][244] ([Intel XE#3007]) -> [SKIP][245] ([Intel XE#873]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_async_flips@invalid-async-flip.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_async_flips@invalid-async-flip.html - shard-dg2-set2: [SKIP][246] ([Intel XE#2423] / [i915#2575]) -> [SKIP][247] ([Intel XE#873]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][248] ([Intel XE#2423]) -> [SKIP][249] ([Intel XE#2370]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][250] ([Intel XE#2890]) -> [SKIP][251] ([Intel XE#2327]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][252] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][253] ([Intel XE#316]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-bmg: [SKIP][254] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][255] ([Intel XE#2327]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-90.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][256] ([Intel XE#2327]) -> [SKIP][257] ([Intel XE#2890]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-90.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: [SKIP][258] -> [SKIP][259] ([Intel XE#2327]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-270.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][260] ([Intel XE#316]) -> [SKIP][261] ([Intel XE#2351] / [Intel XE#2890]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: [SKIP][262] ([Intel XE#1124]) -> [SKIP][263] ([Intel XE#2890]) +8 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-bmg: [SKIP][264] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][265] ([Intel XE#1124]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][266] ([Intel XE#2890]) -> [SKIP][267] ([Intel XE#2328]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][268] ([Intel XE#2890]) -> [SKIP][269] ([Intel XE#607]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][270] ([Intel XE#2890]) -> [SKIP][271] ([Intel XE#1124]) +8 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][272] ([Intel XE#2890]) -> [SKIP][273] ([Intel XE#1124]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][274] ([Intel XE#2890]) -> [SKIP][275] ([Intel XE#610]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][276] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][277] ([Intel XE#2423]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][278] ([Intel XE#2423]) -> [SKIP][279] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][280] ([Intel XE#367]) -> [SKIP][281] ([Intel XE#2423]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html - shard-dg2-set2: [SKIP][282] ([Intel XE#367]) -> [SKIP][283] ([Intel XE#2423] / [i915#2575]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][284] ([Intel XE#2423]) -> [SKIP][285] ([Intel XE#367]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][286] ([Intel XE#2887]) -> [SKIP][287] ([Intel XE#2890]) +13 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-dg2-set2: [SKIP][288] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][289] ([Intel XE#2890]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-432/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][290] -> [SKIP][291] ([Intel XE#2887]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][292] ([Intel XE#2890]) -> [SKIP][293] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][294] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][295] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: [SKIP][296] ([Intel XE#2890]) -> [SKIP][297] ([Intel XE#2887]) +13 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][298] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][299] ([Intel XE#2887]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][300] ([Intel XE#2907]) -> [SKIP][301] ([Intel XE#2890]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][302] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][303] ([Intel XE#2890]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][304] ([Intel XE#2890]) -> [SKIP][305] ([Intel XE#2724]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][306] ([Intel XE#2325]) -> [SKIP][307] ([Intel XE#2423]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][308] ([Intel XE#3007]) -> [SKIP][309] ([Intel XE#2325]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@degamma: - shard-bmg: [SKIP][310] ([Intel XE#2423]) -> [SKIP][311] ([Intel XE#2325]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_chamelium_color@degamma.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][312] ([Intel XE#2423]) -> [SKIP][313] ([Intel XE#2252]) +8 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_frames@dp-crc-single: - shard-bmg: [SKIP][314] ([Intel XE#2252]) -> [SKIP][315] ([Intel XE#2423]) +14 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-6/igt@kms_chamelium_frames@dp-crc-single.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-dg2-set2: [SKIP][316] ([Intel XE#373]) -> [SKIP][317] ([Intel XE#2423] / [i915#2575]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][318] ([Intel XE#2341]) -> [SKIP][319] ([Intel XE#2423]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-6/igt@kms_content_protection@content-type-change.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][320] ([Intel XE#2390]) -> [SKIP][321] ([Intel XE#2423]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-bmg: [SKIP][322] ([Intel XE#2423]) -> [INCOMPLETE][323] ([Intel XE#2715]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_content_protection@legacy.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_content_protection@legacy.html - shard-dg2-set2: [FAIL][324] ([Intel XE#1178]) -> [INCOMPLETE][325] ([Intel XE#1195] / [Intel XE#2715]) +1 other test incomplete [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-434/igt@kms_content_protection@legacy.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [SKIP][326] ([Intel XE#2423]) -> [FAIL][327] ([Intel XE#1178]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_content_protection@lic-type-0.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][328] ([Intel XE#2320]) -> [SKIP][329] ([Intel XE#2423]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: [SKIP][330] ([Intel XE#2423]) -> [SKIP][331] ([Intel XE#2320]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-32x32.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][332] ([Intel XE#3007]) -> [SKIP][333] ([Intel XE#2423]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-bmg: [SKIP][334] ([Intel XE#3007]) -> [SKIP][335] ([Intel XE#2320]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-32x10.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-dg2-set2: [SKIP][336] ([Intel XE#2423] / [i915#2575]) -> [SKIP][337] ([Intel XE#455]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-32x10.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][338] ([Intel XE#2321]) -> [SKIP][339] ([Intel XE#2423]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: [SKIP][340] ([Intel XE#2286]) -> [SKIP][341] ([Intel XE#2423]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/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-bmg: [SKIP][342] ([Intel XE#2423]) -> [SKIP][343] ([Intel XE#2286]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][344] ([Intel XE#1508]) -> [SKIP][345] ([Intel XE#2890]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][346] ([Intel XE#2141]) -> [SKIP][347] ([Intel XE#2890]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][348] ([Intel XE#2423]) -> [SKIP][349] ([Intel XE#2323]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_display_modes@mst-extended-mode-negative.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-bmg: [SKIP][350] ([Intel XE#2890]) -> [SKIP][351] ([Intel XE#2244]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_dsc@dsc-basic.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][352] ([Intel XE#2244]) -> [SKIP][353] ([Intel XE#2890]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][354] ([Intel XE#1695]) -> [SKIP][355] ([Intel XE#2890]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-bmg: [SKIP][356] ([Intel XE#776]) -> [SKIP][357] ([Intel XE#2890]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-2/igt@kms_fbcon_fbt@psr.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][358] ([Intel XE#2423]) -> [SKIP][359] ([Intel XE#2375]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_feature_discovery@dp-mst.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-bmg: [SKIP][360] ([Intel XE#2374]) -> [SKIP][361] ([Intel XE#2423]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_feature_discovery@psr1.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-bmg: [SKIP][362] ([Intel XE#3007]) -> [SKIP][363] ([Intel XE#2374]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_feature_discovery@psr2.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_feature_discovery@psr2.html - shard-dg2-set2: [SKIP][364] ([Intel XE#2423] / [i915#2575]) -> [SKIP][365] ([Intel XE#1135]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_feature_discovery@psr2.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@kms_feature_discovery@psr2.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][366] ([Intel XE#3255] / [Intel XE#886]) -> [FAIL][367] ([Intel XE#886]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-lnl-1/igt@kms_flip@blocking-wf_vblank.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-lnl-3/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][368] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [ABORT][369] ([Intel XE#2625]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][370] ([Intel XE#455]) -> [SKIP][371] ([Intel XE#2890]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][372] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][373] ([Intel XE#2890]) +4 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][374] -> [SKIP][375] ([Intel XE#2380]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][376] ([Intel XE#2890]) -> [SKIP][377] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][378] ([Intel XE#455]) -> [SKIP][379] ([Intel XE#2351] / [Intel XE#2890]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][380] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][381] ([Intel XE#2311]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][382] ([Intel XE#2311]) -> [SKIP][383] ([Intel XE#2890]) +22 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html - shard-dg2-set2: [SKIP][384] ([Intel XE#651]) -> [SKIP][385] ([Intel XE#2890]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][386] -> [SKIP][387] ([Intel XE#2311]) +6 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][388] ([Intel XE#2231]) -> [SKIP][389] ([Intel XE#2311]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][390] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][391] ([Intel XE#651]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][392] ([Intel XE#2890]) -> [FAIL][393] ([Intel XE#2333]) +11 other tests fail [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][394] ([Intel XE#2333]) -> [SKIP][395] ([Intel XE#2890]) +13 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: [SKIP][396] -> [FAIL][397] ([Intel XE#2333]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-bmg: [SKIP][398] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][399] ([Intel XE#2333]) +2 other tests fail [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-stridechange.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][400] ([Intel XE#651]) -> [SKIP][401] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][402] ([Intel XE#2890]) -> [SKIP][403] ([Intel XE#651]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][404] ([Intel XE#2890]) -> [SKIP][405] ([Intel XE#2311]) +27 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-bmg: [SKIP][406] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][407] ([Intel XE#2313]) +4 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][408] ([Intel XE#2890]) -> [SKIP][409] ([Intel XE#2313]) +24 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][410] ([Intel XE#653]) -> [SKIP][411] ([Intel XE#2890]) +3 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][412] -> [SKIP][413] ([Intel XE#2313]) +4 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][414] ([Intel XE#2352]) -> [SKIP][415] ([Intel XE#2890]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: [SKIP][416] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][417] ([Intel XE#2890]) +4 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2-set2: [SKIP][418] ([Intel XE#2890]) -> [SKIP][419] ([Intel XE#455]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][420] ([Intel XE#2890]) -> [SKIP][421] ([Intel XE#653]) +4 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][422] ([Intel XE#653]) -> [SKIP][423] ([Intel XE#2351] / [Intel XE#2890]) +2 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][424] ([Intel XE#2313]) -> [SKIP][425] ([Intel XE#2890]) +22 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][426] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][427] ([Intel XE#653]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][428] ([Intel XE#2423]) -> [SKIP][429] ([Intel XE#2340]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][430] ([Intel XE#2890]) -> [SKIP][431] ([Intel XE#2934]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][432] ([Intel XE#2927]) -> [SKIP][433] ([Intel XE#2890]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][434] ([Intel XE#2501]) -> [SKIP][435] ([Intel XE#2423]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][436] ([Intel XE#2423]) -> [SKIP][437] ([Intel XE#2486]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_panel_fitting@atomic-fastset.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][438] ([Intel XE#2493]) -> [SKIP][439] ([Intel XE#2423]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html - shard-dg2-set2: [SKIP][440] ([Intel XE#455]) -> [SKIP][441] ([Intel XE#2423] / [i915#2575]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-436/igt@kms_plane_multiple@tiling-yf.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-bmg: [SKIP][442] ([Intel XE#2763]) -> [SKIP][443] ([Intel XE#2423]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-bmg: [SKIP][444] ([Intel XE#2423]) -> [SKIP][445] ([Intel XE#2763]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-bmg: [SKIP][446] ([Intel XE#3007]) -> [SKIP][447] ([Intel XE#2763]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-dg2-set2: [SKIP][448] ([Intel XE#2423] / [i915#2575]) -> [SKIP][449] ([Intel XE#2763] / [Intel XE#455]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][450] ([Intel XE#2890]) -> [SKIP][451] ([Intel XE#2938]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: [SKIP][452] -> [SKIP][453] ([Intel XE#870]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][454] ([Intel XE#2890]) -> [SKIP][455] ([Intel XE#2392]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_pm_dc@dc6-psr.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][456] ([Intel XE#2446]) -> [SKIP][457] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_pm_rpm@dpms-lpsp.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-8/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][458] -> [SKIP][459] ([Intel XE#1489]) +8 other tests skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][460] ([Intel XE#1489]) -> [SKIP][461] ([Intel XE#2890]) +2 other tests skip [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-bmg: [SKIP][462] ([Intel XE#1489]) -> [SKIP][463] ([Intel XE#2890]) +3 other tests skip [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][464] ([Intel XE#2890]) -> [SKIP][465] ([Intel XE#1489]) +1 other test skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][466] ([Intel XE#2387]) -> [SKIP][467] ([Intel XE#2890]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-2/igt@kms_psr2_su@page_flip-p010.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-cursor-render: - shard-dg2-set2: [SKIP][468] ([Intel XE#2890]) -> [SKIP][469] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_psr@fbc-pr-cursor-render.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][470] -> [SKIP][471] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_psr@fbc-pr-sprite-blt.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-6/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: [SKIP][472] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][473] ([Intel XE#2890]) +8 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][474] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][475] ([Intel XE#2890]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr-basic: - shard-bmg: [SKIP][476] ([Intel XE#2890]) -> [SKIP][477] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_psr@psr-basic.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-6/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][478] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][479] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_psr@psr-primary-page-flip.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@kms_psr@psr-primary-page-flip.html - shard-dg2-set2: [SKIP][480] ([Intel XE#2351]) -> [SKIP][481] ([Intel XE#2850] / [Intel XE#929]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][482] ([Intel XE#2414]) -> [SKIP][483] ([Intel XE#2890]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][484] ([Intel XE#2329]) -> [SKIP][485] ([Intel XE#2423]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-90.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-bmg: [SKIP][486] ([Intel XE#2423]) -> [SKIP][487] ([Intel XE#2329]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][488] ([Intel XE#2423]) -> [SKIP][489] ([Intel XE#2413]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-center.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][490] ([Intel XE#2426]) -> [SKIP][491] ([Intel XE#2423]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [FAIL][492] ([Intel XE#1729]) -> [SKIP][493] ([Intel XE#2423] / [i915#2575]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][494] ([Intel XE#2423]) -> [SKIP][495] ([Intel XE#2426]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@cmrr: - shard-bmg: [SKIP][496] ([Intel XE#2168]) -> [SKIP][497] ([Intel XE#2423]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-1/igt@kms_vrr@cmrr.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_vrr@cmrr.html * igt@kms_vrr@lobf: - shard-bmg: [SKIP][498] ([Intel XE#2423]) -> [SKIP][499] ([Intel XE#2168]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_vrr@lobf.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][500] ([Intel XE#3007]) -> [SKIP][501] ([Intel XE#756]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][502] ([Intel XE#2423]) -> [SKIP][503] ([Intel XE#756]) +2 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][504] ([Intel XE#756]) -> [SKIP][505] ([Intel XE#2423]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-6/igt@kms_writeback@writeback-pixel-formats.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: [SKIP][506] ([Intel XE#756]) -> [SKIP][507] ([Intel XE#2423] / [i915#2575]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-433/igt@kms_writeback@writeback-pixel-formats.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][508] ([Intel XE#2423]) -> [SKIP][509] ([Intel XE#1091] / [Intel XE#2849]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-3/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][510] ([Intel XE#1130]) -> [SKIP][511] ([Intel XE#2504]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-dg2-set2: [SKIP][512] ([Intel XE#2905]) -> [SKIP][513] ([Intel XE#1130]) +1 other test skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt@xe_eudebug_online@single-step: - shard-bmg: [SKIP][514] ([Intel XE#1130]) -> [SKIP][515] ([Intel XE#2905]) +8 other tests skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@xe_eudebug_online@single-step.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@xe_eudebug_online@single-step.html - shard-dg2-set2: [SKIP][516] ([Intel XE#1130]) -> [SKIP][517] ([Intel XE#2905]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@xe_eudebug_online@single-step.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-436/igt@xe_eudebug_online@single-step.html * igt@xe_eudebug_online@stopped-thread: - shard-bmg: [SKIP][518] ([Intel XE#2905]) -> [SKIP][519] ([Intel XE#1130]) +11 other tests skip [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-3/igt@xe_eudebug_online@stopped-thread.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-bmg: [SKIP][520] ([Intel XE#1130]) -> [TIMEOUT][521] ([Intel XE#1473]) +1 other test timeout [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-large.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: [SKIP][522] ([Intel XE#2322]) -> [SKIP][523] ([Intel XE#1130]) +8 other tests skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#2322]) +7 other tests skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm: - shard-bmg: [FAIL][526] -> [SKIP][527] ([Intel XE#1130]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-2/igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind: - shard-dg2-set2: [SKIP][528] ([Intel XE#1130]) -> [SKIP][529] ([Intel XE#288]) +2 other tests skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][530] ([Intel XE#288]) -> [SKIP][531] ([Intel XE#1130]) +2 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][532] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][533] ([Intel XE#1130]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][534] ([Intel XE#2236]) -> [SKIP][535] ([Intel XE#1130]) [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-6/igt@xe_pat@pat-index-xelpg.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: [SKIP][536] ([Intel XE#1130]) -> [SKIP][537] ([Intel XE#2284]) +1 other test skip [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@xe_pm@d3cold-mmap-system.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-4/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#2284]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-466/igt@xe_pm@d3cold-mocs.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-463/igt@xe_pm@d3cold-mocs.html * igt@xe_query@multigpu-query-engines: - shard-bmg: [SKIP][540] ([Intel XE#944]) -> [SKIP][541] ([Intel XE#1130]) +2 other tests skip [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-8/igt@xe_query@multigpu-query-engines.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][542] ([Intel XE#1130]) -> [SKIP][543] ([Intel XE#944]) +2 other tests skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][544] -> [SKIP][545] ([Intel XE#1130]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-dg2-432/igt@xe_sriov_flr@flr-vf1-clear.html - shard-bmg: [SKIP][546] -> [SKIP][547] ([Intel XE#1130]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8087/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1454]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1454 [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2205]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2205 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3160]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3160 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3197]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3197 [Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3255 [Intel XE#3267]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3267 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8087 -> IGTPW_11994 * Linux: xe-2136-738c18d8599dce736da8b6958f96d2eac08a36ab -> xe-2137-95fd9af8bb5389f9b5a639d567ef5c3e43e25682 IGTPW_11994: 806a3db2ed415f0f5b7f93c0cd6af2c5542bd82c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8087: 7abd9c49a49a9ff1f3300d7c51a92a5af8a789f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2136-738c18d8599dce736da8b6958f96d2eac08a36ab: 738c18d8599dce736da8b6958f96d2eac08a36ab xe-2137-95fd9af8bb5389f9b5a639d567ef5c3e43e25682: 95fd9af8bb5389f9b5a639d567ef5c3e43e25682 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11994/index.html [-- Attachment #2: Type: text/html, Size: 157036 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_exec_threads: wait for all submissions to complete 2024-10-28 22:53 [i-g-t, v2, 0/1] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang ` (3 preceding siblings ...) 2024-10-29 20:43 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-30 0:53 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-30 0:53 UTC (permalink / raw) To: Yang, Fei; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100285 bytes --] == Series Details == Series: tests/intel/xe_exec_threads: wait for all submissions to complete URL : https://patchwork.freedesktop.org/series/140617/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15605_full -> IGTPW_11994_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11994_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11994_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_11994/index.html Participating hosts (9 -> 9) ------------------------------ Additional (1): shard-glk-0 Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11994_full: ### IGT changes ### #### Possible regressions #### * igt@kms_color@legacy-gamma-reset: - shard-dg2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_color@legacy-gamma-reset.html * igt@kms_cursor_crc@cursor-suspend@pipe-b-hdmi-a-1: - shard-snb: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-snb5/igt@kms_cursor_crc@cursor-suspend@pipe-b-hdmi-a-1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-snb6/igt@kms_cursor_crc@cursor-suspend@pipe-b-hdmi-a-1.html * igt@kms_flip@wf_vblank-ts-check@c-hdmi-a3: - shard-dg1: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check@c-hdmi-a3.html #### Warnings #### * igt@kms_hdr@brightness-with-hdr: - shard-tglu: [SKIP][5] ([i915#1187]) -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a: - {shard-dg2-9}: NOTRUN -> [SKIP][7] +222 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html Known issues ------------ Here are the changes found in IGTPW_11994_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#6230]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-2/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-5/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +24 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-all.html * igt@fbdev@unaligned-write: - shard-dg2: [PASS][16] -> [SKIP][17] ([i915#2582]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-11/igt@fbdev@unaligned-write.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@fbdev@unaligned-write.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#6335]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: NOTRUN -> [FAIL][21] ([i915#12031]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@hostile: - shard-rkl: [PASS][24] -> [FAIL][25] ([i915#11980] / [i915#12580]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-rkl-1/igt@gem_ctx_persistence@hostile.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@gem_ctx_persistence@hostile.html - shard-dg1: [PASS][26] -> [FAIL][27] ([i915#11980] / [i915#12580]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-15/igt@gem_ctx_persistence@hostile.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-15/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-3/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#6334]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: NOTRUN -> [FAIL][34] ([i915#2846]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-19/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo: - shard-tglu: NOTRUN -> [FAIL][36] ([i915#2842]) +3 other tests fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842]) +3 other tests fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-3/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-18/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share: - shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2842]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-rkl-5/igt@gem_exec_fair@basic-pace-share.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace-solo: - shard-tglu-1: NOTRUN -> [FAIL][41] ([i915#2842]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@gem_exec_fair@basic-pace-solo.html - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-7/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +8 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-18/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][50] +13 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-snb2/igt@gem_exec_schedule@thriceslice.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [PASS][51] -> [ABORT][52] ([i915#7975] / [i915#8213]) +1 other test abort [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-8/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#2190]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613] / [i915#7582]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +6 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#12193]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4565]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#284]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +9 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@gem_mmap_gtt@basic-small-copy.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +6 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-1/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-16/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-2/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-15/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][73] ([i915#2658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-12/igt@gem_pxp@display-protected-crc.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4270]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-1/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#4270]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-8/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +9 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-8/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-1/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4885]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-1/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#3323]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][90] +15 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#2527]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#6227]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: NOTRUN -> [ABORT][97] ([i915#10887] / [i915#9820]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#7091]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#8399]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][100] ([i915#2681]) +4 other tests warn [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [PASS][101] -> [FAIL][102] ([i915#3591]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-18/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#11681] / [i915#6621]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-1/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#11681]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4387]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-5/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4387]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-16/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#6245]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@i915_query@hwconfig_table.html - shard-dg1: NOTRUN -> [SKIP][109] ([i915#6245]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock: - shard-tglu: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) +1 other test dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@i915_selftest@mock.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#7707]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#7707]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4212]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4212]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#12454]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#12454]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#8709]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#6228]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#9531]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-snb: NOTRUN -> [SKIP][124] ([i915#1769]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#5286]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#5286]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5286]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3638]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +11 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#5190] / [i915#9197]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][135] +20 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#6095]) +59 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6095]) +34 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#9197]) +15 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#12313]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +177 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6095]) +14 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#12313]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#12313]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#6095]) +132 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#6095]) +97 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#11616] / [i915#7213]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@kms_cdclk@mode-transition.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3742]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#7213]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4087]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-c-dp-3.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#7828]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#7828]) +5 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#7828]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7828]) +9 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#7828]) +5 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#7828]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#7118] / [i915#9424]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-3: - shard-dg2: NOTRUN -> [TIMEOUT][159] ([i915#7173]) +2 other tests timeout [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@kms_content_protection@atomic-dpms@pipe-a-dp-3.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3116] / [i915#3299]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3116]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#9424]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-5/igt@kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][163] ([i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-3/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#11453] / [i915#3359]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3555]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#11453] / [i915#3359]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#11453] / [i915#3359]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8814]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11453] / [i915#3359]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-suspend: - shard-snb: [PASS][171] -> [INCOMPLETE][172] ([i915#7882]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-snb5/igt@kms_cursor_crc@cursor-suspend.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-snb6/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#4103]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#9809]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#9067]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4103] / [i915#4213]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#9723]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#9723]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#9723]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#8588]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3804]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3804]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][184] -> [SKIP][185] ([i915#1257]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-10/igt@kms_dp_aux_dev.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-1/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#12402]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-5/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#12402]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-16/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3840] / [i915#9688]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#2065] / [i915#4854]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-1x: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#9738]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_feature_discovery@display-1x.html * igt@kms_feature_discovery@display-3x: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#1839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#1839]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-19/igt@kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][199] ([i915#1839]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#9337]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][201] ([i915#9337]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9337]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-16/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9337]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#4881]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@kms_fence_pin_leak.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#4881]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-7/igt@kms_fence_pin_leak.html - shard-dg2: NOTRUN -> [SKIP][206] ([i915#4881]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-1/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3637]) +8 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3637]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3637]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1: - shard-snb: [PASS][211] -> [FAIL][212] ([i915#2122]) +5 other tests fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-snb2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-snb2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html * igt@kms_flip@wf_vblank-ts-check: - shard-dg2: [PASS][213] -> [SKIP][214] ([i915#5354]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-6/igt@kms_flip@wf_vblank-ts-check.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_flip@wf_vblank-ts-check.html - shard-dg1: [PASS][215] -> [FAIL][216] ([i915#11989] / [i915#12517] / [i915#2122]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-14/igt@kms_flip@wf_vblank-ts-check.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check.html - shard-mtlp: [PASS][217] -> [FAIL][218] ([i915#11989] / [i915#2122]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3: - shard-dg1: NOTRUN -> [FAIL][219] ([i915#12457]) +1 other test fail [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3.html * igt@kms_flip@wf_vblank-ts-check@d-edp1: - shard-mtlp: [PASS][220] -> [FAIL][221] ([i915#2122]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check@d-edp1.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check@d-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672] / [i915#3555]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#2672]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672]) +6 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672] / [i915#3555]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-dg2: [PASS][232] -> [SKIP][233] ([i915#3555]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555] / [i915#8813]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-7/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#8813]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#2587] / [i915#2672]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][239] +24 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/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-dg2: NOTRUN -> [SKIP][240] ([i915#8708]) +24 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-snb: [PASS][241] -> [SKIP][242] +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#1825]) +8 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +9 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#5439]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#10055]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][247] ([i915#10055]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#1825]) +25 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][249] +50 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#10433] / [i915#3458]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#4423] / [i915#8708]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3458]) +25 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#3458]) +11 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#5354]) +64 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#3023]) +27 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][256] +96 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-7/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#3555] / [i915#8228]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][263] -> [SKIP][264] ([i915#12388]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][265] ([i915#12388]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#12388]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#12339]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#6301]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#6301]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3555]) +6 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#8806]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#3555]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#6953] / [i915#9423]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html - shard-rkl: [PASS][274] -> [FAIL][275] ([i915#8292]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][276] ([i915#8292]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][277] ([i915#8292]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#12247]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#12247]) +13 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#12247]) +18 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#8152] / [i915#9423]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/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][282] ([i915#12247] / [i915#8152]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-dg2: [PASS][283] -> [SKIP][284] ([i915#12247] / [i915#8152] / [i915#9423]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c: - shard-dg2: [PASS][285] -> [SKIP][286] ([i915#12247]) +11 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d: - shard-dg2: [PASS][287] -> [SKIP][288] ([i915#12247] / [i915#8152]) +3 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#12247]) +9 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#12247] / [i915#6953] / [i915#9423]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#6953]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [PASS][292] -> [SKIP][293] ([i915#3555] / [i915#8152] / [i915#9423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-5/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#12247]) +18 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#6953]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#12247]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#12247] / [i915#3555]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2: NOTRUN -> [SKIP][298] ([i915#12247] / [i915#3555] / [i915#9423]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#5354]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-15/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#9812]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#9685]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-16/igt@kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][302] ([i915#9685]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#3361]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#3361]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#4281]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#9340]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][307] ([i915#9340]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][308] ([i915#9340]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#8430]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][310] ([i915#8430]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#9519]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#9519]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9519]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#9519]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][315] -> [SKIP][316] ([i915#9519]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pc8-residency: - shard-mtlp: NOTRUN -> [SKIP][317] +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@kms_pm_rpm@pc8-residency.html * igt@kms_pm_rpm@pm-tiling: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#4077]) +21 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@kms_pm_rpm@pm-tiling.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#6524]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-7/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#6524]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#6524]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@kms_prime@d3hot.html - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#6524]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#9808]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#11520]) +7 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#11520]) +4 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#12316]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#11520]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#11520]) +12 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#11520]) +6 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#9683]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9683]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +28 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#9688]) +3 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9732]) +14 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +12 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-16/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9732]) +22 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-2/igt@kms_psr@psr2-primary-render.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +21 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-5/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#4235]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-8/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#5289]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#5289]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#5289]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#5289]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#11131] / [i915#4235]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#3555]) +3 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][345] ([i915#12231]) +1 other test abort [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@kms_selftest@drm_framebuffer.html - shard-dg1: NOTRUN -> [ABORT][346] ([i915#12231]) +1 other test abort [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#3555]) +10 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_universal_plane@cursor-fb-leak: - shard-mtlp: NOTRUN -> [FAIL][348] ([i915#9196]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vblank@query-forked-hang: - shard-dg2: [PASS][349] -> [SKIP][350] ([i915#9197]) +12 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-7/igt@kms_vblank@query-forked-hang.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-2/igt@kms_vblank@query-forked-hang.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#9906]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#11920]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][353] ([i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-18/igt@kms_vrr@max-min.html - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#8808] / [i915#9906]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@kms_vrr@max-min.html - shard-dg2: NOTRUN -> [SKIP][355] ([i915#9906]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#9906]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][357] ([i915#9906]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#2437]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#2437]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-2/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#2437] / [i915#9412]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][362] ([i915#2437] / [i915#9412]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#2434]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][364] ([i915#2434]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-2/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [PASS][365] -> [FAIL][366] ([i915#4349]) +1 other test fail [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs1.html - shard-mtlp: [PASS][367] -> [FAIL][368] ([i915#4349]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-6/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][369] -> [FAIL][370] ([i915#4349]) +3 other tests fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#8516]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][372] ([i915#9351]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][373] ([i915#9351]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#3291] / [i915#3708]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#3708]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][376] ([i915#3708]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#9917]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-1/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][378] ([i915#9917]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][379] ([i915#9917]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@fbdev@info: - shard-dg2: [SKIP][380] ([i915#1849] / [i915#2582]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-2/igt@fbdev@info.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-3/igt@fbdev@info.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][382] ([i915#12543] / [i915#5784]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-16/igt@gem_eio@reset-stress.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][384] ([i915#5784]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-15/igt@gem_eio@unwedge-stress.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@nop: - shard-mtlp: [DMESG-WARN][386] ([i915#12412]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-mtlp-1/igt@gem_exec_balancer@nop.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-4/igt@gem_exec_balancer@nop.html * igt@gem_exec_fair@basic-none-share: - shard-rkl: [FAIL][388] ([i915#2842]) -> [PASS][389] +2 other tests pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-1/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][390] ([i915#2876]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][392] ([i915#7975] / [i915#8213]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-19/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][394] ([i915#9820]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][396] ([i915#12455]) -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-10/igt@i915_pm_freq_api@freq-suspend@gt0.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][398] ([i915#12548] / [i915#3591]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: [DMESG-WARN][400] ([i915#4391] / [i915#4423]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-17/igt@i915_suspend@basic-s2idle-without-i915.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-14/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg1: [FAIL][402] ([i915#5956]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: [SKIP][404] -> [PASS][405] +2 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-snb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-snb5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@torture-move: - shard-tglu: [DMESG-WARN][406] -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-tglu-4/igt@kms_cursor_legacy@torture-move.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@kms_cursor_legacy@torture-move.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-tglu: [DMESG-WARN][408] ([i915#1982]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-tglu-4/igt@kms_cursor_legacy@torture-move@pipe-a.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-3/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-mtlp: [FAIL][410] ([i915#11989] / [i915#2122]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [FAIL][412] ([i915#2122]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1: - shard-mtlp: [FAIL][414] ([i915#11989]) -> [PASS][415] +2 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg1: [DMESG-WARN][416] ([i915#4423]) -> [PASS][417] +3 other tests pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg1-18/igt@kms_flip@flip-vs-suspend-interruptible.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg2: [INCOMPLETE][418] ([i915#4839] / [i915#6113]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-3/igt@kms_flip@flip-vs-suspend-interruptible.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-dg2: [FAIL][420] ([i915#2122]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1: - shard-snb: [FAIL][422] ([i915#2122]) -> [PASS][423] +6 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-snb6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1: - shard-tglu: [FAIL][424] ([i915#2122]) -> [PASS][425] +3 other tests pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-tglu-7/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-tglu-6/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [SKIP][426] ([i915#5354]) -> [PASS][427] +12 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_hdr@static-swap: - shard-dg2: [SKIP][428] ([i915#3555] / [i915#8228]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-11/igt@kms_hdr@static-swap.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@kms_hdr@static-swap.html * igt@kms_invalid_mode@zero-hdisplay: - shard-dg2: [SKIP][430] ([i915#3555]) -> [PASS][431] +2 other tests pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-2/igt@kms_invalid_mode@zero-hdisplay.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-6/igt@kms_invalid_mode@zero-hdisplay.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2: [SKIP][432] ([i915#8825]) -> [PASS][433] [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-8/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-dg2: [SKIP][434] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-2/igt@kms_plane_scaling@invalid-num-scalers.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-10/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2: [SKIP][436] ([i915#8152] / [i915#9423]) -> [PASS][437] +1 other test pass [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15605/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/shard-dg2-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-sca == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11994/index.html [-- Attachment #2: Type: text/html, Size: 109769 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-10-30 0:53 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-28 22:53 [i-g-t, v2, 0/1] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang 2024-10-28 22:53 ` [i-g-t, v2, 1/1] " fei.yang 2024-10-29 23:38 ` Matt Roper 2024-10-30 0:15 ` Yang, Fei 2024-10-29 17:13 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-10-29 17:36 ` ✓ CI.xeBAT: " Patchwork 2024-10-29 20:43 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-30 0:53 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox