* [PATCH i-g-t] i915/gem_exec_whisper: Limit workload
@ 2024-03-21 18:30 Jonathan Cavitt
2024-03-25 16:05 ` Nirmoy Das
0 siblings, 1 reply; 7+ messages in thread
From: Jonathan Cavitt @ 2024-03-21 18:30 UTC (permalink / raw)
To: igt-dev; +Cc: jonathan.cavitt, saurabhg.gupta, chris.p.wilson, yu.bruce.chang
From: Chris Wilson <chris.p.wilson@linux.intel.com>
For large machines with lots of cpus and many engines, using a workload
that tries to use every engine from every cpu causes massive
oversaturation. The goal of the test workload is to cause saturation on
both engines and cpus so that we apply some pressure on the scheduler to
maintain order, but to do so we only need to ensure each scheduling
queue is saturated and there is sufficient pressure for the CPU
scheduler to push work across cores. We can impose a limit on the number
of threads such that we ensure that every engine and every core should
be occupied. Furthermore we can scale the amount of work submitted by
each thread to keep the total amount of work under a reasonable time
bound.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
CC: Bruce Chang <yu.bruce.chang@intel.com>
---
tests/intel/gem_exec_whisper.c | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/tests/intel/gem_exec_whisper.c b/tests/intel/gem_exec_whisper.c
index effb473350..429dfc00d5 100644
--- a/tests/intel/gem_exec_whisper.c
+++ b/tests/intel/gem_exec_whisper.c
@@ -294,6 +294,7 @@ static void whisper(int fd, const intel_ctx_t *ctx,
{
const uint32_t bbe = MI_BATCH_BUFFER_END;
const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
+ const unsigned int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
struct drm_i915_gem_exec_object2 batches[QLEN];
struct drm_i915_gem_relocation_entry inter[QLEN];
struct drm_i915_gem_relocation_entry reloc;
@@ -306,18 +307,19 @@ static void whisper(int fd, const intel_ctx_t *ctx,
int fds[64];
intel_ctx_cfg_t local_cfg;
const intel_ctx_t *contexts[64];
- unsigned nengine;
uint32_t batch[16];
unsigned int relocations = 0;
unsigned int reloc_migrations = 0;
unsigned int reloc_interruptions = 0;
unsigned int eb_migrations = 0;
struct power_sample sample[2];
+ unsigned int nengine;
+ unsigned int nchild;
+ unsigned int qlen;
struct igt_power gpu;
uint64_t old_offset;
int i, n, loc;
int debugfs;
- int nchild;
bool has_relocs = gem_has_relocations(fd);
if (flags & PRIORITY) {
@@ -356,9 +358,13 @@ static void whisper(int fd, const intel_ctx_t *ctx,
nchild = 1;
if (flags & FORKED)
- nchild *= sysconf(_SC_NPROCESSORS_ONLN);
+ nchild *= ncpus;
if (flags & ALL)
nchild *= nengine;
+ nchild = min(nchild, 2 * max(ncpus, nengine));
+ qlen = max(2u, QLEN * nengine / (nchild + nengine - 1));
+ igt_info("Using nchild:%d (out of ncpus:%d and nengine:%d), with a qlen:%d\n",
+ nchild, ncpus, nengine, qlen);
intel_detect_and_clear_missed_interrupts(fd);
igt_power_get_energy(&gpu, &sample[0]);
@@ -448,19 +454,19 @@ static void whisper(int fd, const intel_ctx_t *ctx,
}
memset(batches, 0, sizeof(batches));
- for (n = 0; n < QLEN; n++) {
+ for (n = 0; n < qlen; n++) {
batches[n].handle = gem_create(fd, 4096);
gem_write(fd, batches[n].handle, 0, &bbe, sizeof(bbe));
}
execbuf.buffers_ptr = to_user_pointer(batches);
- execbuf.buffer_count = QLEN;
+ execbuf.buffer_count = qlen;
gem_execbuf(fd, &execbuf);
execbuf.buffers_ptr = to_user_pointer(tmp);
execbuf.buffer_count = 2;
old_offset = store.offset;
- for (n = 0; n < QLEN; n++) {
+ for (n = 0; n < qlen; n++) {
if (gen >= 8) {
batch[1] = old_offset + loc;
batch[2] = (old_offset + loc) >> 32;
@@ -525,8 +531,8 @@ static void whisper(int fd, const intel_ctx_t *ctx,
gem_sync(fd, tmp[0].handle);
scratch = tmp[0];
- gem_write(fd, batches[QLEN-1].handle, loc, &pass, sizeof(pass));
- for (n = QLEN; --n >= 1; ) {
+ gem_write(fd, batches[qlen-1].handle, loc, &pass, sizeof(pass));
+ for (n = qlen; --n >= 1; ) {
uint32_t handle[2] = {};
int this_fd = fd;
@@ -648,7 +654,7 @@ static void whisper(int fd, const intel_ctx_t *ctx,
gem_vm_destroy(fd, local_cfg.vm);
}
}
- for (n = 0; n < QLEN; n++)
+ for (n = 0; n < qlen; n++)
gem_close(fd, batches[n].handle);
if (flags & FDS) {
for (n = 0; n < 64; n++)
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t] i915/gem_exec_whisper: Limit workload
2024-03-21 18:30 [PATCH i-g-t] i915/gem_exec_whisper: Limit workload Jonathan Cavitt
@ 2024-03-25 16:05 ` Nirmoy Das
0 siblings, 0 replies; 7+ messages in thread
From: Nirmoy Das @ 2024-03-25 16:05 UTC (permalink / raw)
To: Jonathan Cavitt, igt-dev; +Cc: saurabhg.gupta, chris.p.wilson, yu.bruce.chang
On 3/21/2024 7:30 PM, Jonathan Cavitt wrote:
> From: Chris Wilson <chris.p.wilson@linux.intel.com>
>
> For large machines with lots of cpus and many engines, using a workload
> that tries to use every engine from every cpu causes massive
> oversaturation. The goal of the test workload is to cause saturation on
> both engines and cpus so that we apply some pressure on the scheduler to
> maintain order, but to do so we only need to ensure each scheduling
> queue is saturated and there is sufficient pressure for the CPU
> scheduler to push work across cores. We can impose a limit on the number
> of threads such that we ensure that every engine and every core should
> be occupied. Furthermore we can scale the amount of work submitted by
> each thread to keep the total amount of work under a reasonable time
> bound.
>
> Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Need your sign off here. Otherwise
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> CC: Bruce Chang <yu.bruce.chang@intel.com>
> ---
> tests/intel/gem_exec_whisper.c | 24 +++++++++++++++---------
> 1 file changed, 15 insertions(+), 9 deletions(-)
>
> diff --git a/tests/intel/gem_exec_whisper.c b/tests/intel/gem_exec_whisper.c
> index effb473350..429dfc00d5 100644
> --- a/tests/intel/gem_exec_whisper.c
> +++ b/tests/intel/gem_exec_whisper.c
> @@ -294,6 +294,7 @@ static void whisper(int fd, const intel_ctx_t *ctx,
> {
> const uint32_t bbe = MI_BATCH_BUFFER_END;
> const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
> + const unsigned int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
> struct drm_i915_gem_exec_object2 batches[QLEN];
> struct drm_i915_gem_relocation_entry inter[QLEN];
> struct drm_i915_gem_relocation_entry reloc;
> @@ -306,18 +307,19 @@ static void whisper(int fd, const intel_ctx_t *ctx,
> int fds[64];
> intel_ctx_cfg_t local_cfg;
> const intel_ctx_t *contexts[64];
> - unsigned nengine;
> uint32_t batch[16];
> unsigned int relocations = 0;
> unsigned int reloc_migrations = 0;
> unsigned int reloc_interruptions = 0;
> unsigned int eb_migrations = 0;
> struct power_sample sample[2];
> + unsigned int nengine;
> + unsigned int nchild;
> + unsigned int qlen;
> struct igt_power gpu;
> uint64_t old_offset;
> int i, n, loc;
> int debugfs;
> - int nchild;
> bool has_relocs = gem_has_relocations(fd);
>
> if (flags & PRIORITY) {
> @@ -356,9 +358,13 @@ static void whisper(int fd, const intel_ctx_t *ctx,
>
> nchild = 1;
> if (flags & FORKED)
> - nchild *= sysconf(_SC_NPROCESSORS_ONLN);
> + nchild *= ncpus;
> if (flags & ALL)
> nchild *= nengine;
> + nchild = min(nchild, 2 * max(ncpus, nengine));
> + qlen = max(2u, QLEN * nengine / (nchild + nengine - 1));
> + igt_info("Using nchild:%d (out of ncpus:%d and nengine:%d), with a qlen:%d\n",
> + nchild, ncpus, nengine, qlen);
>
> intel_detect_and_clear_missed_interrupts(fd);
> igt_power_get_energy(&gpu, &sample[0]);
> @@ -448,19 +454,19 @@ static void whisper(int fd, const intel_ctx_t *ctx,
> }
>
> memset(batches, 0, sizeof(batches));
> - for (n = 0; n < QLEN; n++) {
> + for (n = 0; n < qlen; n++) {
> batches[n].handle = gem_create(fd, 4096);
> gem_write(fd, batches[n].handle, 0, &bbe, sizeof(bbe));
> }
> execbuf.buffers_ptr = to_user_pointer(batches);
> - execbuf.buffer_count = QLEN;
> + execbuf.buffer_count = qlen;
> gem_execbuf(fd, &execbuf);
>
> execbuf.buffers_ptr = to_user_pointer(tmp);
> execbuf.buffer_count = 2;
>
> old_offset = store.offset;
> - for (n = 0; n < QLEN; n++) {
> + for (n = 0; n < qlen; n++) {
> if (gen >= 8) {
> batch[1] = old_offset + loc;
> batch[2] = (old_offset + loc) >> 32;
> @@ -525,8 +531,8 @@ static void whisper(int fd, const intel_ctx_t *ctx,
> gem_sync(fd, tmp[0].handle);
> scratch = tmp[0];
>
> - gem_write(fd, batches[QLEN-1].handle, loc, &pass, sizeof(pass));
> - for (n = QLEN; --n >= 1; ) {
> + gem_write(fd, batches[qlen-1].handle, loc, &pass, sizeof(pass));
> + for (n = qlen; --n >= 1; ) {
> uint32_t handle[2] = {};
> int this_fd = fd;
>
> @@ -648,7 +654,7 @@ static void whisper(int fd, const intel_ctx_t *ctx,
> gem_vm_destroy(fd, local_cfg.vm);
> }
> }
> - for (n = 0; n < QLEN; n++)
> + for (n = 0; n < qlen; n++)
> gem_close(fd, batches[n].handle);
> if (flags & FDS) {
> for (n = 0; n < 64; n++)
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t] i915/gem_exec_whisper: Limit workload
@ 2024-03-25 16:13 Jonathan Cavitt
2024-03-25 19:00 ` ✓ Fi.CI.BAT: success for i915/gem_exec_whisper: Limit workload (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Jonathan Cavitt @ 2024-03-25 16:13 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, chris.p.wilson, nirmoy.das,
kamil.konieczny
From: Chris Wilson <chris.p.wilson@linux.intel.com>
For large machines with lots of cpus and many engines, using a workload
that tries to use every engine from every cpu causes massive
oversaturation. The goal of the test workload is to cause saturation on
both engines and cpus so that we apply some pressure on the scheduler to
maintain order, but to do so we only need to ensure each scheduling
queue is saturated and there is sufficient pressure for the CPU
scheduler to push work across cores. We can impose a limit on the number
of threads such that we ensure that every engine and every core should
be occupied. Furthermore we can scale the amount of work submitted by
each thread to keep the total amount of work under a reasonable time
bound.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
---
tests/intel/gem_exec_whisper.c | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/tests/intel/gem_exec_whisper.c b/tests/intel/gem_exec_whisper.c
index effb473350..429dfc00d5 100644
--- a/tests/intel/gem_exec_whisper.c
+++ b/tests/intel/gem_exec_whisper.c
@@ -294,6 +294,7 @@ static void whisper(int fd, const intel_ctx_t *ctx,
{
const uint32_t bbe = MI_BATCH_BUFFER_END;
const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
+ const unsigned int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
struct drm_i915_gem_exec_object2 batches[QLEN];
struct drm_i915_gem_relocation_entry inter[QLEN];
struct drm_i915_gem_relocation_entry reloc;
@@ -306,18 +307,19 @@ static void whisper(int fd, const intel_ctx_t *ctx,
int fds[64];
intel_ctx_cfg_t local_cfg;
const intel_ctx_t *contexts[64];
- unsigned nengine;
uint32_t batch[16];
unsigned int relocations = 0;
unsigned int reloc_migrations = 0;
unsigned int reloc_interruptions = 0;
unsigned int eb_migrations = 0;
struct power_sample sample[2];
+ unsigned int nengine;
+ unsigned int nchild;
+ unsigned int qlen;
struct igt_power gpu;
uint64_t old_offset;
int i, n, loc;
int debugfs;
- int nchild;
bool has_relocs = gem_has_relocations(fd);
if (flags & PRIORITY) {
@@ -356,9 +358,13 @@ static void whisper(int fd, const intel_ctx_t *ctx,
nchild = 1;
if (flags & FORKED)
- nchild *= sysconf(_SC_NPROCESSORS_ONLN);
+ nchild *= ncpus;
if (flags & ALL)
nchild *= nengine;
+ nchild = min(nchild, 2 * max(ncpus, nengine));
+ qlen = max(2u, QLEN * nengine / (nchild + nengine - 1));
+ igt_info("Using nchild:%d (out of ncpus:%d and nengine:%d), with a qlen:%d\n",
+ nchild, ncpus, nengine, qlen);
intel_detect_and_clear_missed_interrupts(fd);
igt_power_get_energy(&gpu, &sample[0]);
@@ -448,19 +454,19 @@ static void whisper(int fd, const intel_ctx_t *ctx,
}
memset(batches, 0, sizeof(batches));
- for (n = 0; n < QLEN; n++) {
+ for (n = 0; n < qlen; n++) {
batches[n].handle = gem_create(fd, 4096);
gem_write(fd, batches[n].handle, 0, &bbe, sizeof(bbe));
}
execbuf.buffers_ptr = to_user_pointer(batches);
- execbuf.buffer_count = QLEN;
+ execbuf.buffer_count = qlen;
gem_execbuf(fd, &execbuf);
execbuf.buffers_ptr = to_user_pointer(tmp);
execbuf.buffer_count = 2;
old_offset = store.offset;
- for (n = 0; n < QLEN; n++) {
+ for (n = 0; n < qlen; n++) {
if (gen >= 8) {
batch[1] = old_offset + loc;
batch[2] = (old_offset + loc) >> 32;
@@ -525,8 +531,8 @@ static void whisper(int fd, const intel_ctx_t *ctx,
gem_sync(fd, tmp[0].handle);
scratch = tmp[0];
- gem_write(fd, batches[QLEN-1].handle, loc, &pass, sizeof(pass));
- for (n = QLEN; --n >= 1; ) {
+ gem_write(fd, batches[qlen-1].handle, loc, &pass, sizeof(pass));
+ for (n = qlen; --n >= 1; ) {
uint32_t handle[2] = {};
int this_fd = fd;
@@ -648,7 +654,7 @@ static void whisper(int fd, const intel_ctx_t *ctx,
gem_vm_destroy(fd, local_cfg.vm);
}
}
- for (n = 0; n < QLEN; n++)
+ for (n = 0; n < qlen; n++)
gem_close(fd, batches[n].handle);
if (flags & FDS) {
for (n = 0; n < 64; n++)
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for i915/gem_exec_whisper: Limit workload (rev2)
2024-03-25 16:13 [PATCH i-g-t] i915/gem_exec_whisper: Limit workload Jonathan Cavitt
@ 2024-03-25 19:00 ` Patchwork
2024-03-25 19:20 ` ✓ CI.xeBAT: " Patchwork
2024-03-26 3:54 ` ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-03-25 19:00 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11597 bytes --]
== Series Details ==
Series: i915/gem_exec_whisper: Limit workload (rev2)
URL : https://patchwork.freedesktop.org/series/131448/
State : success
== Summary ==
CI Bug Log - changes from IGT_7782 -> IGTPW_10902
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/index.html
Participating hosts (34 -> 32)
------------------------------
Additional (3): bat-dg1-7 bat-kbl-2 bat-mtlp-8
Missing (5): fi-snb-2520m fi-cfl-8109u fi-kbl-8809g bat-dg2-11 bat-jsl-1
Known issues
------------
Here are the changes found in IGTPW_10902 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][2] ([i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-kbl-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][3] +39 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-dg1-7: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@gem_mmap@basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][9] ([i915#4077]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][10] ([i915#4079]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-7: NOTRUN -> [SKIP][11] ([i915#6621])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@i915_pm_rps@basic-api.html
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@hangcheck:
- bat-rpls-3: [PASS][13] -> [DMESG-WARN][14] ([i915#5591])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][15] ([i915#4212]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#5190])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#4212]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#4215])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#4213]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg1-7: NOTRUN -> [SKIP][20] ([i915#4103] / [i915#4213]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#3840] / [i915#9159])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
- bat-dg1-7: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#3840])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][23]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg1-7: NOTRUN -> [SKIP][24]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][25] ([i915#5274])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][26] ([i915#433])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg1-7: NOTRUN -> [SKIP][27] ([i915#5354])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-mtlp-8: NOTRUN -> [SKIP][28] ([i915#4077] / [i915#9688])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg1-7: NOTRUN -> [SKIP][29] ([i915#1072] / [i915#9732]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#8809])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg1-7: NOTRUN -> [SKIP][31] ([i915#3555])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg1-7: NOTRUN -> [SKIP][32] ([i915#3708]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][33] ([i915#3708] / [i915#4077]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
- bat-mtlp-8: NOTRUN -> [SKIP][34] ([i915#3708] / [i915#4077]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][35] ([i915#3708]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- bat-mtlp-8: NOTRUN -> [SKIP][36] ([i915#10216] / [i915#3708])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- {bat-mtlp-9}: [WARN][37] ([i915#10436]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@guc_multi_lrc:
- bat-dg2-9: [ABORT][39] ([i915#10366]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/bat-dg2-9/igt@i915_selftest@live@guc_multi_lrc.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/bat-dg2-9/igt@i915_selftest@live@guc_multi_lrc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216
[i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366
[i915#10436]: https://gitlab.freedesktop.org/drm/intel/issues/10436
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7782 -> IGTPW_10902
CI-20190529: 20190529
CI_DRM_14479: d1ecfbbbb194e8f7941bd84f77f7c938b461ce14 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10902: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/index.html
IGT_7782: a404f73182948e843640d00cc279883391cf6ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/index.html
[-- Attachment #2: Type: text/html, Size: 14104 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for i915/gem_exec_whisper: Limit workload (rev2)
2024-03-25 16:13 [PATCH i-g-t] i915/gem_exec_whisper: Limit workload Jonathan Cavitt
2024-03-25 19:00 ` ✓ Fi.CI.BAT: success for i915/gem_exec_whisper: Limit workload (rev2) Patchwork
@ 2024-03-25 19:20 ` Patchwork
2024-03-26 3:54 ` ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-03-25 19:20 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5494 bytes --]
== Series Details ==
Series: i915/gem_exec_whisper: Limit workload (rev2)
URL : https://patchwork.freedesktop.org/series/131448/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7782_BAT -> XEIGTPW_10902_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10902_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-dg2-oem2: NOTRUN -> [SKIP][1] ([Intel XE#1136])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
* igt@kms_addfb_basic@addfb25-modifier-no-flag:
- bat-dg2-oem2: NOTRUN -> [SKIP][2] ([i915#2575]) +52 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-modifier-no-flag.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#1134]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html
* igt@xe_evict@evict-beng-small-external:
- bat-dg2-oem2: [PASS][4] -> [SKIP][5] ([Intel XE#1130]) +13 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7782/bat-dg2-oem2/igt@xe_evict@evict-beng-small-external.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@xe_evict@evict-beng-small-external.html
* igt@xe_intel_bb@create-in-region:
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#1130]) +164 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@xe_intel_bb@create-in-region.html
* igt@xe_module_load@load:
- bat-dg2-oem2: [PASS][7] -> [FAIL][8] ([Intel XE#1132])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7782/bat-dg2-oem2/igt@xe_module_load@load.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@xe_module_load@load.html
#### Warnings ####
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- bat-dg2-oem2: [TIMEOUT][9] ([Intel XE#1027] / [Intel XE#1088]) -> [SKIP][10] ([Intel XE#1130])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7782/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_evict@evict-beng-small:
- bat-dg2-oem2: [DMESG-WARN][11] ([Intel XE#1088] / [Intel XE#1373]) -> [SKIP][12] ([Intel XE#1130])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7782/bat-dg2-oem2/igt@xe_evict@evict-beng-small.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@xe_evict@evict-beng-small.html
* igt@xe_evict@evict-cm-threads-small:
- bat-dg2-oem2: [INCOMPLETE][13] ([Intel XE#1027] / [Intel XE#804]) -> [SKIP][14] ([Intel XE#1130])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7782/bat-dg2-oem2/igt@xe_evict@evict-cm-threads-small.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@xe_evict@evict-cm-threads-small.html
* igt@xe_evict@evict-mixed-threads-small:
- bat-dg2-oem2: [INCOMPLETE][15] ([Intel XE#804]) -> [SKIP][16] ([Intel XE#1130])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7782/bat-dg2-oem2/igt@xe_evict@evict-mixed-threads-small.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-dg2-oem2/igt@xe_evict@evict-mixed-threads-small.html
* igt@xe_exec_threads@threads-mixed-userptr-invalidate:
- bat-adlp-7: [INCOMPLETE][17] ([Intel XE#1044] / [Intel XE#1376]) -> [INCOMPLETE][18] ([Intel XE#1044])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7782/bat-adlp-7/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/bat-adlp-7/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html
[Intel XE#1027]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1027
[Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044
[Intel XE#1088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1088
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1132]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1132
[Intel XE#1134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1134
[Intel XE#1136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1136
[Intel XE#1373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1373
[Intel XE#1376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1376
[Intel XE#804]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/804
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
Build changes
-------------
* IGT: IGT_7782 -> IGTPW_10902
IGTPW_10902: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/index.html
IGT_7782: a404f73182948e843640d00cc279883391cf6ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-988-d1ecfbbbb194e8f7941bd84f77f7c938b461ce14: d1ecfbbbb194e8f7941bd84f77f7c938b461ce14
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10902/index.html
[-- Attachment #2: Type: text/html, Size: 6924 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for i915/gem_exec_whisper: Limit workload (rev2)
2024-03-25 16:13 [PATCH i-g-t] i915/gem_exec_whisper: Limit workload Jonathan Cavitt
2024-03-25 19:00 ` ✓ Fi.CI.BAT: success for i915/gem_exec_whisper: Limit workload (rev2) Patchwork
2024-03-25 19:20 ` ✓ CI.xeBAT: " Patchwork
@ 2024-03-26 3:54 ` Patchwork
2024-03-26 11:15 ` Kamil Konieczny
2 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2024-03-26 3:54 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100264 bytes --]
== Series Details ==
Series: i915/gem_exec_whisper: Limit workload (rev2)
URL : https://patchwork.freedesktop.org/series/131448/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7782_full -> IGTPW_10902_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10902_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10902_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_10902/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10902_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@kms:
- shard-snb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-snb5/igt@gem_eio@kms.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-snb6/igt@gem_eio@kms.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-dg1: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_flip@absolute-wf_vblank@c-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk3/igt@kms_flip@absolute-wf_vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4:
- shard-dg1: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg1-15/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4.html
Known issues
------------
Here are the changes found in IGTPW_10902_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +10 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +9 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][12] -> [FAIL][13] ([i915#7742])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-2/igt@gem_basic@multigpu-create-close.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#3936])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-8/igt@gem_ccs@block-copy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-14/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][27] -> [INCOMPLETE][28] ([i915#10513])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-tglu-2/igt@gem_eio@kms.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-4/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@gem_exec_balancer@bonded-pair.html
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +6 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-13/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#8555])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][37] ([i915#6334])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#6344])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu: NOTRUN -> [SKIP][39] ([i915#6344])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-2/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][40] ([i915#9606]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-rkl: NOTRUN -> [FAIL][41] ([i915#9606])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-flow:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473] / [i915#4771])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-glk: NOTRUN -> [FAIL][43] ([i915#2842])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk8/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][44] -> [FAIL][45] ([i915#2842])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: NOTRUN -> [FAIL][47] ([i915#2842]) +2 other tests fail
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3711])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#5107])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +14 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4860]) +6 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-multi@lmem0:
- shard-dg1: NOTRUN -> [FAIL][60] ([i915#10378])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@gem_lmem_swapping@heavy-multi@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: NOTRUN -> [FAIL][61] ([i915#10378]) +1 other test fail
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-8/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk9/igt@gem_lmem_swapping@random.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4613]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][66] -> [TIMEOUT][67] ([i915#5493])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#284])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#284])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@gem_media_vme.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-8/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4077]) +22 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4077]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-6/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4077]) +15 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4083]) +10 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@gem_partial_pwrite_pread@write.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][80] ([i915#2658])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk1/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4270]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#4270]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4270])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4270]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8428]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +9 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#8411])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4885])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][91] ([i915#5889])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@relocations:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3281]) +6 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-6/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#3297])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) +5 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4881])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-3/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][104] ([i915#6227])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk5/igt@i915_module_load@load.html
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6227])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-8/igt@i915_module_load@load.html
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#6227])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: NOTRUN -> [INCOMPLETE][107] ([i915#9820] / [i915#9849])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [INCOMPLETE][108] ([i915#9820] / [i915#9849])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-tglu: NOTRUN -> [WARN][109] ([i915#2681]) +3 other tests warn
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][110] -> [FAIL][111] ([i915#3591])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#6621]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-13/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#6621]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#8925])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-14/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#8925]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-7/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4387])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#6188])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#5723])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][119] ([i915#9311])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][120] ([i915#7443])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6645])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#5190])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-7/igt@kms_addfb_basic@clobberred-modifier.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4212])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-16/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#3826])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3826])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#8709]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#8709]) +11 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#10333])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#1769] / [i915#3555])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][133] ([i915#1769])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#5286])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5286]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#3638]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][140] -> [FAIL][141] ([i915#3743])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [FAIL][142] ([i915#3743])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#5190]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5190]) +15 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][145] +14 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538]) +7 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_joiner@2x-modeset:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#2705]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@kms_big_joiner@2x-modeset.html
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#2705])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +115 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#10278])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6095]) +27 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#6095]) +176 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#10278])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#6095]) +19 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#6095]) +63 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#10278]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#7213]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3742]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#7828]) +10 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@gamma:
- shard-tglu: NOTRUN -> [SKIP][161] +28 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-5/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#7828]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#7828]) +13 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#7828]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#7828])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-8/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#7116] / [i915#9424])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#9424])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3299]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#3299]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3116] / [i915#3299])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-3/igt@kms_content_protection@dp-mst-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3299])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#9424]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#9424])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#7116] / [i915#7118])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-6/igt@kms_content_protection@srm.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6944])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#7118] / [i915#9424]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#7118] / [i915#9424]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3555]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3359])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8814]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3359]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3359])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#8814]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#9809]) +3 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#4103] / [i915#4213]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#4103]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#4103] / [i915#4213])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#4213])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#9833])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9723])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#9227])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#3804])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#1257])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3840] / [i915#9688])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3840] / [i915#9688])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3469])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#2065] / [i915#4854])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-9/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#1839])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#1839])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-6/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#658]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#9934]) +9 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#8381]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#8381])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3637]) +6 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#3637]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-5/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][209] +30 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1:
- shard-snb: [PASS][210] -> [FAIL][211] ([i915#2122])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-snb2/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: [PASS][212] -> [FAIL][213] ([i915#2122])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1:
- shard-dg2: NOTRUN -> [FAIL][214] ([i915#2122])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#2672]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8810])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#2587] / [i915#2672])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) +6 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#2672]) +4 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][222] +61 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#8708]) +23 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][224] +41 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#5354]) +59 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#8708]) +21 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3458]) +20 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#5439])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#3458]) +30 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#1825]) +16 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8708]) +7 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#1825]) +29 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#3023]) +22 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#4816])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#4816])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#4070] / [i915#4816])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#1839])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#1839])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#6301])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][245] ([i915#4573]) +3 other tests fail
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#8821])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8806])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][248] ([i915#8292])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#9423]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#5176]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#9423]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#9423]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9423]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#5235] / [i915#9423]) +15 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#5235]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#5235]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#5235]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#5235])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#5235]) +10 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#5354])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-16/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#9685]) +2 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#9685]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#5978])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][264] -> [FAIL][265] ([i915#9295])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#9685])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#3361])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#9340])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#8430])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#9519])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][271] -> [SKIP][272] ([i915#9519])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][273] -> [SKIP][274] ([i915#9519]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#9519]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#6524])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-16/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#6524] / [i915#6805]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#6524])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#9808]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#9683])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#9683])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#9683])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-16/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#4348])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#1072] / [i915#4423] / [i915#9732])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_psr@fbc-pr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#1072] / [i915#9732]) +22 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#9732]) +7 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-3/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#9688]) +8 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@kms_psr@pr-primary-render.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9673] / [i915#9732]) +7 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +31 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +29 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-14/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][291] +293 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk3/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_rotation_crc@bad-tiling:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#4235]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#5289])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#4235] / [i915#5190]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#5289])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#4235])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#3555])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#3555]) +7 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#8623])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#8623])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#8623])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][302] -> [FAIL][303] ([i915#9196])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [PASS][304] -> [FAIL][305] ([i915#9196])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#9906]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_vrr@max-min.html
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#9906]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#9906]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#2437]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@kms_writeback@writeback-check-output.html
- shard-glk: NOTRUN -> [SKIP][310] ([i915#2437])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk5/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#2437]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#2437] / [i915#9412]) +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#7387])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#2436] / [i915#7387])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#2435])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][316] -> [FAIL][317] ([i915#4349]) +1 other test fail
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-6/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][318] ([i915#4349]) +3 other tests fail
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@frequency@gt0:
- shard-dg1: NOTRUN -> [FAIL][319] ([i915#6806])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@perf_pmu@frequency@gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [INCOMPLETE][320] ([i915#5493])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#3708] / [i915#4077])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-4/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#3708])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#3291] / [i915#3708])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#3291] / [i915#3708])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#3708] / [i915#4077]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#3708])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#9917])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#9917]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][329] ([i915#9779])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-dg1: NOTRUN -> [FAIL][330] ([i915#9779])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][331] ([i915#9779])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk8/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#2575]) +11 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-5/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_perfmon@get-values-invalid-pad:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#2575]) +15 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-16/igt@v3d/v3d_perfmon@get-values-invalid-pad.html
* igt@v3d/v3d_submit_csd@multiple-job-submission:
- shard-tglu: NOTRUN -> [SKIP][334] ([i915#2575]) +5 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-9/igt@v3d/v3d_submit_csd@multiple-job-submission.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#2575]) +18 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-2/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@vc4/vc4_perfmon@get-values-invalid-perfmon:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#7711]) +5 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html
* igt@vc4/vc4_purgeable_bo@free-purged-bo:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#7711]) +2 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#7711]) +9 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#7711]) +12 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-17/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html
#### Possible fixes ####
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [FAIL][340] ([i915#9561]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [FAIL][342] ([i915#2842]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_whisper@basic-forked-all:
- shard-dg2: [TIMEOUT][344] ([i915#7392]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-6/igt@gem_exec_whisper@basic-forked-all.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-10/igt@gem_exec_whisper@basic-forked-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [ABORT][346] ([i915#5566]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-glk5/igt@gen9_exec_parse@allowed-single.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk1/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [INCOMPLETE][348] ([i915#9820]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][350] ([i915#10131] / [i915#9697]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][352] ([i915#3743]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][354] ([i915#2346]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@d-hdmi-a4:
- shard-dg1: [INCOMPLETE][356] -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg1-15/igt@kms_flip@modeset-vs-vblank-race-interruptible@d-hdmi-a4.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_flip@modeset-vs-vblank-race-interruptible@d-hdmi-a4.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-snb: [SKIP][358] -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][360] ([i915#9519]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: [SKIP][362] ([i915#9519]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][364] ([i915#9196]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][366] ([i915#9196]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@syncobj_timeline@etime-multi-wait-all-for-submit-unsubmitted-submitted:
- shard-dg2: [TIMEOUT][368] -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-6/igt@syncobj_timeline@etime-multi-wait-all-for-submit-unsubmitted-submitted.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-8/igt@syncobj_timeline@etime-multi-wait-all-for-submit-unsubmitted-submitted.html
#### Warnings ####
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: [FAIL][370] ([i915#10446]) -> [FAIL][371] ([i915#10378])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg2: [FAIL][372] ([i915#10378]) -> [FAIL][373] ([i915#10446])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][374] ([i915#9424]) -> [SKIP][375] ([i915#9433])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-18/igt@kms_content_protection@mei-interface.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg2: [SKIP][376] ([i915#1072] / [i915#9732]) -> [SKIP][377] ([i915#1072] / [i915#9673] / [i915#9732]) +13 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-7/igt@kms_psr@pr-cursor-mmap-cpu.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-11/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: [SKIP][378] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][379] ([i915#1072] / [i915#9732]) +7 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg2-1/igt@kms_psr@psr-cursor-mmap-cpu.html
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/intel/issues/10333
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434
[i915#10446]: https://gitlab.freedesktop.org/drm/intel/issues/10446
[i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9561]: https://gitlab.freedesktop.org/drm/intel/issues/9561
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7782 -> IGTPW_10902
CI-20190529: 20190529
CI_DRM_14479: d1ecfbbbb194e8f7941bd84f77f7c938b4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/index.html
[-- Attachment #2: Type: text/html, Size: 124466 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for i915/gem_exec_whisper: Limit workload (rev2)
2024-03-26 3:54 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-03-26 11:15 ` Kamil Konieczny
0 siblings, 0 replies; 7+ messages in thread
From: Kamil Konieczny @ 2024-03-26 11:15 UTC (permalink / raw)
To: igt-dev
Cc: Jonathan Cavitt, I915-ci-infra, lgci.bug.filing,
TejasreeX Illipilli
Hi igt-dev,
On 2024-03-26 at 03:54:53 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: i915/gem_exec_whisper: Limit workload (rev2)
> URL : https://patchwork.freedesktop.org/series/131448/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from IGT_7782_full -> IGTPW_10902_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_10902_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_10902_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_10902/index.html
>
> Participating hosts (9 -> 9)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_10902_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_eio@kms:
> - shard-snb: [PASS][1] -> [INCOMPLETE][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-snb5/igt@gem_eio@kms.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-snb6/igt@gem_eio@kms.html
>
> * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
> - shard-dg1: NOTRUN -> [INCOMPLETE][3]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
>
> * igt@kms_flip@absolute-wf_vblank@c-hdmi-a1:
> - shard-glk: NOTRUN -> [INCOMPLETE][4]
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-glk3/igt@kms_flip@absolute-wf_vblank@c-hdmi-a1.html
>
> * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4:
> - shard-dg1: [PASS][5] -> [FAIL][6]
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7782/shard-dg1-15/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/shard-dg1-15/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4.html
>
This is unrelated to changes in gem_exec_whisper.
Regards,
Kamil
>
...cut...
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7782 -> IGTPW_10902
>
> CI-20190529: 20190529
> CI_DRM_14479: d1ecfbbbb194e8f7941bd84f77f7c938b4
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10902/index.html
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-03-26 11:15 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-25 16:13 [PATCH i-g-t] i915/gem_exec_whisper: Limit workload Jonathan Cavitt
2024-03-25 19:00 ` ✓ Fi.CI.BAT: success for i915/gem_exec_whisper: Limit workload (rev2) Patchwork
2024-03-25 19:20 ` ✓ CI.xeBAT: " Patchwork
2024-03-26 3:54 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-03-26 11:15 ` Kamil Konieczny
-- strict thread matches above, loose matches on Subject: below --
2024-03-21 18:30 [PATCH i-g-t] i915/gem_exec_whisper: Limit workload Jonathan Cavitt
2024-03-25 16:05 ` Nirmoy Das
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox