* [PATCH v3 i-g-t 0/3] tests/intel/xe_sriov_scheduling: Refactor submission/measurement
@ 2025-08-25 8:22 Marcin Bernatowicz
2025-08-25 8:22 ` [PATCH v3 i-g-t 1/3] tests/intel/xe_sriov_scheduling: Keep K submissions in flight Marcin Bernatowicz
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2025-08-25 8:22 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Adam Miszczak, Jakub Kolakowski,
Kamil Konieczny, Lukasz Laguna, Satyanarayana K V P
Refactor submission/measurement to better saturate HW and make
throughput comparisons more robust, especially with short jobs.
Add the --inflight option.
- Drive a K-in-flight pipeline per VF using per-slot BO/addr/spin and
binary out-fences; add subm_exec_slot()/subm_wait_slot() (prefill +
refill).
- Record complete_ts[] and per-slot submit_ts[]; build the common
window from completions [max(first), min(last)] and compute
throughput as count/window.
- Push durations as submit-to-completion (complete_ts - submit_ts) and
print "mean submit->signal latency".
- Add --inflight (0=auto; non-preempt defaults to 1; short jobs pick
higher K); print chosen K in the banner.
v2: - drop redundant num_syncs init; simplify subm_exec_slot (Lukasz)
- free complete_ts (Lukasz)
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Marcin Bernatowicz (3):
tests/intel/xe_sriov_scheduling: Keep K submissions in flight
tests/intel/xe_sriov_scheduling: Compute throughput from completion
timestamps
tests/intel/xe_sriov_scheduling: Make in-flight submissions
configurable
tests/intel/xe_sriov_scheduling.c | 237 +++++++++++++++++++++---------
1 file changed, 167 insertions(+), 70 deletions(-)
--
2.31.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v3 i-g-t 1/3] tests/intel/xe_sriov_scheduling: Keep K submissions in flight
2025-08-25 8:22 [PATCH v3 i-g-t 0/3] tests/intel/xe_sriov_scheduling: Refactor submission/measurement Marcin Bernatowicz
@ 2025-08-25 8:22 ` Marcin Bernatowicz
2025-08-25 9:15 ` Laguna, Lukasz
2025-08-25 8:22 ` [PATCH v3 i-g-t 2/3] tests/intel/xe_sriov_scheduling: Compute throughput from completion timestamps Marcin Bernatowicz
` (5 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Marcin Bernatowicz @ 2025-08-25 8:22 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Adam Miszczak, Jakub Kolakowski,
Kamil Konieczny, Lukasz Laguna, Satyanarayana K V P
Refactor submission to a prefill->wait->refill pipeline so each VF can
keep K jobs in flight. Introduce per-slot resources (addr/bo/spin/
out-fence) and submit per slot.
This patch sets K=1, preserving current behavior; follow-ups will pick
a higher/default K and add CLI control. This improves HW saturation and
is less sensitive to CPU scheduling hiccups, especially for short jobs.
v2: drop redundant num_syncs init; simplify subm_exec_slot (Lukasz)
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
---
tests/intel/xe_sriov_scheduling.c | 124 +++++++++++++++++++++---------
1 file changed, 87 insertions(+), 37 deletions(-)
diff --git a/tests/intel/xe_sriov_scheduling.c b/tests/intel/xe_sriov_scheduling.c
index d69315690..df93eaaca 100644
--- a/tests/intel/xe_sriov_scheduling.c
+++ b/tests/intel/xe_sriov_scheduling.c
@@ -51,13 +51,16 @@ struct subm {
int vf_num;
struct subm_work_desc work;
uint32_t expected_ticks;
- uint64_t addr;
uint32_t vm;
struct drm_xe_engine_class_instance hwe;
uint32_t exec_queue_id;
- uint32_t bo;
+ /* K slots (K BOs / addresses / mapped spinners / done fences) */
+ unsigned int slots;
+ uint64_t *addr;
+ uint32_t *bo;
size_t bo_size;
- struct xe_spin *spin;
+ struct xe_spin **spin;
+ uint32_t *done_fence;
struct drm_xe_sync sync[1];
struct drm_xe_exec exec;
};
@@ -78,43 +81,61 @@ struct subm_set {
};
static void subm_init(struct subm *s, int fd, int vf_num, uint64_t addr,
- struct drm_xe_engine_class_instance hwe)
+ struct drm_xe_engine_class_instance hwe,
+ unsigned int inflight)
{
+ uint64_t base, stride;
+
memset(s, 0, sizeof(*s));
s->fd = fd;
s->vf_num = vf_num;
s->hwe = hwe;
snprintf(s->id, sizeof(s->id), "VF%d %d:%d:%d", vf_num,
hwe.engine_class, hwe.engine_instance, hwe.gt_id);
- s->addr = addr ? addr : 0x1a0000;
+ s->slots = inflight ? inflight : 1;
s->vm = xe_vm_create(s->fd, 0, 0);
s->exec_queue_id = xe_exec_queue_create(s->fd, s->vm, &s->hwe, 0);
s->bo_size = ALIGN(sizeof(struct xe_spin) + xe_cs_prefetch_size(s->fd),
xe_get_default_alignment(s->fd));
- s->bo = xe_bo_create(s->fd, s->vm, s->bo_size,
- vram_if_possible(fd, s->hwe.gt_id),
- DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
- s->spin = xe_bo_map(s->fd, s->bo, s->bo_size);
- xe_vm_bind_sync(s->fd, s->vm, s->bo, 0, s->addr, s->bo_size);
- /* out fence */
- s->sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
- s->sync[0].flags = DRM_XE_SYNC_FLAG_SIGNAL;
- s->sync[0].handle = syncobj_create(s->fd, 0);
- s->exec.num_syncs = 1;
- s->exec.syncs = to_user_pointer(&s->sync[0]);
+ s->addr = calloc(s->slots, sizeof(*s->addr));
+ s->bo = calloc(s->slots, sizeof(*s->bo));
+ s->spin = calloc(s->slots, sizeof(*s->spin));
+ s->done_fence = calloc(s->slots, sizeof(*s->done_fence));
+
+ igt_assert(s->addr && s->bo && s->spin && s->done_fence);
+
+ base = addr ? addr : 0x1a0000;
+ stride = ALIGN(s->bo_size, 0x10000);
+ for (unsigned int i = 0; i < s->slots; i++) {
+ s->addr[i] = base + i * stride;
+ s->bo[i] = xe_bo_create(s->fd, s->vm, s->bo_size,
+ vram_if_possible(fd, s->hwe.gt_id),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ s->spin[i] = xe_bo_map(s->fd, s->bo[i], s->bo_size);
+ xe_vm_bind_sync(s->fd, s->vm, s->bo[i], 0, s->addr[i], s->bo_size);
+ s->done_fence[i] = syncobj_create(s->fd, 0);
+ }
+
s->exec.num_batch_buffer = 1;
s->exec.exec_queue_id = s->exec_queue_id;
- s->exec.address = s->addr;
+ /* s->exec.address set per submission */
}
static void subm_fini(struct subm *s)
{
- xe_vm_unbind_sync(s->fd, s->vm, 0, s->addr, s->bo_size);
- gem_munmap(s->spin, s->bo_size);
- gem_close(s->fd, s->bo);
+ for (unsigned int i = 0; i < s->slots; i++) {
+ xe_vm_unbind_sync(s->fd, s->vm, 0, s->addr[i], s->bo_size);
+ gem_munmap(s->spin[i], s->bo_size);
+ gem_close(s->fd, s->bo[i]);
+ if (s->done_fence[i])
+ syncobj_destroy(s->fd, s->done_fence[i]);
+ }
xe_exec_queue_destroy(s->fd, s->exec_queue_id);
xe_vm_destroy(s->fd, s->vm);
- syncobj_destroy(s->fd, s->sync[0].handle);
+ free(s->addr);
+ free(s->bo);
+ free(s->spin);
+ free(s->done_fence);
}
static void subm_workload_init(struct subm *s, struct subm_work_desc *work)
@@ -122,25 +143,36 @@ static void subm_workload_init(struct subm *s, struct subm_work_desc *work)
s->work = *work;
s->expected_ticks = xe_spin_nsec_to_ticks(s->fd, s->hwe.gt_id,
s->work.duration_ms * 1000000);
- xe_spin_init_opts(s->spin, .addr = s->addr, .preempt = s->work.preempt,
- .ctx_ticks = s->expected_ticks);
+ for (unsigned int i = 0; i < s->slots; i++)
+ xe_spin_init_opts(s->spin[i], .addr = s->addr[i],
+ .preempt = s->work.preempt,
+ .ctx_ticks = s->expected_ticks);
}
-static void subm_wait(struct subm *s, uint64_t abs_timeout_nsec)
+static void subm_wait_slot(struct subm *s, unsigned int slot, uint64_t abs_timeout_nsec)
{
- igt_assert(syncobj_wait(s->fd, &s->sync[0].handle, 1, abs_timeout_nsec,
- 0, NULL));
+ igt_assert(syncobj_wait(s->fd, &s->done_fence[slot], 1,
+ abs_timeout_nsec, 0, NULL));
}
-static void subm_exec(struct subm *s)
+static void subm_exec_slot(struct subm *s, unsigned int slot)
{
- syncobj_reset(s->fd, &s->sync[0].handle, 1);
+ struct timespec tv;
+
+ syncobj_reset(s->fd, &s->done_fence[slot], 1);
+ memset(&s->sync[0], 0, sizeof(s->sync));
+ s->sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
+ s->sync[0].flags = DRM_XE_SYNC_FLAG_SIGNAL;
+ s->sync[0].handle = s->done_fence[slot];
+ s->exec.num_syncs = 1;
+ s->exec.syncs = to_user_pointer(&s->sync[0]);
+ s->exec.address = s->addr[slot];
xe_exec(s->fd, &s->exec);
}
-static bool subm_is_work_complete(struct subm *s)
+static bool subm_is_work_complete(struct subm *s, unsigned int slot)
{
- return s->expected_ticks <= ~s->spin->ticks_delta;
+ return s->expected_ticks <= ~s->spin[slot]->ticks_delta;
}
static bool subm_is_exec_queue_banned(struct subm *s)
@@ -157,6 +189,8 @@ static bool subm_is_exec_queue_banned(struct subm *s)
static void subm_exec_loop(struct subm *s, struct subm_stats *stats,
const struct subm_opts *opts)
{
+ const unsigned int inflight = s->slots;
+ unsigned int submitted = 0;
struct timespec tv;
unsigned int i;
@@ -165,16 +199,24 @@ static void subm_exec_loop(struct subm *s, struct subm_stats *stats,
tv.tv_sec * (uint64_t)NSEC_PER_SEC + tv.tv_nsec;
igt_debug("[%s] start_timestamp: %f\n", s->id, stats->start_timestamp * 1e-9);
- for (i = 0; i < s->work.repeats; ++i) {
- igt_gettime(&tv);
+ /* Prefill */
+ if (s->work.repeats) {
+ unsigned int can_prefill = min(inflight, s->work.repeats);
- subm_exec(s);
+ for (i = 0; i < can_prefill; i++)
+ subm_exec_slot(s, i % inflight);
+ submitted = can_prefill;
+ }
- subm_wait(s, INT64_MAX);
+ /* Process completions in order: sample i -> slot (i % inflight) */
+ for (i = 0; i < s->work.repeats; ++i) {
+ unsigned int slot = i % inflight;
+ igt_gettime(&tv);
+ subm_wait_slot(s, slot, INT64_MAX);
igt_stats_push(&stats->samples, igt_nsec_elapsed(&tv));
- if (!subm_is_work_complete(s)) {
+ if (!subm_is_work_complete(s, slot)) {
stats->num_early_finish++;
igt_debug("[%s] subm #%d early_finish=%u\n",
@@ -183,6 +225,14 @@ static void subm_exec_loop(struct subm *s, struct subm_stats *stats,
if (subm_is_exec_queue_banned(s))
break;
}
+
+ /* Keep the pipeline full */
+ if (submitted < s->work.repeats) {
+ unsigned int next_slot = submitted % inflight;
+
+ subm_exec_slot(s, next_slot);
+ submitted++;
+ }
}
igt_gettime(&tv);
@@ -607,7 +657,7 @@ static void throughput_ratio(int pf_fd, int num_vfs, const struct subm_opts *opt
igt_assert_fd(vf_fd);
set->data[n].opts = opts;
subm_init(&set->data[n].subm, vf_fd, vf_ids[n], 0,
- xe_engine(vf_fd, 0)->instance);
+ xe_engine(vf_fd, 0)->instance, 1);
subm_workload_init(&set->data[n].subm,
&(struct subm_work_desc){
.duration_ms = job_sched_params.duration_ms,
@@ -702,7 +752,7 @@ static void nonpreempt_engine_resets(int pf_fd, int num_vfs,
igt_assert_fd(vf_fd);
set->data[n].opts = opts;
subm_init(&set->data[n].subm, vf_fd, vf_ids[n], 0,
- xe_engine(vf_fd, 0)->instance);
+ xe_engine(vf_fd, 0)->instance, 1);
subm_workload_init(&set->data[n].subm,
&(struct subm_work_desc){
.duration_ms = duration_ms,
--
2.31.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 i-g-t 2/3] tests/intel/xe_sriov_scheduling: Compute throughput from completion timestamps
2025-08-25 8:22 [PATCH v3 i-g-t 0/3] tests/intel/xe_sriov_scheduling: Refactor submission/measurement Marcin Bernatowicz
2025-08-25 8:22 ` [PATCH v3 i-g-t 1/3] tests/intel/xe_sriov_scheduling: Keep K submissions in flight Marcin Bernatowicz
@ 2025-08-25 8:22 ` Marcin Bernatowicz
2025-08-25 9:15 ` Laguna, Lukasz
2025-08-25 8:22 ` [PATCH v3 i-g-t 3/3] tests/intel/xe_sriov_scheduling: Make in-flight submissions configurable Marcin Bernatowicz
` (4 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Marcin Bernatowicz @ 2025-08-25 8:22 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Adam Miszczak, Jakub Kolakowski,
Kamil Konieczny, Lukasz Laguna, Satyanarayana K V P
Make throughput comparisons robust under overlap/prefill and CPU jitter
by basing the window on actual completion times rather than thread timing.
- Record per-sample complete_ts[] and per-slot submit_ts[].
- Build the common window from completions: [max(first), min(last)].
- Compute throughput as count/window within that window.
- Push durations as submit->completion (complete_ts − submit_ts) and
print "mean submit->signal latency".
v2: free complete_ts (Lukasz)
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
---
tests/intel/xe_sriov_scheduling.c | 68 ++++++++++++++++++-------------
1 file changed, 39 insertions(+), 29 deletions(-)
diff --git a/tests/intel/xe_sriov_scheduling.c b/tests/intel/xe_sriov_scheduling.c
index df93eaaca..314126404 100644
--- a/tests/intel/xe_sriov_scheduling.c
+++ b/tests/intel/xe_sriov_scheduling.c
@@ -39,6 +39,7 @@ struct subm_stats {
igt_stats_t samples;
uint64_t start_timestamp;
uint64_t end_timestamp;
+ uint64_t *complete_ts; /* absolute completion timestamps (ns) */
unsigned int num_early_finish;
unsigned int concurrent_execs;
double concurrent_rate;
@@ -54,13 +55,14 @@ struct subm {
uint32_t vm;
struct drm_xe_engine_class_instance hwe;
uint32_t exec_queue_id;
- /* K slots (K BOs / addresses / mapped spinners / done fences) */
+ /* K slots (K BOs / addresses / mapped spinners / done fences / submit timestamps) */
unsigned int slots;
uint64_t *addr;
uint32_t *bo;
size_t bo_size;
struct xe_spin **spin;
uint32_t *done_fence;
+ uint64_t *submit_ts;
struct drm_xe_sync sync[1];
struct drm_xe_exec exec;
};
@@ -101,8 +103,9 @@ static void subm_init(struct subm *s, int fd, int vf_num, uint64_t addr,
s->bo = calloc(s->slots, sizeof(*s->bo));
s->spin = calloc(s->slots, sizeof(*s->spin));
s->done_fence = calloc(s->slots, sizeof(*s->done_fence));
+ s->submit_ts = calloc(s->slots, sizeof(*s->submit_ts));
- igt_assert(s->addr && s->bo && s->spin && s->done_fence);
+ igt_assert(s->addr && s->bo && s->spin && s->done_fence && s->submit_ts);
base = addr ? addr : 0x1a0000;
stride = ALIGN(s->bo_size, 0x10000);
@@ -136,6 +139,7 @@ static void subm_fini(struct subm *s)
free(s->bo);
free(s->spin);
free(s->done_fence);
+ free(s->submit_ts);
}
static void subm_workload_init(struct subm *s, struct subm_work_desc *work)
@@ -167,6 +171,8 @@ static void subm_exec_slot(struct subm *s, unsigned int slot)
s->exec.num_syncs = 1;
s->exec.syncs = to_user_pointer(&s->sync[0]);
s->exec.address = s->addr[slot];
+ igt_gettime(&tv);
+ s->submit_ts[slot] = (uint64_t)tv.tv_sec * (uint64_t)NSEC_PER_SEC + (uint64_t)tv.tv_nsec;
xe_exec(s->fd, &s->exec);
}
@@ -212,9 +218,11 @@ static void subm_exec_loop(struct subm *s, struct subm_stats *stats,
for (i = 0; i < s->work.repeats; ++i) {
unsigned int slot = i % inflight;
- igt_gettime(&tv);
subm_wait_slot(s, slot, INT64_MAX);
- igt_stats_push(&stats->samples, igt_nsec_elapsed(&tv));
+ igt_gettime(&tv);
+ stats->complete_ts[i] = (uint64_t)tv.tv_sec * (uint64_t)NSEC_PER_SEC +
+ (uint64_t)tv.tv_nsec;
+ igt_stats_push(&stats->samples, stats->complete_ts[i] - s->submit_ts[slot]);
if (!subm_is_work_complete(s, slot)) {
stats->num_early_finish++;
@@ -322,8 +330,10 @@ static void subm_set_fini(struct subm_set *set)
subm_set_close_handles(set);
- for (i = 0; i < set->ndata; ++i)
+ for (i = 0; i < set->ndata; ++i) {
igt_stats_fini(&set->data[i].stats.samples);
+ free(set->data[i].stats.complete_ts);
+ }
subm_set_free_data(set);
}
@@ -384,16 +394,22 @@ static void compute_common_time_frame_stats(struct subm_set *set)
struct subm_stats *stats;
uint64_t common_start = 0;
uint64_t common_end = UINT64_MAX;
+ uint64_t first_ts, last_ts;
- /* Find the common time frame */
+ /* Find common window from completion timestamps */
for (i = 0; i < ndata; i++) {
stats = &data[i].stats;
- if (stats->start_timestamp > common_start)
- common_start = stats->start_timestamp;
+ if (!stats->samples.n_values)
+ continue;
- if (stats->end_timestamp < common_end)
- common_end = stats->end_timestamp;
+ first_ts = stats->complete_ts[0];
+ last_ts = stats->complete_ts[stats->samples.n_values - 1];
+
+ if (first_ts > common_start)
+ common_start = first_ts;
+ if (last_ts < common_end)
+ common_end = last_ts;
}
igt_info("common time frame: [%" PRIu64 ";%" PRIu64 "] %.2fms\n",
@@ -404,8 +420,7 @@ static void compute_common_time_frame_stats(struct subm_set *set)
/* Compute concurrent_rate for each sample set within the common time frame */
for (i = 0; i < ndata; i++) {
- uint64_t total_samples_duration = 0;
- uint64_t samples_duration_in_common_frame = 0;
+ const double window_s = (common_end - common_start) * 1e-9;
stats = &data[i].stats;
stats->concurrent_execs = 0;
@@ -413,29 +428,20 @@ static void compute_common_time_frame_stats(struct subm_set *set)
stats->concurrent_mean = 0.0;
for (j = 0; j < stats->samples.n_values; j++) {
- uint64_t sample_start = stats->start_timestamp + total_samples_duration;
- uint64_t sample_end = sample_start + stats->samples.values_u64[j];
+ uint64_t cts = stats->complete_ts[j];
- if (sample_start >= common_start &&
- sample_end <= common_end) {
+ if (cts >= common_start && cts <= common_end) {
stats->concurrent_execs++;
- samples_duration_in_common_frame +=
- stats->samples.values_u64[j];
+ stats->concurrent_mean += stats->samples.values_u64[j];
}
-
- total_samples_duration += stats->samples.values_u64[j];
}
- stats->concurrent_rate = samples_duration_in_common_frame ?
- (double)stats->concurrent_execs /
- (samples_duration_in_common_frame *
- 1e-9) :
- 0.0;
+ stats->concurrent_rate = (window_s > 0.0) ?
+ ((double)stats->concurrent_execs / window_s) : 0.0;
stats->concurrent_mean = stats->concurrent_execs ?
- (double)samples_duration_in_common_frame /
- stats->concurrent_execs :
- 0.0;
- igt_info("[%s] Throughput = %.4f execs/s mean duration=%.4fms nsamples=%d\n",
+ (double)stats->concurrent_mean /
+ stats->concurrent_execs : 0.0;
+ igt_info("[%s] Throughput = %.4f execs/s mean submit->signal latency=%.4fms nsamples=%d\n",
data[i].subm.id, stats->concurrent_rate, stats->concurrent_mean * 1e-6,
stats->concurrent_execs);
}
@@ -665,6 +671,8 @@ static void throughput_ratio(int pf_fd, int num_vfs, const struct subm_opts *opt
.repeats = job_sched_params.num_repeats });
igt_stats_init_with_size(&set->data[n].stats.samples,
set->data[n].subm.work.repeats);
+ set->data[n].stats.complete_ts = calloc(set->data[n].subm.work.repeats,
+ sizeof(uint64_t));
if (set->sync_method == SYNC_BARRIER)
set->data[n].barrier = &set->barrier;
}
@@ -760,6 +768,8 @@ static void nonpreempt_engine_resets(int pf_fd, int num_vfs,
.repeats = MIN_NUM_REPEATS });
igt_stats_init_with_size(&set->data[n].stats.samples,
set->data[n].subm.work.repeats);
+ set->data[n].stats.complete_ts = calloc(set->data[n].subm.work.repeats,
+ sizeof(uint64_t));
if (set->sync_method == SYNC_BARRIER)
set->data[n].barrier = &set->barrier;
}
--
2.31.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 i-g-t 3/3] tests/intel/xe_sriov_scheduling: Make in-flight submissions configurable
2025-08-25 8:22 [PATCH v3 i-g-t 0/3] tests/intel/xe_sriov_scheduling: Refactor submission/measurement Marcin Bernatowicz
2025-08-25 8:22 ` [PATCH v3 i-g-t 1/3] tests/intel/xe_sriov_scheduling: Keep K submissions in flight Marcin Bernatowicz
2025-08-25 8:22 ` [PATCH v3 i-g-t 2/3] tests/intel/xe_sriov_scheduling: Compute throughput from completion timestamps Marcin Bernatowicz
@ 2025-08-25 8:22 ` Marcin Bernatowicz
2025-08-25 10:37 ` ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2) Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2025-08-25 8:22 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Lukasz Laguna, Adam Miszczak,
Jakub Kolakowski, Kamil Konieczny, Satyanarayana K V P
Allow controlling (or auto-selecting) the number of concurrent
submissions per VF to better saturate hardware, especially for short
jobs.
- Add --inflight option; 0 = auto (default), >=1 = explicit K.
- Select K via a small heuristic (non-preempt: 1; <=12ms: 4; <=20ms: 3;
else 2).
- Plumb K into subm_init() and print inflight=K in the banner.
- Relax minimums to support short jobs: MIN_EXEC_QUANTUM_MS=1,
MIN_JOB_DURATION_MS=2.
- Update CLI parsing and help text.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
---
tests/intel/xe_sriov_scheduling.c | 55 ++++++++++++++++++++++++++-----
1 file changed, 46 insertions(+), 9 deletions(-)
diff --git a/tests/intel/xe_sriov_scheduling.c b/tests/intel/xe_sriov_scheduling.c
index 314126404..f0f2f29e4 100644
--- a/tests/intel/xe_sriov_scheduling.c
+++ b/tests/intel/xe_sriov_scheduling.c
@@ -27,6 +27,8 @@ struct subm_opts {
uint32_t exec_quantum_ms;
uint32_t preempt_timeout_us;
double outlier_treshold;
+ /* --inflight=0 => auto; >=1 => explicit K */
+ unsigned int inflight;
};
struct subm_work_desc {
@@ -495,9 +497,9 @@ static void log_sample_values(char *id, struct subm_stats *stats,
}
#define MIN_NUM_REPEATS 25
-#define MIN_EXEC_QUANTUM_MS 8
+#define MIN_EXEC_QUANTUM_MS 1
#define MAX_EXEC_QUANTUM_MS 32
-#define MIN_JOB_DURATION_MS 16
+#define MIN_JOB_DURATION_MS 2
#define MAX_TOTAL_DURATION_MS 15000
#define PREFERRED_TOTAL_DURATION_MS 10000
#define MAX_PREFERRED_REPEATS 100
@@ -569,6 +571,25 @@ static int adjust_num_repeats(int duration_ms, int num_threads)
return max(optimal_repeats, MIN_NUM_REPEATS);
}
+/* inflight K selection:
+ * user_k == 0 => auto
+ * user_k >= 1 => explicit K
+ */
+static unsigned int select_inflight_k(unsigned int duration_ms,
+ unsigned int user_k,
+ bool nonpreempt)
+{
+ if (user_k)
+ return user_k >= 1 ? user_k : 1;
+ if (nonpreempt)
+ return 1;
+ if (duration_ms <= 12)
+ return 4;
+ if (duration_ms <= 20)
+ return 3;
+ return 2;
+}
+
static struct vf_sched_params prepare_vf_sched_params(int num_threads,
int min_num_repeats,
int job_timeout_ms,
@@ -629,12 +650,14 @@ static void throughput_ratio(int pf_fd, int num_vfs, const struct subm_opts *opt
struct job_sched_params job_sched_params = prepare_job_sched_params(num_vfs + 1,
job_timeout_ms,
opts);
+ const unsigned int k = select_inflight_k(job_sched_params.duration_ms,
+ opts->inflight, false);
- igt_info("eq=%ums pt=%uus duration=%ums repeats=%d num_vfs=%d job_timeout=%ums\n",
+ igt_info("eq=%ums pt=%uus duration=%ums repeats=%d inflight=%u num_vfs=%d job_timeout=%ums\n",
job_sched_params.sched_params.exec_quantum_ms,
job_sched_params.sched_params.preempt_timeout_us,
job_sched_params.duration_ms, job_sched_params.num_repeats,
- num_vfs + 1, job_timeout_ms);
+ k, num_vfs + 1, job_timeout_ms);
init_vf_ids(vf_ids, ARRAY_SIZE(vf_ids),
&(struct init_vf_ids_opts){ .shuffle = true,
@@ -663,7 +686,7 @@ static void throughput_ratio(int pf_fd, int num_vfs, const struct subm_opts *opt
igt_assert_fd(vf_fd);
set->data[n].opts = opts;
subm_init(&set->data[n].subm, vf_fd, vf_ids[n], 0,
- xe_engine(vf_fd, 0)->instance, 1);
+ xe_engine(vf_fd, 0)->instance, k);
subm_workload_init(&set->data[n].subm,
&(struct subm_work_desc){
.duration_ms = job_sched_params.duration_ms,
@@ -728,10 +751,11 @@ static void nonpreempt_engine_resets(int pf_fd, int num_vfs,
vf_sched_params.preempt_timeout_us / USEC_PER_MSEC;
int preemptible_end = 1;
uint8_t vf_ids[num_vfs + 1 /*PF*/];
+ const unsigned int k = select_inflight_k(duration_ms, opts->inflight, true);
- igt_info("eq=%ums pt=%uus duration=%" PRIu64 "ms num_vfs=%d job_timeout=%ums\n",
+ igt_info("eq=%ums pt=%uus duration=%" PRIu64 "ms inflight=%u num_vfs=%d job_timeout=%ums\n",
vf_sched_params.exec_quantum_ms, vf_sched_params.preempt_timeout_us,
- duration_ms, num_vfs, job_timeout_ms);
+ duration_ms, k, num_vfs, job_timeout_ms);
init_vf_ids(vf_ids, ARRAY_SIZE(vf_ids),
&(struct init_vf_ids_opts){ .shuffle = true,
@@ -760,7 +784,7 @@ static void nonpreempt_engine_resets(int pf_fd, int num_vfs,
igt_assert_fd(vf_fd);
set->data[n].opts = opts;
subm_init(&set->data[n].subm, vf_fd, vf_ids[n], 0,
- xe_engine(vf_fd, 0)->instance, 1);
+ xe_engine(vf_fd, 0)->instance, k);
subm_workload_init(&set->data[n].subm,
&(struct subm_work_desc){
.duration_ms = duration_ms,
@@ -798,6 +822,7 @@ static void nonpreempt_engine_resets(int pf_fd, int num_vfs,
static struct subm_opts subm_opts = {
.sync_method = SYNC_BARRIER,
.outlier_treshold = 0.1,
+ .inflight = 0,
};
static bool extended_scope;
@@ -824,6 +849,16 @@ static int subm_opts_handler(int opt, int opt_index, void *data)
subm_opts.outlier_treshold = atoi(optarg) / 100.0;
igt_info("Outlier threshold: %.2f\n", subm_opts.outlier_treshold);
break;
+ case 'i': {
+ int val = atoi(optarg);
+
+ subm_opts.inflight = val > 0 ? val : 0;
+ if (subm_opts.inflight)
+ igt_info("In-flight submissions: %u\n", subm_opts.inflight);
+ else
+ igt_info("In-flight submissions: auto (0)\n");
+ break;
+ }
default:
return IGT_OPT_HANDLER_ERROR;
}
@@ -837,6 +872,7 @@ static const struct option long_opts[] = {
{ .name = "threshold", .has_arg = true, .val = 't', },
{ .name = "eq_ms", .has_arg = true, .val = 'q', },
{ .name = "pt_us", .has_arg = true, .val = 'p', },
+ { .name = "inflight", .has_arg = true, .val = 'i', },
{}
};
@@ -845,7 +881,8 @@ static const char help_str[] =
" --sync\tThreads synchronization method: 0 - none 1 - barrier (Default 1)\n"
" --threshold\tSample outlier threshold (Default 0.1)\n"
" --eq_ms\texec_quantum_ms\n"
- " --pt_us\tpreempt_timeout_us\n";
+ " --pt_us\tpreempt_timeout_us\n"
+ " --inflight\tNumber of submissions kept in flight per VF (0=auto)\n";
igt_main_args("", long_opts, help_str, subm_opts_handler, NULL)
{
--
2.31.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v3 i-g-t 2/3] tests/intel/xe_sriov_scheduling: Compute throughput from completion timestamps
2025-08-25 8:22 ` [PATCH v3 i-g-t 2/3] tests/intel/xe_sriov_scheduling: Compute throughput from completion timestamps Marcin Bernatowicz
@ 2025-08-25 9:15 ` Laguna, Lukasz
0 siblings, 0 replies; 11+ messages in thread
From: Laguna, Lukasz @ 2025-08-25 9:15 UTC (permalink / raw)
To: Marcin Bernatowicz, igt-dev
Cc: Adam Miszczak, Jakub Kolakowski, Kamil Konieczny,
Satyanarayana K V P
On 8/25/2025 10:22, Marcin Bernatowicz wrote:
> Make throughput comparisons robust under overlap/prefill and CPU jitter
> by basing the window on actual completion times rather than thread timing.
>
> - Record per-sample complete_ts[] and per-slot submit_ts[].
> - Build the common window from completions: [max(first), min(last)].
> - Compute throughput as count/window within that window.
> - Push durations as submit->completion (complete_ts − submit_ts) and
> print "mean submit->signal latency".
>
> v2: free complete_ts (Lukasz)
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
> Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
> Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> ---
> tests/intel/xe_sriov_scheduling.c | 68 ++++++++++++++++++-------------
> 1 file changed, 39 insertions(+), 29 deletions(-)
>
> diff --git a/tests/intel/xe_sriov_scheduling.c b/tests/intel/xe_sriov_scheduling.c
> index df93eaaca..314126404 100644
> --- a/tests/intel/xe_sriov_scheduling.c
> +++ b/tests/intel/xe_sriov_scheduling.c
> @@ -39,6 +39,7 @@ struct subm_stats {
> igt_stats_t samples;
> uint64_t start_timestamp;
> uint64_t end_timestamp;
> + uint64_t *complete_ts; /* absolute completion timestamps (ns) */
> unsigned int num_early_finish;
> unsigned int concurrent_execs;
> double concurrent_rate;
> @@ -54,13 +55,14 @@ struct subm {
> uint32_t vm;
> struct drm_xe_engine_class_instance hwe;
> uint32_t exec_queue_id;
> - /* K slots (K BOs / addresses / mapped spinners / done fences) */
> + /* K slots (K BOs / addresses / mapped spinners / done fences / submit timestamps) */
> unsigned int slots;
> uint64_t *addr;
> uint32_t *bo;
> size_t bo_size;
> struct xe_spin **spin;
> uint32_t *done_fence;
> + uint64_t *submit_ts;
> struct drm_xe_sync sync[1];
> struct drm_xe_exec exec;
> };
> @@ -101,8 +103,9 @@ static void subm_init(struct subm *s, int fd, int vf_num, uint64_t addr,
> s->bo = calloc(s->slots, sizeof(*s->bo));
> s->spin = calloc(s->slots, sizeof(*s->spin));
> s->done_fence = calloc(s->slots, sizeof(*s->done_fence));
> + s->submit_ts = calloc(s->slots, sizeof(*s->submit_ts));
>
> - igt_assert(s->addr && s->bo && s->spin && s->done_fence);
> + igt_assert(s->addr && s->bo && s->spin && s->done_fence && s->submit_ts);
>
> base = addr ? addr : 0x1a0000;
> stride = ALIGN(s->bo_size, 0x10000);
> @@ -136,6 +139,7 @@ static void subm_fini(struct subm *s)
> free(s->bo);
> free(s->spin);
> free(s->done_fence);
> + free(s->submit_ts);
> }
>
> static void subm_workload_init(struct subm *s, struct subm_work_desc *work)
> @@ -167,6 +171,8 @@ static void subm_exec_slot(struct subm *s, unsigned int slot)
> s->exec.num_syncs = 1;
> s->exec.syncs = to_user_pointer(&s->sync[0]);
> s->exec.address = s->addr[slot];
> + igt_gettime(&tv);
> + s->submit_ts[slot] = (uint64_t)tv.tv_sec * (uint64_t)NSEC_PER_SEC + (uint64_t)tv.tv_nsec;
> xe_exec(s->fd, &s->exec);
> }
>
> @@ -212,9 +218,11 @@ static void subm_exec_loop(struct subm *s, struct subm_stats *stats,
> for (i = 0; i < s->work.repeats; ++i) {
> unsigned int slot = i % inflight;
>
> - igt_gettime(&tv);
> subm_wait_slot(s, slot, INT64_MAX);
> - igt_stats_push(&stats->samples, igt_nsec_elapsed(&tv));
> + igt_gettime(&tv);
> + stats->complete_ts[i] = (uint64_t)tv.tv_sec * (uint64_t)NSEC_PER_SEC +
> + (uint64_t)tv.tv_nsec;
> + igt_stats_push(&stats->samples, stats->complete_ts[i] - s->submit_ts[slot]);
>
> if (!subm_is_work_complete(s, slot)) {
> stats->num_early_finish++;
> @@ -322,8 +330,10 @@ static void subm_set_fini(struct subm_set *set)
>
> subm_set_close_handles(set);
>
> - for (i = 0; i < set->ndata; ++i)
> + for (i = 0; i < set->ndata; ++i) {
> igt_stats_fini(&set->data[i].stats.samples);
> + free(set->data[i].stats.complete_ts);
> + }
>
> subm_set_free_data(set);
> }
> @@ -384,16 +394,22 @@ static void compute_common_time_frame_stats(struct subm_set *set)
> struct subm_stats *stats;
> uint64_t common_start = 0;
> uint64_t common_end = UINT64_MAX;
> + uint64_t first_ts, last_ts;
>
> - /* Find the common time frame */
> + /* Find common window from completion timestamps */
> for (i = 0; i < ndata; i++) {
> stats = &data[i].stats;
>
> - if (stats->start_timestamp > common_start)
> - common_start = stats->start_timestamp;
> + if (!stats->samples.n_values)
> + continue;
>
> - if (stats->end_timestamp < common_end)
> - common_end = stats->end_timestamp;
> + first_ts = stats->complete_ts[0];
> + last_ts = stats->complete_ts[stats->samples.n_values - 1];
> +
> + if (first_ts > common_start)
> + common_start = first_ts;
> + if (last_ts < common_end)
> + common_end = last_ts;
> }
>
> igt_info("common time frame: [%" PRIu64 ";%" PRIu64 "] %.2fms\n",
> @@ -404,8 +420,7 @@ static void compute_common_time_frame_stats(struct subm_set *set)
>
> /* Compute concurrent_rate for each sample set within the common time frame */
> for (i = 0; i < ndata; i++) {
> - uint64_t total_samples_duration = 0;
> - uint64_t samples_duration_in_common_frame = 0;
> + const double window_s = (common_end - common_start) * 1e-9;
>
> stats = &data[i].stats;
> stats->concurrent_execs = 0;
> @@ -413,29 +428,20 @@ static void compute_common_time_frame_stats(struct subm_set *set)
> stats->concurrent_mean = 0.0;
>
> for (j = 0; j < stats->samples.n_values; j++) {
> - uint64_t sample_start = stats->start_timestamp + total_samples_duration;
> - uint64_t sample_end = sample_start + stats->samples.values_u64[j];
> + uint64_t cts = stats->complete_ts[j];
>
> - if (sample_start >= common_start &&
> - sample_end <= common_end) {
> + if (cts >= common_start && cts <= common_end) {
> stats->concurrent_execs++;
> - samples_duration_in_common_frame +=
> - stats->samples.values_u64[j];
> + stats->concurrent_mean += stats->samples.values_u64[j];
> }
> -
> - total_samples_duration += stats->samples.values_u64[j];
> }
>
> - stats->concurrent_rate = samples_duration_in_common_frame ?
> - (double)stats->concurrent_execs /
> - (samples_duration_in_common_frame *
> - 1e-9) :
> - 0.0;
> + stats->concurrent_rate = (window_s > 0.0) ?
> + ((double)stats->concurrent_execs / window_s) : 0.0;
> stats->concurrent_mean = stats->concurrent_execs ?
> - (double)samples_duration_in_common_frame /
> - stats->concurrent_execs :
> - 0.0;
> - igt_info("[%s] Throughput = %.4f execs/s mean duration=%.4fms nsamples=%d\n",
> + (double)stats->concurrent_mean /
> + stats->concurrent_execs : 0.0;
> + igt_info("[%s] Throughput = %.4f execs/s mean submit->signal latency=%.4fms nsamples=%d\n",
> data[i].subm.id, stats->concurrent_rate, stats->concurrent_mean * 1e-6,
> stats->concurrent_execs);
> }
> @@ -665,6 +671,8 @@ static void throughput_ratio(int pf_fd, int num_vfs, const struct subm_opts *opt
> .repeats = job_sched_params.num_repeats });
> igt_stats_init_with_size(&set->data[n].stats.samples,
> set->data[n].subm.work.repeats);
> + set->data[n].stats.complete_ts = calloc(set->data[n].subm.work.repeats,
> + sizeof(uint64_t));
> if (set->sync_method == SYNC_BARRIER)
> set->data[n].barrier = &set->barrier;
> }
> @@ -760,6 +768,8 @@ static void nonpreempt_engine_resets(int pf_fd, int num_vfs,
> .repeats = MIN_NUM_REPEATS });
> igt_stats_init_with_size(&set->data[n].stats.samples,
> set->data[n].subm.work.repeats);
> + set->data[n].stats.complete_ts = calloc(set->data[n].subm.work.repeats,
> + sizeof(uint64_t));
> if (set->sync_method == SYNC_BARRIER)
> set->data[n].barrier = &set->barrier;
> }
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 i-g-t 1/3] tests/intel/xe_sriov_scheduling: Keep K submissions in flight
2025-08-25 8:22 ` [PATCH v3 i-g-t 1/3] tests/intel/xe_sriov_scheduling: Keep K submissions in flight Marcin Bernatowicz
@ 2025-08-25 9:15 ` Laguna, Lukasz
0 siblings, 0 replies; 11+ messages in thread
From: Laguna, Lukasz @ 2025-08-25 9:15 UTC (permalink / raw)
To: Marcin Bernatowicz, igt-dev
Cc: Adam Miszczak, Jakub Kolakowski, Kamil Konieczny,
Satyanarayana K V P
On 8/25/2025 10:22, Marcin Bernatowicz wrote:
> Refactor submission to a prefill->wait->refill pipeline so each VF can
> keep K jobs in flight. Introduce per-slot resources (addr/bo/spin/
> out-fence) and submit per slot.
>
> This patch sets K=1, preserving current behavior; follow-ups will pick
> a higher/default K and add CLI control. This improves HW saturation and
> is less sensitive to CPU scheduling hiccups, especially for short jobs.
>
> v2: drop redundant num_syncs init; simplify subm_exec_slot (Lukasz)
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
> Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
> Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> ---
> tests/intel/xe_sriov_scheduling.c | 124 +++++++++++++++++++++---------
> 1 file changed, 87 insertions(+), 37 deletions(-)
>
> diff --git a/tests/intel/xe_sriov_scheduling.c b/tests/intel/xe_sriov_scheduling.c
> index d69315690..df93eaaca 100644
> --- a/tests/intel/xe_sriov_scheduling.c
> +++ b/tests/intel/xe_sriov_scheduling.c
> @@ -51,13 +51,16 @@ struct subm {
> int vf_num;
> struct subm_work_desc work;
> uint32_t expected_ticks;
> - uint64_t addr;
> uint32_t vm;
> struct drm_xe_engine_class_instance hwe;
> uint32_t exec_queue_id;
> - uint32_t bo;
> + /* K slots (K BOs / addresses / mapped spinners / done fences) */
> + unsigned int slots;
> + uint64_t *addr;
> + uint32_t *bo;
> size_t bo_size;
> - struct xe_spin *spin;
> + struct xe_spin **spin;
> + uint32_t *done_fence;
> struct drm_xe_sync sync[1];
> struct drm_xe_exec exec;
> };
> @@ -78,43 +81,61 @@ struct subm_set {
> };
>
> static void subm_init(struct subm *s, int fd, int vf_num, uint64_t addr,
> - struct drm_xe_engine_class_instance hwe)
> + struct drm_xe_engine_class_instance hwe,
> + unsigned int inflight)
> {
> + uint64_t base, stride;
> +
> memset(s, 0, sizeof(*s));
> s->fd = fd;
> s->vf_num = vf_num;
> s->hwe = hwe;
> snprintf(s->id, sizeof(s->id), "VF%d %d:%d:%d", vf_num,
> hwe.engine_class, hwe.engine_instance, hwe.gt_id);
> - s->addr = addr ? addr : 0x1a0000;
> + s->slots = inflight ? inflight : 1;
> s->vm = xe_vm_create(s->fd, 0, 0);
> s->exec_queue_id = xe_exec_queue_create(s->fd, s->vm, &s->hwe, 0);
> s->bo_size = ALIGN(sizeof(struct xe_spin) + xe_cs_prefetch_size(s->fd),
> xe_get_default_alignment(s->fd));
> - s->bo = xe_bo_create(s->fd, s->vm, s->bo_size,
> - vram_if_possible(fd, s->hwe.gt_id),
> - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> - s->spin = xe_bo_map(s->fd, s->bo, s->bo_size);
> - xe_vm_bind_sync(s->fd, s->vm, s->bo, 0, s->addr, s->bo_size);
> - /* out fence */
> - s->sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> - s->sync[0].flags = DRM_XE_SYNC_FLAG_SIGNAL;
> - s->sync[0].handle = syncobj_create(s->fd, 0);
> - s->exec.num_syncs = 1;
> - s->exec.syncs = to_user_pointer(&s->sync[0]);
> + s->addr = calloc(s->slots, sizeof(*s->addr));
> + s->bo = calloc(s->slots, sizeof(*s->bo));
> + s->spin = calloc(s->slots, sizeof(*s->spin));
> + s->done_fence = calloc(s->slots, sizeof(*s->done_fence));
> +
> + igt_assert(s->addr && s->bo && s->spin && s->done_fence);
> +
> + base = addr ? addr : 0x1a0000;
> + stride = ALIGN(s->bo_size, 0x10000);
> + for (unsigned int i = 0; i < s->slots; i++) {
> + s->addr[i] = base + i * stride;
> + s->bo[i] = xe_bo_create(s->fd, s->vm, s->bo_size,
> + vram_if_possible(fd, s->hwe.gt_id),
> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + s->spin[i] = xe_bo_map(s->fd, s->bo[i], s->bo_size);
> + xe_vm_bind_sync(s->fd, s->vm, s->bo[i], 0, s->addr[i], s->bo_size);
> + s->done_fence[i] = syncobj_create(s->fd, 0);
> + }
> +
> s->exec.num_batch_buffer = 1;
> s->exec.exec_queue_id = s->exec_queue_id;
> - s->exec.address = s->addr;
> + /* s->exec.address set per submission */
> }
>
> static void subm_fini(struct subm *s)
> {
> - xe_vm_unbind_sync(s->fd, s->vm, 0, s->addr, s->bo_size);
> - gem_munmap(s->spin, s->bo_size);
> - gem_close(s->fd, s->bo);
> + for (unsigned int i = 0; i < s->slots; i++) {
> + xe_vm_unbind_sync(s->fd, s->vm, 0, s->addr[i], s->bo_size);
> + gem_munmap(s->spin[i], s->bo_size);
> + gem_close(s->fd, s->bo[i]);
> + if (s->done_fence[i])
> + syncobj_destroy(s->fd, s->done_fence[i]);
> + }
> xe_exec_queue_destroy(s->fd, s->exec_queue_id);
> xe_vm_destroy(s->fd, s->vm);
> - syncobj_destroy(s->fd, s->sync[0].handle);
> + free(s->addr);
> + free(s->bo);
> + free(s->spin);
> + free(s->done_fence);
> }
>
> static void subm_workload_init(struct subm *s, struct subm_work_desc *work)
> @@ -122,25 +143,36 @@ static void subm_workload_init(struct subm *s, struct subm_work_desc *work)
> s->work = *work;
> s->expected_ticks = xe_spin_nsec_to_ticks(s->fd, s->hwe.gt_id,
> s->work.duration_ms * 1000000);
> - xe_spin_init_opts(s->spin, .addr = s->addr, .preempt = s->work.preempt,
> - .ctx_ticks = s->expected_ticks);
> + for (unsigned int i = 0; i < s->slots; i++)
> + xe_spin_init_opts(s->spin[i], .addr = s->addr[i],
> + .preempt = s->work.preempt,
> + .ctx_ticks = s->expected_ticks);
> }
>
> -static void subm_wait(struct subm *s, uint64_t abs_timeout_nsec)
> +static void subm_wait_slot(struct subm *s, unsigned int slot, uint64_t abs_timeout_nsec)
> {
> - igt_assert(syncobj_wait(s->fd, &s->sync[0].handle, 1, abs_timeout_nsec,
> - 0, NULL));
> + igt_assert(syncobj_wait(s->fd, &s->done_fence[slot], 1,
> + abs_timeout_nsec, 0, NULL));
> }
>
> -static void subm_exec(struct subm *s)
> +static void subm_exec_slot(struct subm *s, unsigned int slot)
> {
> - syncobj_reset(s->fd, &s->sync[0].handle, 1);
> + struct timespec tv;
> +
> + syncobj_reset(s->fd, &s->done_fence[slot], 1);
> + memset(&s->sync[0], 0, sizeof(s->sync));
> + s->sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> + s->sync[0].flags = DRM_XE_SYNC_FLAG_SIGNAL;
> + s->sync[0].handle = s->done_fence[slot];
> + s->exec.num_syncs = 1;
> + s->exec.syncs = to_user_pointer(&s->sync[0]);
> + s->exec.address = s->addr[slot];
> xe_exec(s->fd, &s->exec);
> }
>
> -static bool subm_is_work_complete(struct subm *s)
> +static bool subm_is_work_complete(struct subm *s, unsigned int slot)
> {
> - return s->expected_ticks <= ~s->spin->ticks_delta;
> + return s->expected_ticks <= ~s->spin[slot]->ticks_delta;
> }
>
> static bool subm_is_exec_queue_banned(struct subm *s)
> @@ -157,6 +189,8 @@ static bool subm_is_exec_queue_banned(struct subm *s)
> static void subm_exec_loop(struct subm *s, struct subm_stats *stats,
> const struct subm_opts *opts)
> {
> + const unsigned int inflight = s->slots;
> + unsigned int submitted = 0;
> struct timespec tv;
> unsigned int i;
>
> @@ -165,16 +199,24 @@ static void subm_exec_loop(struct subm *s, struct subm_stats *stats,
> tv.tv_sec * (uint64_t)NSEC_PER_SEC + tv.tv_nsec;
> igt_debug("[%s] start_timestamp: %f\n", s->id, stats->start_timestamp * 1e-9);
>
> - for (i = 0; i < s->work.repeats; ++i) {
> - igt_gettime(&tv);
> + /* Prefill */
> + if (s->work.repeats) {
> + unsigned int can_prefill = min(inflight, s->work.repeats);
>
> - subm_exec(s);
> + for (i = 0; i < can_prefill; i++)
> + subm_exec_slot(s, i % inflight);
> + submitted = can_prefill;
> + }
>
> - subm_wait(s, INT64_MAX);
> + /* Process completions in order: sample i -> slot (i % inflight) */
> + for (i = 0; i < s->work.repeats; ++i) {
> + unsigned int slot = i % inflight;
>
> + igt_gettime(&tv);
> + subm_wait_slot(s, slot, INT64_MAX);
> igt_stats_push(&stats->samples, igt_nsec_elapsed(&tv));
>
> - if (!subm_is_work_complete(s)) {
> + if (!subm_is_work_complete(s, slot)) {
> stats->num_early_finish++;
>
> igt_debug("[%s] subm #%d early_finish=%u\n",
> @@ -183,6 +225,14 @@ static void subm_exec_loop(struct subm *s, struct subm_stats *stats,
> if (subm_is_exec_queue_banned(s))
> break;
> }
> +
> + /* Keep the pipeline full */
> + if (submitted < s->work.repeats) {
> + unsigned int next_slot = submitted % inflight;
> +
> + subm_exec_slot(s, next_slot);
> + submitted++;
> + }
> }
>
> igt_gettime(&tv);
> @@ -607,7 +657,7 @@ static void throughput_ratio(int pf_fd, int num_vfs, const struct subm_opts *opt
> igt_assert_fd(vf_fd);
> set->data[n].opts = opts;
> subm_init(&set->data[n].subm, vf_fd, vf_ids[n], 0,
> - xe_engine(vf_fd, 0)->instance);
> + xe_engine(vf_fd, 0)->instance, 1);
> subm_workload_init(&set->data[n].subm,
> &(struct subm_work_desc){
> .duration_ms = job_sched_params.duration_ms,
> @@ -702,7 +752,7 @@ static void nonpreempt_engine_resets(int pf_fd, int num_vfs,
> igt_assert_fd(vf_fd);
> set->data[n].opts = opts;
> subm_init(&set->data[n].subm, vf_fd, vf_ids[n], 0,
> - xe_engine(vf_fd, 0)->instance);
> + xe_engine(vf_fd, 0)->instance, 1);
> subm_workload_init(&set->data[n].subm,
> &(struct subm_work_desc){
> .duration_ms = duration_ms,
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
2025-08-25 8:22 [PATCH v3 i-g-t 0/3] tests/intel/xe_sriov_scheduling: Refactor submission/measurement Marcin Bernatowicz
` (2 preceding siblings ...)
2025-08-25 8:22 ` [PATCH v3 i-g-t 3/3] tests/intel/xe_sriov_scheduling: Make in-flight submissions configurable Marcin Bernatowicz
@ 2025-08-25 10:37 ` Patchwork
2025-08-25 10:49 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-08-25 10:37 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1692 bytes --]
== Series Details ==
Series: tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
URL : https://patchwork.freedesktop.org/series/153162/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8505_BAT -> XEIGTPW_13629_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_13629_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_vm@bind-execqueues-independent:
- {bat-ptl-vm}: [FAIL][1] ([Intel XE#5783]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/bat-ptl-vm/igt@xe_vm@bind-execqueues-independent.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/bat-ptl-vm/igt@xe_vm@bind-execqueues-independent.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* IGT: IGT_8505 -> IGTPW_13629
* Linux: xe-3607-cbc942aacf73e2198bbd9c7a2c31e866d0ce892b -> xe-3609-5481954bd63bd4d34a5acb2b89fb2caf55bb0695
IGTPW_13629: 13629
IGT_8505: 8505
xe-3607-cbc942aacf73e2198bbd9c7a2c31e866d0ce892b: cbc942aacf73e2198bbd9c7a2c31e866d0ce892b
xe-3609-5481954bd63bd4d34a5acb2b89fb2caf55bb0695: 5481954bd63bd4d34a5acb2b89fb2caf55bb0695
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/index.html
[-- Attachment #2: Type: text/html, Size: 2278 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
2025-08-25 8:22 [PATCH v3 i-g-t 0/3] tests/intel/xe_sriov_scheduling: Refactor submission/measurement Marcin Bernatowicz
` (3 preceding siblings ...)
2025-08-25 10:37 ` ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2) Patchwork
@ 2025-08-25 10:49 ` Patchwork
2025-08-25 12:41 ` ✗ Xe.CI.Full: failure " Patchwork
2025-08-25 13:27 ` ✗ i915.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-08-25 10:49 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3861 bytes --]
== Series Details ==
Series: tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
URL : https://patchwork.freedesktop.org/series/153162/
State : success
== Summary ==
CI Bug Log - changes from IGT_8505 -> IGTPW_13629
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_13629 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8505/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@reset:
- bat-atsm-1: [PASS][3] -> [ABORT][4] ([i915#14201])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8505/bat-atsm-1/igt@i915_selftest@live@reset.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/bat-atsm-1/igt@i915_selftest@live@reset.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8505/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8505/bat-arls-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/bat-arls-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-11: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8505/bat-dg2-11/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/bat-dg2-11/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][11] ([i915#12061] / [i915#14204]) -> [ABORT][12] ([i915#14201])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8505/bat-atsm-1/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][13] ([i915#14204]) -> [DMESG-FAIL][14] ([i915#13929])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8505/bat-atsm-1/igt@i915_selftest@live@mman.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8505 -> IGTPW_13629
* Linux: CI_DRM_17059 -> CI_DRM_17061
CI-20190529: 20190529
CI_DRM_17059: cbc942aacf73e2198bbd9c7a2c31e866d0ce892b @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_17061: 5481954bd63bd4d34a5acb2b89fb2caf55bb0695 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13629: 13629
IGT_8505: 8505
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/index.html
[-- Attachment #2: Type: text/html, Size: 5063 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
2025-08-25 8:22 [PATCH v3 i-g-t 0/3] tests/intel/xe_sriov_scheduling: Refactor submission/measurement Marcin Bernatowicz
` (4 preceding siblings ...)
2025-08-25 10:49 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-08-25 12:41 ` Patchwork
2025-08-25 13:27 ` ✗ i915.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-08-25 12:41 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 59993 bytes --]
== Series Details ==
Series: tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
URL : https://patchwork.freedesktop.org/series/153162/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8505_FULL -> XEIGTPW_13629_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_13629_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_13629_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_13629_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_threads@threads-cm-basic:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-1/igt@xe_exec_threads@threads-cm-basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-2/igt@xe_exec_threads@threads-cm-basic.html
* igt@xe_pmu@gt-frequency:
- shard-lnl: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-lnl-5/igt@xe_pmu@gt-frequency.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-7/igt@xe_pmu@gt-frequency.html
Known issues
------------
Here are the changes found in XEIGTPW_13629_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#607])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +6 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#367]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2907])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +181 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +6 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#3862])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][22] ([Intel XE#3862])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#3432])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +10 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][25] ([Intel XE#1727] / [Intel XE#3113])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][26] ([Intel XE#3124])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][29] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#4417]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373]) +7 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-436/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2325])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-4/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#306])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_chamelium_frames@dp-crc-single.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#373]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-5/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1178])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#1178])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-436/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#308]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2321]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2321])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1424])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2320]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#309]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2291]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2291])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-bmg: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#5354]) +2 other tests dmesg-warn
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-4/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-2/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4354])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-4/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#4356])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-433/igt@kms_dp_link_training@uhbr-sst.html
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#4354])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2372])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_feature_discovery@chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#701])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#701])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2375])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1421])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2316]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2316]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][60] ([Intel XE#301]) +1 other test fail
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
- shard-bmg: [PASS][61] -> [INCOMPLETE][62] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@c-edp1:
- shard-lnl: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#5736]) +1 other test incomplete
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-lnl-7/igt@kms_flip@flip-vs-suspend@c-edp1.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-4/igt@kms_flip@flip-vs-suspend@c-edp1.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [PASS][65] -> [INCOMPLETE][66] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-433/igt@kms_flip@flip-vs-suspend@d-dp4.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1401] / [Intel XE#1745])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1401])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2293]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#651]) +22 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#5390]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2312]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2311]) +13 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#651]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2313]) +13 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#653]) +23 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2352])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#1503])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-8/igt@kms_hdr@static-toggle-dpms.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#3012])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#2927])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2501])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#356])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#356])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#455]) +9 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#5021])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#5021])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-432/igt@kms_plane_multiple@2x-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#4596])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-1/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#2571])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#718])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2499])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1489] / [Intel XE#5899]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#1489] / [Intel XE#5899]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#2893] / [Intel XE#5899])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1122] / [Intel XE#5899])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-436/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1406] / [Intel XE#5899]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@kms_psr@fbc-pr-sprite-plane-move.html
* igt@kms_psr@fbc-psr-cursor-render:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#5784] / [Intel XE#5899])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-7/igt@kms_psr@fbc-psr-cursor-render.html
* igt@kms_psr@pr-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2234] / [Intel XE#2850] / [Intel XE#5899]) +11 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2850] / [Intel XE#5899] / [Intel XE#929]) +11 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@kms_psr@psr-dpms.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2414] / [Intel XE#5899])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#3414])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2330])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1435])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#1435])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2168])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-433/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1499]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1499])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1126])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_eu_stall@unprivileged-access:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#5626])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-433/igt@xe_eu_stall@unprivileged-access.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#4837]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-4/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#4837]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-4/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-dg2-set2: [PASS][118] -> [SKIP][119] ([Intel XE#1392]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1392])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2322]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-basic-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#288]) +14 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#4837]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-433/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_system_allocator@fault-threads-same-page-benchmark:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#4915]) +160 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-433/igt@xe_exec_system_allocator@fault-threads-same-page-benchmark.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#4943]) +5 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#4943]) +15 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-huge.html
* igt@xe_exec_threads@threads-hang-fd-rebind:
- shard-dg2-set2: [PASS][127] -> [DMESG-WARN][128] ([Intel XE#3876]) +1 other test dmesg-warn
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-436/igt@xe_exec_threads@threads-hang-fd-rebind.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-rebind.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#255])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2459] / [Intel XE#2596])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@xe_media_fill@media-fill.html
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#560])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-466/igt@xe_media_fill@media-fill.html
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#560])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-1/igt@xe_media_fill@media-fill.html
* igt@xe_oa@invalid-create-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#3573]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-436/igt@xe_oa@invalid-create-userspace-config.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#5103])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-433/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1337])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-bmg: [PASS][136] -> [ABORT][137] ([Intel XE#4760] / [Intel XE#5545])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-2/igt@xe_pm@d3hot-mmap-vram.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-2/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#4650])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-433/igt@xe_pmu@all-fn-engine-activity-load.html
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#4650])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-5/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#4733])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-436/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#944]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@multigpu-query-topology:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#944])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-7/igt@xe_query@multigpu-query-topology.html
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#944])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-2/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#4130])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-434/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#4273])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-434/igt@xe_sriov_flr@flr-twice.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][146] ([Intel XE#911]) -> [PASS][147] +2 other tests pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][148] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][150] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [INCOMPLETE][152] ([Intel XE#3124]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][154] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][156] ([Intel XE#4633]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][158] ([Intel XE#1475]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][160] ([Intel XE#3009]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_dp_aux_dev.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][162] ([Intel XE#2316]) -> [PASS][163] +3 other tests pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][164] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][166] ([Intel XE#301]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][168] ([Intel XE#3012]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [SKIP][170] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-5/igt@kms_plane_scaling@intel-max-src-size.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-3/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg2-set2: [SKIP][172] ([Intel XE#455]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][174] ([Intel XE#718]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2-set2: [SKIP][176] ([Intel XE#836]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-436/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][178] ([Intel XE#1435]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][180] ([Intel XE#4459]) -> [PASS][181] +1 other test pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][182] ([Intel XE#1392]) -> [PASS][183] +8 other tests pass
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* {igt@xe_exec_system_allocator@many-stride-malloc-prefetch}:
- shard-bmg: [WARN][184] ([Intel XE#5786]) -> [PASS][185]
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race:
- shard-bmg: [DMESG-FAIL][186] ([Intel XE#3876]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-1/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-2/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race.html
* {igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1}:
- shard-bmg: [ABORT][188] ([Intel XE#3970]) -> [PASS][189] +1 other test pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-8/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][190] ([Intel XE#4819]) -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-434/igt@xe_pmu@gt-frequency.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-466/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][192] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][193] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][194] ([Intel XE#1178]) -> [SKIP][195] ([Intel XE#2341])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-3/igt@kms_content_protection@atomic-dpms.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][196] ([Intel XE#2341]) -> [FAIL][197] ([Intel XE#1178])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][198] ([Intel XE#2311]) -> [SKIP][199] ([Intel XE#2312]) +10 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][200] ([Intel XE#2312]) -> [SKIP][201] ([Intel XE#2311]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][202] ([Intel XE#5390]) -> [SKIP][203] ([Intel XE#2312]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][204] ([Intel XE#2312]) -> [SKIP][205] ([Intel XE#5390]) +6 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][206] ([Intel XE#2313]) -> [SKIP][207] ([Intel XE#2312]) +12 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][208] ([Intel XE#2312]) -> [SKIP][209] ([Intel XE#2313]) +13 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][210] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][211] ([Intel XE#3544])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][212] ([Intel XE#5021]) -> [SKIP][213] ([Intel XE#4596])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][214] ([Intel XE#2426]) -> [FAIL][215] ([Intel XE#1729])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][216] ([Intel XE#1173]) -> [SKIP][217] ([Intel XE#1061])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8505/shard-dg2-433/igt@xe_peer2peer@write.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/shard-dg2-432/igt@xe_peer2peer@write.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5736
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#5784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5784
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5899
[Intel XE#5977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5977
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8505 -> IGTPW_13629
* Linux: xe-3607-cbc942aacf73e2198bbd9c7a2c31e866d0ce892b -> xe-3609-5481954bd63bd4d34a5acb2b89fb2caf55bb0695
IGTPW_13629: 13629
IGT_8505: 8505
xe-3607-cbc942aacf73e2198bbd9c7a2c31e866d0ce892b: cbc942aacf73e2198bbd9c7a2c31e866d0ce892b
xe-3609-5481954bd63bd4d34a5acb2b89fb2caf55bb0695: 5481954bd63bd4d34a5acb2b89fb2caf55bb0695
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13629/index.html
[-- Attachment #2: Type: text/html, Size: 69859 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
2025-08-25 8:22 [PATCH v3 i-g-t 0/3] tests/intel/xe_sriov_scheduling: Refactor submission/measurement Marcin Bernatowicz
` (5 preceding siblings ...)
2025-08-25 12:41 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-08-25 13:27 ` Patchwork
2025-08-26 14:51 ` Bernatowicz, Marcin
6 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2025-08-25 13:27 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 165013 bytes --]
== Series Details ==
Series: tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
URL : https://patchwork.freedesktop.org/series/153162/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17061_full -> IGTPW_13629_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_13629_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_13629_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_13629/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_13629_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-snb: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-snb1/igt@kms_fbcon_fbt@fbc-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-snb6/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-tglu: [PASS][3] -> [ABORT][4] +2 other tests abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-tglu-3/igt@kms_fbcon_fbt@fbc-suspend.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a1:
- shard-glk: NOTRUN -> [FAIL][5] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a1.html
Known issues
------------
Here are the changes found in IGTPW_13629_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2-9: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@api_intel_bb@crc32.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_13629/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@device_reset@cold-reset-bound.html
* igt@fbdev@pan:
- shard-rkl: [PASS][10] -> [SKIP][11] ([i915#14544] / [i915#2582]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@fbdev@pan.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@fbdev@pan.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#14544] / [i915#3555] / [i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#12392] / [i915#13356])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_compute@compute-square:
- shard-dg2: NOTRUN -> [FAIL][18] ([i915#13665])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-7/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][21] -> [FAIL][22] ([i915#9561]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2-9: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_shared@exec-single-timeline@vcs0:
- shard-rkl: [PASS][25] -> [DMESG-WARN][26] ([i915#12964]) +45 other tests dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@gem_ctx_shared@exec-single-timeline@vcs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@gem_ctx_shared@exec-single-timeline@vcs0.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2-9: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][29] -> [FAIL][30] ([i915#5784])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-14/igt@gem_eio@reset-stress.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#14544] / [i915#4525])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4525])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][34] ([i915#6334]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][35] ([i915#11965]) +4 other tests fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@submit3:
- shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#4812])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2-9: NOTRUN -> [SKIP][38] ([i915#3539])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#5107])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#14544] / [i915#3281])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-write-cpu-noreloc:
- shard-dg2-9: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_exec_reloc@basic-write-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-active:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gem_exec_reloc@basic-write-wc-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2-9: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][50] -> [INCOMPLETE][51] ([i915#11441] / [i915#13304]) +1 other test incomplete
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4860])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk8/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#14544] / [i915#4613])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@massive:
- shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4565])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][61] -> [DMESG-WARN][62] ([i915#5493]) +1 other test dmesg-warn
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#284])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@close-race:
- shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#4077]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +14 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@bad-object:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@coherency:
- shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4083])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_pread@self:
- shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_pread@self.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: [PASS][73] -> [TIMEOUT][74] ([i915#12964])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@gem_pxp@fail-invalid-protected-context.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#13398])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: [PASS][76] -> [TIMEOUT][77] ([i915#12917] / [i915#12964])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-12/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-rkl: [PASS][80] -> [SKIP][81] ([i915#14544] / [i915#4270])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@read-write:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@y-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#5190] / [i915#8428]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][85] +251 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#14544] / [i915#3282])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][89] ([i915#13809])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk1/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_basic:
- shard-dg2-9: NOTRUN -> [SKIP][90] ([i915#4079])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_tiled_pread_basic.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2-9: NOTRUN -> [SKIP][93] ([i915#3297]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#3297])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#14544] / [i915#2527])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#2856]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@busy-idle@vecs0:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#14073]) +15 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@i915_drm_fdinfo@busy-idle@vecs0.html
* igt@i915_drm_fdinfo@busy@rcs0:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#14073]) +5 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@i915_drm_fdinfo@busy@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#14118])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#14118]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#13786])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@i915_fb_tiling@basic-x-tiling.html
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#13786])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@i915_fb_tiling@basic-x-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#13786])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-1/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][108] -> [DMESG-WARN][109] ([i915#13029] / [i915#14545])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-17/igt@i915_module_load@reload-no-display.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-dg2-9: NOTRUN -> [DMESG-WARN][110] ([i915#14545])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#14544] / [i915#8399])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#6590]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-5/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#14498])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle.html
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#14498])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#11681])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#5723])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [PASS][117] -> [DMESG-FAIL][118] ([i915#12942]) +1 other test dmesg-fail
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@i915_selftest@live@gt_pm.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@i915_selftest@live@gt_pm.html
* igt@i915_suspend@forcewake:
- shard-glk10: NOTRUN -> [INCOMPLETE][119] ([i915#4817])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@i915_suspend@forcewake.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][120] ([i915#4817]) +1 other test incomplete
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk8/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#7707])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4212]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4215] / [i915#5190])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4215])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#4212]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2-9: NOTRUN -> [SKIP][126] ([i915#4212])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4212])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#12454] / [i915#12712])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][129] ([i915#1769])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5286])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#5286]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][132] -> [FAIL][133] ([i915#5138])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#14544]) +10 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#5190])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2-9: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +6 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][142] +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5190]) +11 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#12313])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12313])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#12313])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#6095]) +34 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][149] ([i915#12313])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +29 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#12805])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][153] ([i915#6095]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#10307] / [i915#6095]) +152 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +14 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#6095]) +43 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#14098] / [i915#6095]) +41 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#6095]) +129 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#13781]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#3742])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-9: NOTRUN -> [SKIP][162] +9 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#14544] / [i915#7828])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +6 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@ctm-negative:
- shard-rkl: [PASS][171] -> [SKIP][172] ([i915#12655] / [i915#14544]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_color@ctm-negative.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_color@ctm-negative.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#7118] / [i915#9424]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3116] / [i915#3299])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3299]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#3116] / [i915#3299])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#7118] / [i915#9424])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#9424]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#13049])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#13049])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [PASS][181] -> [FAIL][182] ([i915#13566]) +3 other tests fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x256:
- shard-rkl: [PASS][183] -> [SKIP][184] ([i915#14544]) +51 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x256.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#13049])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#13049]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#3555]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][189] ([i915#13566]) +3 other tests fail
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555]) +5 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#3555])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8814])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#3555])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#13046] / [i915#5354]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][195] ([i915#13046] / [i915#5354]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#4103] / [i915#4213]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#4103])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-glk10: NOTRUN -> [SKIP][198] ([i915#11190]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-glk: [PASS][199] -> [SKIP][200] +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][201] +12 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [PASS][202] -> [FAIL][203] ([i915#2346])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][204] -> [FAIL][205] ([i915#2346])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#4103] / [i915#4213])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3804])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#13749])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#13749])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#13749])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-9: NOTRUN -> [SKIP][211] ([i915#13748])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#13707])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#8812])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-6/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3840] / [i915#9688])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_dsc@dsc-with-bpc.html
- shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][219] ([i915#9878])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][220] ([i915#3469])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-1x:
- shard-rkl: [PASS][221] -> [SKIP][222] ([i915#14544] / [i915#9738])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_feature_discovery@display-1x.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_feature_discovery@display-1x.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#1839])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#658])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#4881])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@kms_fence_pin_leak.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#4881])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@kms_fence_pin_leak.html
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#4881])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-8/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#9934]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#9934])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][231] ([i915#12745] / [i915#4839])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#4839])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9934]) +8 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637] / [i915#9934]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#9934])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-rkl: [PASS][236] -> [SKIP][237] ([i915#14544] / [i915#3637]) +7 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_flip@basic-flip-vs-wf_vblank.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-glk: NOTRUN -> [FAIL][238] ([i915#10826])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#14544] / [i915#3555])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-rkl: [PASS][242] -> [SKIP][243] ([i915#14544] / [i915#3555]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#2672]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#2587] / [i915#2672])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555] / [i915#5190])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#2672]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555] / [i915#5190])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][255] ([i915#2672]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
- shard-dg1: [PASS][256] -> [DMESG-WARN][257] ([i915#4391] / [i915#4423])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [PASS][258] -> [SKIP][259] ([i915#14544] / [i915#1849] / [i915#5354]) +14 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#5354]) +23 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#1825]) +14 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-snb: NOTRUN -> [SKIP][262] +13 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#1825]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: [PASS][264] -> [FAIL][265] ([i915#6880])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-dg2-9: NOTRUN -> [FAIL][266] ([i915#6880])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#3458]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#3458]) +16 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#3023]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][270] ([i915#8708]) +14 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#8708]) +15 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544] / [i915#1849] / [i915#5354]) +5 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#8708]) +7 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#10055]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][275] +43 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-9: NOTRUN -> [SKIP][276] ([i915#3458]) +9 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][277] ([i915#5354]) +17 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][278] +44 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_hdr@bpc-switch.html
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: [PASS][281] -> [SKIP][282] ([i915#3555] / [i915#8228])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#12713])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@zero-vdisplay:
- shard-rkl: [PASS][287] -> [SKIP][288] ([i915#14544] / [i915#3555] / [i915#8826])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_invalid_mode@zero-vdisplay.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_invalid_mode@zero-vdisplay.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#12394])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#12394])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#12339])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][292] -> [SKIP][293] ([i915#12388])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#10656])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#12339])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- shard-rkl: [PASS][296] -> [SKIP][297] ([i915#11190] / [i915#14544])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-rkl: [PASS][298] -> [SKIP][299] ([i915#14544] / [i915#9581])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_plane@planar-pixel-format-settings.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][300] ([i915#13026]) +1 other test incomplete
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane@plane-position-covered:
- shard-rkl: [PASS][301] -> [SKIP][302] ([i915#14544] / [i915#8825]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_plane@plane-position-covered.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk10: NOTRUN -> [SKIP][303] +201 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8821])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2-9: NOTRUN -> [SKIP][305] ([i915#13958])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-9: NOTRUN -> [SKIP][306] ([i915#14259])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#14259])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#14259])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#6953])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#12247]) +9 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#12247]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-rkl: [PASS][313] -> [SKIP][314] ([i915#14544] / [i915#8152])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-rkl: [PASS][315] -> [SKIP][316] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- shard-rkl: [PASS][317] -> [SKIP][318] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-rkl: [PASS][319] -> [SKIP][320] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- shard-rkl: [PASS][321] -> [SKIP][322] ([i915#12247] / [i915#14544]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#9812])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9812])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][325] -> [SKIP][326] ([i915#9340])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#8430])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@cursor:
- shard-rkl: [PASS][328] -> [SKIP][329] ([i915#14544] / [i915#1849])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_pm_rpm@cursor.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#9519])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#9519])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#4077]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_pm_rpm@fences.html
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#4077])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-2/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][334] -> [DMESG-WARN][335] ([i915#4423]) +3 other tests dmesg-warn
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-17/igt@kms_pm_rpm@i2c.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][336] ([i915#9519])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][337] -> [SKIP][338] ([i915#14544] / [i915#9519])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][339] -> [SKIP][340] ([i915#9519]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#9519])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#9519]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@pm-caching:
- shard-rkl: [PASS][343] -> [SKIP][344] ([i915#12916] / [i915#14544])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_pm_rpm@pm-caching.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_rpm@pm-caching.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: [PASS][345] -> [INCOMPLETE][346] ([i915#10553])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk1/igt@kms_pm_rpm@system-suspend-modeset.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_properties@plane-properties-legacy:
- shard-rkl: [PASS][347] -> [SKIP][348] ([i915#11521] / [i915#14544])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_properties@plane-properties-legacy.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#11520]) +3 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#11520]) +2 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#11520]) +6 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#11520] / [i915#14544])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][353] ([i915#11520]) +4 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#11520]) +3 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2-9: NOTRUN -> [SKIP][355] ([i915#11520]) +2 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][356] ([i915#11520]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][357] ([i915#11520]) +6 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#9683])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9683])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-9: NOTRUN -> [SKIP][360] ([i915#9683])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +22 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-pr-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +4 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr-sprite-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +14 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_psr@fbc-psr-sprite-mmap-cpu.html
* igt@kms_psr@fbc-psr2-cursor-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +5 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html
* igt@kms_psr@psr-cursor-render:
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#9732]) +5 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-3/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9732]) +6 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#9685])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#5289])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-9: NOTRUN -> [SKIP][370] ([i915#12755]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#5190]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#5289]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][373] ([i915#13179]) +1 other test abort
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@basic:
- shard-tglu-1: NOTRUN -> [FAIL][374] ([i915#5465]) +2 other tests fail
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_setmode@basic.html
- shard-mtlp: [PASS][375] -> [FAIL][376] ([i915#5465]) +1 other test fail
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-mtlp-4/igt@kms_setmode@basic.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-5/igt@kms_setmode@basic.html
- shard-rkl: [PASS][377] -> [FAIL][378] ([i915#5465])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_setmode@basic.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][379] ([i915#5465]) +1 other test fail
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg2-9: NOTRUN -> [SKIP][380] ([i915#3555]) +6 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#8623])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-9: NOTRUN -> [SKIP][382] ([i915#8623])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@query-forked-busy-hang@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][383] ([i915#12964]) +12 other tests dmesg-warn
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_vblank@query-forked-busy-hang@pipe-b-hdmi-a-1.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#3555]) +3 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][385] ([i915#9906])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html
- shard-dg2-9: NOTRUN -> [SKIP][386] ([i915#9906])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#11920])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][388] ([i915#11920])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#9906])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][390] ([i915#3555] / [i915#9906])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu-1: NOTRUN -> [SKIP][391] ([i915#9906]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-9: NOTRUN -> [SKIP][392] ([i915#2437])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][393] ([i915#2437])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][394] ([i915#2436])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][395] ([i915#7387])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][396] +13 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@frequency:
- shard-dg2: [PASS][397] -> [FAIL][398] ([i915#12549] / [i915#6806]) +1 other test fail
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@perf_pmu@frequency.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@perf_pmu@frequency.html
- shard-dg1: [PASS][399] -> [FAIL][400] ([i915#12549] / [i915#6806]) +1 other test fail
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-18/igt@perf_pmu@frequency.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@perf_pmu@frequency.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][401] ([i915#14433])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@perf_pmu@module-unload.html
- shard-glk10: NOTRUN -> [FAIL][402] ([i915#14433])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][403] ([i915#13356] / [i915#14242])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@perf_pmu@rc6-suspend.html
- shard-rkl: [PASS][404] -> [INCOMPLETE][405] ([i915#13520])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@perf_pmu@rc6-suspend.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][406] ([i915#3708])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][407] ([i915#3708])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][408] ([i915#3291] / [i915#3708])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][409] ([i915#3291] / [i915#3708])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][410] ([i915#3708])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2-9: NOTRUN -> [SKIP][411] ([i915#3708])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-9: NOTRUN -> [SKIP][412] ([i915#9917])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: NOTRUN -> [SKIP][413] ([i915#9917])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][414] ([i915#4818])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][415] ([i915#11713] / [i915#14756]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-tglu-4/igt@gem_exec_big@single.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@gem_exec_big@single.html
* igt@gem_exec_capture@pi:
- shard-rkl: [DMESG-WARN][417] ([i915#12964]) -> [PASS][418] +20 other tests pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@gem_exec_capture@pi.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@gem_exec_capture@pi.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk: [INCOMPLETE][419] ([i915#11441] / [i915#13196]) -> [PASS][420] +1 other test pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk1/igt@gem_exec_suspend@basic-s3.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk6/igt@gem_exec_suspend@basic-s3.html
* igt@gem_mmap_wc@set-cache-level:
- shard-rkl: [SKIP][421] ([i915#14544] / [i915#1850]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [TIMEOUT][423] ([i915#12917] / [i915#12964]) -> [PASS][424] +2 other tests pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk10: [INCOMPLETE][425] ([i915#4817]) -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk10/igt@i915_suspend@fence-restore-untiled.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][427] ([i915#5138]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_color@legacy-gamma-reset:
- shard-rkl: [SKIP][429] ([i915#12655] / [i915#14544]) -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_color@legacy-gamma-reset.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_color@legacy-gamma-reset.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][431] ([i915#13566]) -> [PASS][432]
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][433] ([i915#13566]) -> [PASS][434] +3 other tests pass
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-rkl: [FAIL][435] ([i915#2346]) -> [PASS][436]
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [SKIP][437] ([i915#3555]) -> [PASS][438]
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-rkl: [SKIP][439] ([i915#14544] / [i915#3637]) -> [PASS][440] +4 other tests pass
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip@flip-vs-rmfb-interruptible.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-rkl: [SKIP][441] ([i915#14544] / [i915#3555]) -> [PASS][442] +1 other test pass
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2: [FAIL][443] ([i915#6880]) -> [PASS][444]
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [DMESG-WARN][445] ([i915#12917] / [i915#12964]) -> [PASS][446]
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-glk: [SKIP][447] -> [PASS][448] +1 other test pass
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-rkl: [SKIP][449] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][450] +9 other tests pass
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [SKIP][451] ([i915#3555] / [i915#8228]) -> [PASS][452] +1 other test pass
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-rkl: [SKIP][453] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][454] +1 other test pass
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_invalid_mode@zero-vdisplay:
- shard-dg1: [DMESG-WARN][455] ([i915#4423]) -> [PASS][456] +1 other test pass
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-17/igt@kms_invalid_mode@zero-vdisplay.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_invalid_mode@zero-vdisplay.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- shard-rkl: [SKIP][457] ([i915#11190] / [i915#14544]) -> [PASS][458]
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_pipe_crc_basic@hang-read-crc.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [INCOMPLETE][459] ([i915#13476]) -> [PASS][460] +1 other test pass
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane@plane-position-hole:
- shard-rkl: [SKIP][461] ([i915#14544] / [i915#8825]) -> [PASS][462]
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane@plane-position-hole.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_plane@plane-position-hole.html
* igt@kms_plane_alpha_blend@constant-alpha-mid:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#7294]) -> [PASS][464]
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-mid.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_plane_alpha_blend@constant-alpha-mid.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [SKIP][465] ([i915#6953] / [i915#9423]) -> [PASS][466]
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-rkl: [SKIP][467] ([i915#14544] / [i915#8152]) -> [PASS][468]
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- shard-rkl: [SKIP][469] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][470] +4 other tests pass
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- shard-rkl: [SKIP][471] ([i915#12247] / [i915#14544]) -> [PASS][472] +3 other tests pass
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-rkl: [SKIP][473] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][474] +1 other test pass
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#9519]) -> [PASS][476]
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-rkl: [SKIP][477] ([i915#14544] / [i915#1849]) -> [PASS][478]
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_pm_rpm@fences.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_pm_rpm@fences.html
* igt@kms_properties@crtc-properties-legacy:
- shard-rkl: [SKIP][479] ([i915#11521] / [i915#14544]) -> [PASS][480]
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_properties@crtc-properties-legacy.html
* igt@kms_rmfb@rmfb-ioctl:
- shard-rkl: [SKIP][481] ([i915#14544]) -> [PASS][482] +37 other tests pass
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_rmfb@rmfb-ioctl.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_rmfb@rmfb-ioctl.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [INCOMPLETE][483] ([i915#12276]) -> [PASS][484] +1 other test pass
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [FAIL][485] ([i915#4349]) -> [PASS][486] +1 other test pass
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [FAIL][487] ([i915#4349]) -> [PASS][488] +1 other test pass
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@perf_pmu@most-busy-check-all.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][489] ([i915#8411]) -> [SKIP][490] ([i915#14544] / [i915#8411])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#8411]) -> [SKIP][492] ([i915#8411]) +1 other test skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][493] ([i915#11078]) -> [SKIP][494] ([i915#11078] / [i915#14544])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: [SKIP][495] ([i915#3281]) -> [SKIP][496] ([i915#14544] / [i915#3281]) +3 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][497] ([i915#14544] / [i915#7697]) -> [SKIP][498] ([i915#7697])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][499] ([i915#14544] / [i915#8562]) -> [SKIP][500] ([i915#8562])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][501] ([i915#280]) -> [SKIP][502] ([i915#14544] / [i915#280])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#4525]) -> [SKIP][504] ([i915#4525]) +2 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_exec_balancer@parallel.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: [SKIP][505] ([i915#4525]) -> [SKIP][506] ([i915#14544] / [i915#4525])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-in-fence.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#3281]) -> [SKIP][508] ([i915#3281]) +7 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: [SKIP][509] ([i915#4613]) -> [SKIP][510] ([i915#14544] / [i915#4613]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#4613]) -> [SKIP][512] ([i915#4613])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: [SKIP][513] ([i915#14544] / [i915#3282]) -> [SKIP][514] ([i915#3282]) +4 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][515] ([i915#3282]) -> [SKIP][516] ([i915#14544] / [i915#3282]) +6 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@gem_pread@snoop.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_pread@snoop.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][517] ([i915#13717]) -> [TIMEOUT][518] ([i915#12917] / [i915#12964])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#3297]) -> [SKIP][520] ([i915#3297]) +1 other test skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: [SKIP][521] ([i915#3297]) -> [SKIP][522] ([i915#14544] / [i915#3297]) +2 other tests skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#2527]) -> [SKIP][524] ([i915#2527]) +2 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: [SKIP][525] ([i915#2527]) -> [SKIP][526] ([i915#14544] / [i915#2527]) +2 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][527] ([i915#14544] / [i915#6412]) -> [SKIP][528] ([i915#6412])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@i915_module_load@resize-bar.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#4387]) -> [SKIP][530] ([i915#4387])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [DMESG-WARN][531] ([i915#12964]) -> [INCOMPLETE][532] ([i915#12964] / [i915#4817])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][533] ([i915#7707]) -> [SKIP][534] ([i915#14544] / [i915#7707])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@intel_hwmon@hwmon-read.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][535] ([i915#1769] / [i915#3555]) -> [SKIP][536] ([i915#14544])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: [SKIP][537] ([i915#5286]) -> [SKIP][538] ([i915#14544]) +7 other tests skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][539] ([i915#14544]) -> [SKIP][540] ([i915#5286]) +4 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: [SKIP][541] ([i915#14544]) -> [SKIP][542] ([i915#3638])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: [SKIP][543] ([i915#3638]) -> [SKIP][544] ([i915#14544]) +1 other test skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][545] ([i915#12313]) -> [SKIP][546] ([i915#14544]) +1 other test skip
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][547] ([i915#14544]) -> [SKIP][548] ([i915#14098] / [i915#6095]) +7 other tests skip
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][549] ([i915#12805]) -> [SKIP][550] ([i915#14544])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][551] ([i915#14544]) -> [SKIP][552] ([i915#12313]) +1 other test skip
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][553] ([i915#14098] / [i915#6095]) -> [SKIP][554] ([i915#6095])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][555] ([i915#14098] / [i915#6095]) -> [SKIP][556] ([i915#14544]) +10 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][557] ([i915#6095]) -> [SKIP][558] ([i915#14098] / [i915#6095]) +1 other test skip
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: [SKIP][559] ([i915#3742]) -> [SKIP][560] ([i915#14544] / [i915#3742])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_cdclk@plane-scaling.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: [SKIP][561] ([i915#11151] / [i915#7828]) -> [SKIP][562] ([i915#11151] / [i915#14544] / [i915#7828]) +6 other tests skip
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][563] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][564] ([i915#11151] / [i915#7828]) +5 other tests skip
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][565] ([i915#7118] / [i915#9424]) -> [SKIP][566] ([i915#14544]) +1 other test skip
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: [SKIP][567] ([i915#9424]) -> [SKIP][568] ([i915#14544])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_content_protection@content-type-change.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: [SKIP][569] ([i915#14544]) -> [SKIP][570] ([i915#3116])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: [SKIP][571] ([i915#14544]) -> [SKIP][572] ([i915#13049]) +1 other test skip
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: [SKIP][573] ([i915#14544]) -> [SKIP][574] ([i915#3555])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: [FAIL][575] ([i915#13566]) -> [SKIP][576] ([i915#14544])
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][577] ([i915#13049]) -> [SKIP][578] ([i915#14544]) +3 other tests skip
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][579] ([i915#3555]) -> [SKIP][580] ([i915#14544])
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [SKIP][581] ([i915#14544]) -> [FAIL][582] ([i915#13566]) +1 other test fail
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][583] ([i915#14544]) -> [SKIP][584] +21 other tests skip
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: [SKIP][585] -> [SKIP][586] ([i915#14544]) +20 other tests skip
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: [SKIP][587] ([i915#14544]) -> [SKIP][588] ([i915#9067])
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][589] ([i915#4103]) -> [SKIP][590] ([i915#14544])
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][591] ([i915#13691]) -> [SKIP][592] ([i915#14544])
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_display_modes@extended-mode-basic.html
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: [SKIP][593] ([i915#3555] / [i915#3840]) -> [SKIP][594] ([i915#11190] / [i915#14544])
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_dsc@dsc-basic.html
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][595] ([i915#14544]) -> [SKIP][596] ([i915#3840])
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: [SKIP][597] ([i915#14544]) -> [SKIP][598] ([i915#3555] / [i915#3840])
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: [SKIP][599] ([i915#14544] / [i915#1839]) -> [SKIP][600] ([i915#1839])
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: [SKIP][601] ([i915#1839]) -> [SKIP][602] ([i915#14544] / [i915#1839])
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_feature_discovery@display-4x.html
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][603] ([i915#9337]) -> [SKIP][604] ([i915#14544] / [i915#9337])
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-rkl: [SKIP][605] ([i915#9934]) -> [SKIP][606] ([i915#14544] / [i915#9934]) +5 other tests skip
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-rkl: [SKIP][607] ([i915#14544] / [i915#9934]) -> [SKIP][608] ([i915#9934]) +6 other tests skip
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-rkl: [DMESG-WARN][609] ([i915#12964]) -> [SKIP][610] ([i915#14544] / [i915#3637]) +1 other test skip
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-rkl: [SKIP][611] ([i915#14544] / [i915#3637]) -> [DMESG-WARN][612] ([i915#12964])
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg1: [SKIP][613] ([i915#2672] / [i915#3555]) -> [SKIP][614] ([i915#2672] / [i915#3555] / [i915#4423])
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: [SKIP][615] ([i915#2587] / [i915#2672]) -> [SKIP][616] ([i915#2587] / [i915#2672] / [i915#4423])
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: [SKIP][617] ([i915#14544] / [i915#3555]) -> [SKIP][618] ([i915#2672] / [i915#3555]) +1 other test skip
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: [SKIP][619] ([i915#2672] / [i915#3555]) -> [SKIP][620] ([i915#14544] / [i915#3555]) +4 other tests skip
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][621] ([i915#1825]) -> [SKIP][622] ([i915#14544] / [i915#1849] / [i915#5354]) +32 other tests skip
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][623] ([i915#3023]) -> [SKIP][624] ([i915#14544] / [i915#1849] / [i915#5354]) +23 other tests skip
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][625] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][626] ([i915#3023]) +15 other tests skip
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][627] ([i915#10433] / [i915#3458]) -> [SKIP][628] ([i915#3458]) +1 other test skip
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-dg1: [SKIP][629] ([i915#3458]) -> [SKIP][630] ([i915#3458] / [i915#4423])
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][631] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][632] ([i915#1825]) +28 other tests skip
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: [SKIP][633] ([i915#10656]) -> [SKIP][634] ([i915#10656] / [i915#14544])
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: [SKIP][635] ([i915#12388]) -> [SKIP][636] ([i915#12388] / [i915#14544])
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_joiner@basic-force-big-joiner.html
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: [SKIP][637] ([i915#14544]) -> [SKIP][638] ([i915#13958])
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: [SKIP][639] ([i915#14544]) -> [SKIP][640] ([i915#14259])
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: [SKIP][641] ([i915#14259] / [i915#4423]) -> [SKIP][642] ([i915#14259])
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: [SKIP][643] ([i915#5354]) -> [SKIP][644] ([i915#14544] / [i915#5354]) +1 other test skip
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: [SKIP][645] ([i915#3828]) -> [SKIP][646] ([i915#14544] / [i915#3828])
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_pm_dc@dc5-retention-flops.html
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][647] ([i915#9685]) -> [SKIP][648] ([i915#14544] / [i915#9685]) +1 other test skip
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_pm_dc@dc6-psr.html
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][649] ([i915#14544] / [i915#4281]) -> [SKIP][650] ([i915#3361])
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [DMESG-WARN][651] ([i915#12964]) -> [SKIP][652] ([i915#14544] / [i915#9519])
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-rkl: [SKIP][653] -> [SKIP][654] ([i915#12916])
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_pm_rpm@pc8-residency.html
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][655] ([i915#11520]) -> [SKIP][656] ([i915#11520] / [i915#14544]) +6 other tests skip
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][657] ([i915#11520] / [i915#14544]) -> [SKIP][658] ([i915#11520]) +5 other tests skip
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: [SKIP][659] ([i915#14544] / [i915#9683]) -> [SKIP][660] ([i915#9683])
[659]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
[660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][661] ([i915#9683]) -> [SKIP][662] ([i915#14544] / [i915#9683])
[661]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html
[662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][663] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][664] ([i915#1072] / [i915#9732]) +12 other tests skip
[663]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
[664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: [SKIP][665] ([i915#1072] / [i915#9732]) -> [SKIP][666] ([i915#1072] / [i915#14544] / [i915#9732]) +19 other tests skip
[665]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_psr@psr-sprite-plane-onoff.html
[666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][667] ([i915#14544]) -> [SKIP][668] ([i915#5289]) +1 other test skip
[667]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: [SKIP][669] ([i915#3555]) -> [SKIP][670] ([i915#14544] / [i915#3555]) +2 other tests skip
[669]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_setmode@clone-exclusive-crtc.html
[670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vblank@wait-idle-hang:
- shard-rkl: [DMESG-WARN][671] ([i915#12964]) -> [SKIP][672] ([i915#14544])
[671]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_vblank@wait-idle-hang.html
[672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_vblank@wait-idle-hang.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: [SKIP][673] ([i915#14544]) -> [SKIP][674] ([i915#9906]) +1 other test skip
[673]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
[674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: [SKIP][675] ([i915#2437]) -> [SKIP][676] ([i915#14544] / [i915#2437])
[675]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_writeback@writeback-check-output.html
[676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_writeback@writeback-check-output.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][677] ([i915#14544] / [i915#2435]) -> [SKIP][678] ([i915#2435])
[677]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
[678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][679] ([i915#3708]) -> [SKIP][680] ([i915#14544] / [i915#3708])
[679]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@prime_vgem@coherency-gtt.html
[680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: [SKIP][681] ([i915#9917]) -> [SKIP][682] ([i915#14544] / [i915#9917])
[681]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html
[682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14756
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1850
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9581]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9738]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9738
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8505 -> IGTPW_13629
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_17061: 5481954bd63bd4d34a5acb2b89fb2caf55bb0695 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13629: 13629
IGT_8505: 8505
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/index.html
[-- Attachment #2: Type: text/html, Size: 223266 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
2025-08-25 13:27 ` ✗ i915.CI.Full: " Patchwork
@ 2025-08-26 14:51 ` Bernatowicz, Marcin
0 siblings, 0 replies; 11+ messages in thread
From: Bernatowicz, Marcin @ 2025-08-26 14:51 UTC (permalink / raw)
To: igt-dev, lgci.bug.filing
On 8/25/2025 3:27 PM, Patchwork wrote:
> == Series Details ==
>
> Series: tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2)
> URL : https://patchwork.freedesktop.org/series/153162/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_17061_full -> IGTPW_13629_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_13629_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_13629_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_13629/index.html
>
> Participating hosts (11 -> 11)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_13629_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_fbcon_fbt@fbc-suspend:
> - shard-snb: [PASS][1] -> [ABORT][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-snb1/igt@kms_fbcon_fbt@fbc-suspend.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-snb6/igt@kms_fbcon_fbt@fbc-suspend.html
> - shard-tglu: [PASS][3] -> [ABORT][4] +2 other tests abort
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-tglu-3/igt@kms_fbcon_fbt@fbc-suspend.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@kms_fbcon_fbt@fbc-suspend.html
>
> * igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a1:
> - shard-glk: NOTRUN -> [FAIL][5] +1 other test fail
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a1.html
>
>
Not related to the change.
---
marcin
> Known issues
> ------------
>
> Here are the changes found in IGTPW_13629_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@api_intel_bb@blit-reloc-purge-cache:
> - shard-dg2-9: NOTRUN -> [SKIP][6] ([i915#8411])
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@api_intel_bb@blit-reloc-purge-cache.html
>
> * igt@api_intel_bb@crc32:
> - shard-rkl: NOTRUN -> [SKIP][7] ([i915#6230])
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@api_intel_bb@crc32.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_13629/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html
>
> * igt@device_reset@cold-reset-bound:
> - shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078])
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@device_reset@cold-reset-bound.html
>
> * igt@fbdev@pan:
> - shard-rkl: [PASS][10] -> [SKIP][11] ([i915#14544] / [i915#2582]) +1 other test skip
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@fbdev@pan.html
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@fbdev@pan.html
>
> * igt@gem_ccs@block-copy-compressed:
> - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
>
> * igt@gem_ccs@block-multicopy-inplace:
> - shard-rkl: NOTRUN -> [SKIP][13] ([i915#14544] / [i915#3555] / [i915#9323])
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
>
> * igt@gem_ccs@ctrl-surf-copy-new-ctx:
> - shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323])
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
>
> * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
> - shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#12392] / [i915#13356])
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
>
> * igt@gem_close_race@multigpu-basic-process:
> - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) +1 other test skip
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_close_race@multigpu-basic-process.html
>
> * igt@gem_compute@compute-square:
> - shard-dg2: NOTRUN -> [FAIL][18] ([i915#13665])
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@gem_compute@compute-square.html
>
> * igt@gem_create@create-ext-set-pat:
> - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8562])
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@gem_create@create-ext-set-pat.html
> - shard-tglu: NOTRUN -> [SKIP][20] ([i915#8562])
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-7/igt@gem_create@create-ext-set-pat.html
>
> * igt@gem_ctx_freq@sysfs@gt0:
> - shard-dg2: [PASS][21] -> [FAIL][22] ([i915#9561]) +1 other test fail
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
>
> * igt@gem_ctx_persistence@heartbeat-close:
> - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555])
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-close.html
>
> * igt@gem_ctx_persistence@heartbeat-hang:
> - shard-dg2-9: NOTRUN -> [SKIP][24] ([i915#8555])
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hang.html
>
> * igt@gem_ctx_shared@exec-single-timeline@vcs0:
> - shard-rkl: [PASS][25] -> [DMESG-WARN][26] ([i915#12964]) +45 other tests dmesg-warn
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@gem_ctx_shared@exec-single-timeline@vcs0.html
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@gem_ctx_shared@exec-single-timeline@vcs0.html
>
> * igt@gem_ctx_sseu@engines:
> - shard-rkl: NOTRUN -> [SKIP][27] ([i915#280])
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@gem_ctx_sseu@engines.html
>
> * igt@gem_ctx_sseu@invalid-args:
> - shard-dg2-9: NOTRUN -> [SKIP][28] ([i915#280])
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_ctx_sseu@invalid-args.html
>
> * igt@gem_eio@reset-stress:
> - shard-dg1: [PASS][29] -> [FAIL][30] ([i915#5784])
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-14/igt@gem_eio@reset-stress.html
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@gem_eio@reset-stress.html
>
> * igt@gem_exec_balancer@bonded-sync:
> - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771])
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html
>
> * igt@gem_exec_balancer@parallel-balancer:
> - shard-rkl: NOTRUN -> [SKIP][32] ([i915#14544] / [i915#4525])
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
>
> * igt@gem_exec_balancer@parallel-out-fence:
> - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4525])
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html
>
> * igt@gem_exec_capture@capture-invisible@smem0:
> - shard-glk: NOTRUN -> [SKIP][34] ([i915#6334]) +1 other test skip
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html
>
> * igt@gem_exec_capture@capture@vecs0-lmem0:
> - shard-dg2: NOTRUN -> [FAIL][35] ([i915#11965]) +4 other tests fail
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
>
> * igt@gem_exec_fence@submit:
> - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812])
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_exec_fence@submit.html
>
> * igt@gem_exec_fence@submit3:
> - shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#4812])
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_exec_fence@submit3.html
>
> * igt@gem_exec_flush@basic-uc-prw-default:
> - shard-dg2-9: NOTRUN -> [SKIP][38] ([i915#3539])
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_exec_flush@basic-uc-prw-default.html
>
> * igt@gem_exec_flush@basic-uc-set-default:
> - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539])
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@gem_exec_flush@basic-uc-set-default.html
>
> * igt@gem_exec_flush@basic-wb-pro-default:
> - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@gem_exec_flush@basic-wb-pro-default.html
>
> * igt@gem_exec_flush@basic-wb-rw-before-default:
> - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html
>
> * igt@gem_exec_params@rsvd2-dirt:
> - shard-dg2: NOTRUN -> [SKIP][42] ([i915#5107])
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html
>
> * igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
> - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
>
> * igt@gem_exec_reloc@basic-cpu-noreloc:
> - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
>
> * igt@gem_exec_reloc@basic-scanout:
> - shard-rkl: NOTRUN -> [SKIP][45] ([i915#14544] / [i915#3281])
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html
>
> * igt@gem_exec_reloc@basic-write-cpu-noreloc:
> - shard-dg2-9: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_exec_reloc@basic-write-cpu-noreloc.html
>
> * igt@gem_exec_reloc@basic-write-wc-active:
> - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +2 other tests skip
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gem_exec_reloc@basic-write-wc-active.html
>
> * igt@gem_exec_schedule@preempt-queue-contexts:
> - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812])
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts.html
>
> * igt@gem_exec_schedule@semaphore-power:
> - shard-dg2-9: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) +1 other test skip
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_exec_schedule@semaphore-power.html
>
> * igt@gem_exec_suspend@basic-s0:
> - shard-dg2: [PASS][50] -> [INCOMPLETE][51] ([i915#11441] / [i915#13304]) +1 other test incomplete
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
>
> * igt@gem_fence_thrash@bo-copy:
> - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@gem_fence_thrash@bo-copy.html
>
> * igt@gem_fence_thrash@bo-write-verify-x:
> - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860])
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-x.html
>
> * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
> - shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4860])
> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
>
> * igt@gem_lmem_swapping@heavy-random:
> - shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk8/igt@gem_lmem_swapping@heavy-random.html
>
> * igt@gem_lmem_swapping@heavy-verify-multi:
> - shard-rkl: NOTRUN -> [SKIP][56] ([i915#14544] / [i915#4613])
> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html
>
> * igt@gem_lmem_swapping@massive:
> - shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@gem_lmem_swapping@massive.html
>
> * igt@gem_lmem_swapping@parallel-random-verify:
> - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip
> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-verify.html
>
> * igt@gem_lmem_swapping@parallel-random-verify-ccs:
> - shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193])
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
>
> * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
> - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4565])
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
>
> * igt@gem_lmem_swapping@smem-oom@lmem0:
> - shard-dg1: [PASS][61] -> [DMESG-WARN][62] ([i915#5493]) +1 other test dmesg-warn
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
>
> * igt@gem_media_vme:
> - shard-dg2: NOTRUN -> [SKIP][63] ([i915#284])
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@gem_media_vme.html
>
> * igt@gem_mmap_gtt@close-race:
> - shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#4077]) +5 other tests skip
> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_mmap_gtt@close-race.html
>
> * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
> - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +14 other tests skip
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
>
> * igt@gem_mmap_wc@bad-object:
> - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +1 other test skip
> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@gem_mmap_wc@bad-object.html
>
> * igt@gem_mmap_wc@coherency:
> - shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4083])
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_mmap_wc@coherency.html
>
> * igt@gem_mmap_wc@copy:
> - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +6 other tests skip
> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@gem_mmap_wc@copy.html
>
> * igt@gem_mmap_wc@set-cache-level:
> - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083])
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html
>
> * igt@gem_pread@self:
> - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_pread@self.html
>
> * igt@gem_pxp@create-valid-protected-context:
> - shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_pxp@create-valid-protected-context.html
>
> * igt@gem_pxp@display-protected-crc:
> - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@gem_pxp@display-protected-crc.html
>
> * igt@gem_pxp@fail-invalid-protected-context:
> - shard-rkl: [PASS][73] -> [TIMEOUT][74] ([i915#12964])
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@gem_pxp@fail-invalid-protected-context.html
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@gem_pxp@fail-invalid-protected-context.html
>
> * igt@gem_pxp@hw-rejects-pxp-buffer:
> - shard-tglu: NOTRUN -> [SKIP][75] ([i915#13398])
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-buffer.html
>
> * igt@gem_pxp@reject-modify-context-protection-off-1:
> - shard-rkl: [PASS][76] -> [TIMEOUT][77] ([i915#12917] / [i915#12964])
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-1.html
>
> * igt@gem_pxp@reject-modify-context-protection-off-3:
> - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964])
> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-3.html
>
> * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
> - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-12/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
>
> * igt@gem_pxp@verify-pxp-stale-buf-execution:
> - shard-rkl: [PASS][80] -> [SKIP][81] ([i915#14544] / [i915#4270])
> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html
>
> * igt@gem_readwrite@beyond-eob:
> - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +2 other tests skip
> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@gem_readwrite@beyond-eob.html
>
> * igt@gem_readwrite@read-write:
> - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@gem_readwrite@read-write.html
>
> * igt@gem_render_copy@y-tiled:
> - shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#5190] / [i915#8428]) +3 other tests skip
> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_render_copy@y-tiled.html
>
> * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
> - shard-glk: NOTRUN -> [SKIP][85] +251 other tests skip
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
>
> * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
> - shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) +4 other tests skip
> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
>
> * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
> - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079])
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
>
> * igt@gem_set_tiling_vs_pwrite:
> - shard-rkl: NOTRUN -> [SKIP][88] ([i915#14544] / [i915#3282])
> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
>
> * igt@gem_softpin@noreloc-s3:
> - shard-glk: NOTRUN -> [INCOMPLETE][89] ([i915#13809])
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk1/igt@gem_softpin@noreloc-s3.html
>
> * igt@gem_tiled_pread_basic:
> - shard-dg2-9: NOTRUN -> [SKIP][90] ([i915#4079])
> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_tiled_pread_basic.html
>
> * igt@gem_userptr_blits@dmabuf-unsync:
> - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html
>
> * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
> - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880])
> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
>
> * igt@gem_userptr_blits@readonly-unsync:
> - shard-dg2-9: NOTRUN -> [SKIP][93] ([i915#3297]) +1 other test skip
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gem_userptr_blits@readonly-unsync.html
>
> * igt@gem_userptr_blits@unsync-overlap:
> - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297])
> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@gem_userptr_blits@unsync-overlap.html
>
> * igt@gem_userptr_blits@unsync-unmap:
> - shard-tglu: NOTRUN -> [SKIP][95] ([i915#3297])
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap.html
>
> * igt@gen9_exec_parse@allowed-all:
> - shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +4 other tests skip
> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@gen9_exec_parse@allowed-all.html
>
> * igt@gen9_exec_parse@allowed-single:
> - shard-rkl: NOTRUN -> [SKIP][97] ([i915#14544] / [i915#2527])
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html
>
> * igt@gen9_exec_parse@bb-large:
> - shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +1 other test skip
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@gen9_exec_parse@bb-large.html
>
> * igt@gen9_exec_parse@bb-start-cmd:
> - shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#2856]) +1 other test skip
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@gen9_exec_parse@bb-start-cmd.html
>
> * igt@gen9_exec_parse@unaligned-jump:
> - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +1 other test skip
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@gen9_exec_parse@unaligned-jump.html
>
> * igt@i915_drm_fdinfo@busy-idle@vecs0:
> - shard-dg2: NOTRUN -> [SKIP][101] ([i915#14073]) +15 other tests skip
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@i915_drm_fdinfo@busy-idle@vecs0.html
>
> * igt@i915_drm_fdinfo@busy@rcs0:
> - shard-dg1: NOTRUN -> [SKIP][102] ([i915#14073]) +5 other tests skip
> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@i915_drm_fdinfo@busy@rcs0.html
>
> * igt@i915_drm_fdinfo@virtual-busy-all:
> - shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#14118])
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy-all.html
>
> * igt@i915_drm_fdinfo@virtual-busy-idle-all:
> - shard-dg2: NOTRUN -> [SKIP][104] ([i915#14118]) +2 other tests skip
> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
>
> * igt@i915_fb_tiling@basic-x-tiling:
> - shard-dg2: NOTRUN -> [SKIP][105] ([i915#13786])
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@i915_fb_tiling@basic-x-tiling.html
> - shard-dg1: NOTRUN -> [SKIP][106] ([i915#13786])
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@i915_fb_tiling@basic-x-tiling.html
> - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#13786])
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-1/igt@i915_fb_tiling@basic-x-tiling.html
>
> * igt@i915_module_load@reload-no-display:
> - shard-dg1: [PASS][108] -> [DMESG-WARN][109] ([i915#13029] / [i915#14545])
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-17/igt@i915_module_load@reload-no-display.html
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@i915_module_load@reload-no-display.html
>
> * igt@i915_module_load@resize-bar:
> - shard-dg2-9: NOTRUN -> [DMESG-WARN][110] ([i915#14545])
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@i915_module_load@resize-bar.html
>
> * igt@i915_pm_freq_api@freq-reset:
> - shard-rkl: NOTRUN -> [SKIP][111] ([i915#14544] / [i915#8399])
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
>
> * igt@i915_pm_freq_mult@media-freq@gt0:
> - shard-tglu: NOTRUN -> [SKIP][112] ([i915#6590]) +1 other test skip
> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-5/igt@i915_pm_freq_mult@media-freq@gt0.html
>
> * igt@i915_pm_rc6_residency@rc6-idle:
> - shard-tglu: NOTRUN -> [SKIP][113] ([i915#14498])
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle.html
> - shard-rkl: NOTRUN -> [SKIP][114] ([i915#14498])
> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html
>
> * igt@i915_pm_rps@thresholds-idle:
> - shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#11681])
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html
>
> * igt@i915_query@test-query-geometry-subslices:
> - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#5723])
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
>
> * igt@i915_selftest@live@gt_pm:
> - shard-rkl: [PASS][117] -> [DMESG-FAIL][118] ([i915#12942]) +1 other test dmesg-fail
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@i915_selftest@live@gt_pm.html
> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@i915_selftest@live@gt_pm.html
>
> * igt@i915_suspend@forcewake:
> - shard-glk10: NOTRUN -> [INCOMPLETE][119] ([i915#4817])
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@i915_suspend@forcewake.html
>
> * igt@i915_suspend@sysfs-reader:
> - shard-glk: NOTRUN -> [INCOMPLETE][120] ([i915#4817]) +1 other test incomplete
> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk8/igt@i915_suspend@sysfs-reader.html
>
> * igt@intel_hwmon@hwmon-write:
> - shard-tglu: NOTRUN -> [SKIP][121] ([i915#7707])
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@intel_hwmon@hwmon-write.html
>
> * igt@kms_addfb_basic@basic-x-tiled-legacy:
> - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4212]) +2 other tests skip
> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html
>
> * igt@kms_addfb_basic@basic-y-tiled-legacy:
> - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4215] / [i915#5190])
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
> - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4215])
> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_addfb_basic@basic-y-tiled-legacy.html
> - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#4212]) +1 other test skip
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
>
> * igt@kms_addfb_basic@clobberred-modifier:
> - shard-dg2-9: NOTRUN -> [SKIP][126] ([i915#4212])
> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_addfb_basic@clobberred-modifier.html
>
> * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
> - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4212])
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
>
> * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
> - shard-tglu: NOTRUN -> [SKIP][128] ([i915#12454] / [i915#12712])
> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
> - shard-glk: NOTRUN -> [SKIP][129] ([i915#1769])
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>
> * igt@kms_big_fb@4-tiled-16bpp-rotate-0:
> - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5286])
> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
>
> * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
> - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#5286]) +1 other test skip
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> - shard-mtlp: [PASS][132] -> [FAIL][133] ([i915#5138])
> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
> - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286])
> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286])
> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>
> * igt@kms_big_fb@x-tiled-32bpp-rotate-0:
> - shard-rkl: NOTRUN -> [SKIP][136] ([i915#14544]) +10 other tests skip
> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
>
> * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
> - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638])
> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
>
> * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
> - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +1 other test skip
> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
>
> * igt@kms_big_fb@y-tiled-addfb:
> - shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#5190])
> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb.html
>
> * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
> - shard-dg2-9: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +6 other tests skip
> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
> - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538])
> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
> - shard-rkl: NOTRUN -> [SKIP][142] +2 other tests skip
> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
> - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5190]) +11 other tests skip
> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
>
> * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
> - shard-tglu: NOTRUN -> [SKIP][144] ([i915#12313])
> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
>
> * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
> - shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313])
> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
> - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12313])
> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
>
> * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
> - shard-dg2: NOTRUN -> [SKIP][147] ([i915#12313])
> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
>
> * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
> - shard-dg2-9: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#6095]) +34 other tests skip
> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
>
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
> - shard-dg2-9: NOTRUN -> [SKIP][149] ([i915#12313])
> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
> - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +29 other tests skip
> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
> - shard-tglu: NOTRUN -> [SKIP][151] ([i915#12805])
> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-3:
> - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +7 other tests skip
> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-3.html
>
> * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
> - shard-dg2-9: NOTRUN -> [SKIP][153] ([i915#6095]) +4 other tests skip
> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
> - shard-dg2: NOTRUN -> [SKIP][154] ([i915#10307] / [i915#6095]) +152 other tests skip
> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
> - shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1:
> - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +14 other tests skip
> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
> - shard-rkl: NOTRUN -> [SKIP][157] ([i915#6095]) +43 other tests skip
> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
>
> * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
> - shard-rkl: NOTRUN -> [SKIP][158] ([i915#14098] / [i915#6095]) +41 other tests skip
> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
>
> * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
> - shard-dg1: NOTRUN -> [SKIP][159] ([i915#6095]) +129 other tests skip
> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
>
> * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
> - shard-dg2: NOTRUN -> [SKIP][160] ([i915#13781]) +4 other tests skip
> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
>
> * igt@kms_cdclk@plane-scaling:
> - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3742])
> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_cdclk@plane-scaling.html
>
> * igt@kms_chamelium_color@ctm-0-25:
> - shard-dg2-9: NOTRUN -> [SKIP][162] +9 other tests skip
> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_chamelium_color@ctm-0-25.html
>
> * igt@kms_chamelium_edid@hdmi-edid-read:
> - shard-rkl: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +1 other test skip
> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-read.html
>
> * igt@kms_chamelium_frames@dp-frame-dump:
> - shard-dg1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +3 other tests skip
> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_chamelium_frames@dp-frame-dump.html
>
> * igt@kms_chamelium_frames@hdmi-crc-multiple:
> - shard-tglu: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +2 other tests skip
> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
>
> * igt@kms_chamelium_hpd@hdmi-hpd:
> - shard-rkl: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#14544] / [i915#7828])
> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd.html
>
> * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
> - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +1 other test skip
> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
>
> * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
> - shard-dg2: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +6 other tests skip
> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
>
> * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
> - shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +3 other tests skip
> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
>
> * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
> - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +1 other test skip
> [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
>
> * igt@kms_color@ctm-negative:
> - shard-rkl: [PASS][171] -> [SKIP][172] ([i915#12655] / [i915#14544]) +2 other tests skip
> [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_color@ctm-negative.html
> [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_color@ctm-negative.html
>
> * igt@kms_content_protection@atomic-dpms:
> - shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#7118] / [i915#9424]) +1 other test skip
> [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_content_protection@atomic-dpms.html
>
> * igt@kms_content_protection@dp-mst-lic-type-0:
> - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3116] / [i915#3299])
> [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html
>
> * igt@kms_content_protection@dp-mst-type-0:
> - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3299]) +1 other test skip
> [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_content_protection@dp-mst-type-0.html
>
> * igt@kms_content_protection@dp-mst-type-1:
> - shard-tglu: NOTRUN -> [SKIP][176] ([i915#3116] / [i915#3299])
> [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-3/igt@kms_content_protection@dp-mst-type-1.html
>
> * igt@kms_content_protection@legacy:
> - shard-dg2: NOTRUN -> [SKIP][177] ([i915#7118] / [i915#9424])
> [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@kms_content_protection@legacy.html
>
> * igt@kms_content_protection@mei-interface:
> - shard-rkl: NOTRUN -> [SKIP][178] ([i915#9424]) +1 other test skip
> [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_content_protection@mei-interface.html
>
> * igt@kms_cursor_crc@cursor-offscreen-512x170:
> - shard-dg1: NOTRUN -> [SKIP][179] ([i915#13049])
> [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x170.html
>
> * igt@kms_cursor_crc@cursor-offscreen-512x512:
> - shard-tglu: NOTRUN -> [SKIP][180] ([i915#13049])
> [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-onscreen-128x42:
> - shard-tglu: [PASS][181] -> [FAIL][182] ([i915#13566]) +3 other tests fail
> [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
> [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html
>
> * igt@kms_cursor_crc@cursor-onscreen-256x256:
> - shard-rkl: [PASS][183] -> [SKIP][184] ([i915#14544]) +51 other tests skip
> [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x256.html
> [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x170:
> - shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#13049])
> [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
> - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#13049]) +2 other tests skip
> [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-random-512x170:
> - shard-dg2: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip
> [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x170.html
>
> * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
> - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3555]) +2 other tests skip
> [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
>
> * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
> - shard-rkl: NOTRUN -> [FAIL][189] ([i915#13566]) +3 other tests fail
> [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
>
> * igt@kms_cursor_crc@cursor-sliding-32x10:
> - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555]) +5 other tests skip
> [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
> - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3555])
> [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-32x10.html
> - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8814])
> [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
>
> * igt@kms_cursor_crc@cursor-sliding-max-size:
> - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#3555])
> [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-max-size.html
>
> * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
> - shard-dg2: NOTRUN -> [SKIP][194] ([i915#13046] / [i915#5354]) +3 other tests skip
> [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
>
> * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
> - shard-dg2-9: NOTRUN -> [SKIP][195] ([i915#13046] / [i915#5354]) +1 other test skip
> [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
>
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
> - shard-dg2: NOTRUN -> [SKIP][196] ([i915#4103] / [i915#4213]) +2 other tests skip
> [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
>
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
> - shard-tglu: NOTRUN -> [SKIP][197] ([i915#4103])
> [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
>
> * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
> - shard-glk10: NOTRUN -> [SKIP][198] ([i915#11190]) +2 other tests skip
> [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
> - shard-glk: [PASS][199] -> [SKIP][200] +2 other tests skip
> [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
> [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
> - shard-dg1: NOTRUN -> [SKIP][201] +12 other tests skip
> [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
> - shard-rkl: [PASS][202] -> [FAIL][203] ([i915#2346])
> [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
> [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> - shard-glk: [PASS][204] -> [FAIL][205] ([i915#2346])
> [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
> - shard-dg1: NOTRUN -> [SKIP][206] ([i915#4103] / [i915#4213])
> [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
> - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3804])
> [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
>
> * igt@kms_dp_link_training@non-uhbr-mst:
> - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#13749])
> [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html
> - shard-dg1: NOTRUN -> [SKIP][209] ([i915#13749])
> [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_dp_link_training@non-uhbr-mst.html
>
> * igt@kms_dp_link_training@non-uhbr-sst:
> - shard-dg2: NOTRUN -> [SKIP][210] ([i915#13749])
> [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-sst.html
>
> * igt@kms_dp_link_training@uhbr-sst:
> - shard-dg2-9: NOTRUN -> [SKIP][211] ([i915#13748])
> [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_dp_link_training@uhbr-sst.html
>
> * igt@kms_dp_linktrain_fallback@dp-fallback:
> - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#13707])
> [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
>
> * igt@kms_draw_crc@draw-method-mmap-gtt:
> - shard-dg2: NOTRUN -> [SKIP][213] ([i915#8812])
> [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html
>
> * igt@kms_dsc@dsc-basic:
> - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840])
> [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-6/igt@kms_dsc@dsc-basic.html
>
> * igt@kms_dsc@dsc-fractional-bpp:
> - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3840] / [i915#9688])
> [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp.html
>
> * igt@kms_dsc@dsc-with-bpc:
> - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840])
> [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_dsc@dsc-with-bpc.html
> - shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840])
> [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_dsc@dsc-with-bpc.html
>
> * igt@kms_dsc@dsc-with-output-formats:
> - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840])
> [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats.html
>
> * igt@kms_fbcon_fbt@fbc-suspend:
> - shard-glk: NOTRUN -> [INCOMPLETE][219] ([i915#9878])
> [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html
>
> * igt@kms_fbcon_fbt@psr-suspend:
> - shard-dg2-9: NOTRUN -> [SKIP][220] ([i915#3469])
> [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_fbcon_fbt@psr-suspend.html
>
> * igt@kms_feature_discovery@display-1x:
> - shard-rkl: [PASS][221] -> [SKIP][222] ([i915#14544] / [i915#9738])
> [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_feature_discovery@display-1x.html
> [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_feature_discovery@display-1x.html
>
> * igt@kms_feature_discovery@display-2x:
> - shard-dg2: NOTRUN -> [SKIP][223] ([i915#1839])
> [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_feature_discovery@display-2x.html
>
> * igt@kms_feature_discovery@psr2:
> - shard-dg2: NOTRUN -> [SKIP][224] ([i915#658])
> [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_feature_discovery@psr2.html
>
> * igt@kms_fence_pin_leak:
> - shard-dg2: NOTRUN -> [SKIP][225] ([i915#4881])
> [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@kms_fence_pin_leak.html
> - shard-dg1: NOTRUN -> [SKIP][226] ([i915#4881])
> [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@kms_fence_pin_leak.html
> - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#4881])
> [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-8/igt@kms_fence_pin_leak.html
>
> * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
> - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +1 other test skip
> [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
>
> * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
> - shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#9934]) +2 other tests skip
> [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
>
> * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
> - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#9934])
> [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
>
> * igt@kms_flip@2x-flip-vs-suspend:
> - shard-glk: NOTRUN -> [INCOMPLETE][231] ([i915#12745] / [i915#4839])
> [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
>
> * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
> - shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#4839])
> [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
>
> * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
> - shard-dg2: NOTRUN -> [SKIP][233] ([i915#9934]) +8 other tests skip
> [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
>
> * igt@kms_flip@2x-nonexisting-fb-interruptible:
> - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637] / [i915#9934]) +3 other tests skip
> [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb-interruptible.html
>
> * igt@kms_flip@2x-plain-flip-fb-recreate:
> - shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#9934])
> [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
>
> * igt@kms_flip@basic-flip-vs-wf_vblank:
> - shard-rkl: [PASS][236] -> [SKIP][237] ([i915#14544] / [i915#3637]) +7 other tests skip
> [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_flip@basic-flip-vs-wf_vblank.html
> [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip@basic-flip-vs-wf_vblank.html
>
> * igt@kms_flip@modeset-vs-vblank-race-interruptible:
> - shard-glk: NOTRUN -> [FAIL][238] ([i915#10826])
> [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
> - shard-rkl: NOTRUN -> [SKIP][239] ([i915#14544] / [i915#3555])
> [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
> - shard-rkl: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +1 other test skip
> [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
> - shard-dg1: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +1 other test skip
> [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
> - shard-rkl: [PASS][242] -> [SKIP][243] ([i915#14544] / [i915#3555]) +2 other tests skip
> [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
> [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
> - shard-tglu: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555]) +2 other tests skip
> [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
> - shard-rkl: NOTRUN -> [SKIP][245] ([i915#2672]) +3 other tests skip
> [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
> - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +2 other tests skip
> [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
> - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555])
> [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
> - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#2587] / [i915#2672])
> [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
> - shard-dg2: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555])
> [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
> - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +1 other test skip
> [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
> - shard-dg2-9: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555])
> [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
> - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555] / [i915#5190])
> [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
> - shard-dg2: NOTRUN -> [SKIP][253] ([i915#2672]) +1 other test skip
> [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
> - shard-dg2-9: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555] / [i915#5190])
> [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
> - shard-dg2-9: NOTRUN -> [SKIP][255] ([i915#2672]) +1 other test skip
> [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
> - shard-dg1: [PASS][256] -> [DMESG-WARN][257] ([i915#4391] / [i915#4423])
> [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
> [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
> - shard-rkl: [PASS][258] -> [SKIP][259] ([i915#14544] / [i915#1849] / [i915#5354]) +14 other tests skip
> [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
> [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
> - shard-dg2: NOTRUN -> [SKIP][260] ([i915#5354]) +23 other tests skip
> [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
> - shard-rkl: NOTRUN -> [SKIP][261] ([i915#1825]) +14 other tests skip
> [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
> - shard-snb: NOTRUN -> [SKIP][262] +13 other tests skip
> [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
> - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#1825]) +5 other tests skip
> [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
> - shard-dg2: [PASS][264] -> [FAIL][265] ([i915#6880])
> [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
> [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
>
> * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
> - shard-dg2-9: NOTRUN -> [FAIL][266] ([i915#6880])
> [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
> - shard-dg1: NOTRUN -> [SKIP][267] ([i915#3458]) +3 other tests skip
> [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
> - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3458]) +16 other tests skip
> [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
> - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3023]) +4 other tests skip
> [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
> - shard-dg2-9: NOTRUN -> [SKIP][270] ([i915#8708]) +14 other tests skip
> [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
> - shard-dg2: NOTRUN -> [SKIP][271] ([i915#8708]) +15 other tests skip
> [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
> - shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544] / [i915#1849] / [i915#5354]) +5 other tests skip
> [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
> - shard-dg1: NOTRUN -> [SKIP][273] ([i915#8708]) +7 other tests skip
> [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
> - shard-dg2: NOTRUN -> [SKIP][274] ([i915#10055]) +1 other test skip
> [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
> - shard-tglu-1: NOTRUN -> [SKIP][275] +43 other tests skip
> [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt:
> - shard-dg2-9: NOTRUN -> [SKIP][276] ([i915#3458]) +9 other tests skip
> [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu:
> - shard-dg2-9: NOTRUN -> [SKIP][277] ([i915#5354]) +17 other tests skip
> [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
> - shard-tglu: NOTRUN -> [SKIP][278] +44 other tests skip
> [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
>
> * igt@kms_hdr@bpc-switch:
> - shard-rkl: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228])
> [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_hdr@bpc-switch.html
> - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +1 other test skip
> [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_hdr@bpc-switch.html
>
> * igt@kms_hdr@bpc-switch-dpms:
> - shard-dg2: [PASS][281] -> [SKIP][282] ([i915#3555] / [i915#8228])
> [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html
> [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_hdr@bpc-switch-dpms.html
> - shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228])
> [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-10/igt@kms_hdr@bpc-switch-dpms.html
>
> * igt@kms_hdr@brightness-with-hdr:
> - shard-dg2: NOTRUN -> [SKIP][284] ([i915#12713])
> [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_hdr@brightness-with-hdr.html
>
> * igt@kms_hdr@static-toggle:
> - shard-dg2: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228])
> [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-7/igt@kms_hdr@static-toggle.html
>
> * igt@kms_hdr@static-toggle-dpms:
> - shard-dg1: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228])
> [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_hdr@static-toggle-dpms.html
>
> * igt@kms_invalid_mode@zero-vdisplay:
> - shard-rkl: [PASS][287] -> [SKIP][288] ([i915#14544] / [i915#3555] / [i915#8826])
> [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_invalid_mode@zero-vdisplay.html
> [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_invalid_mode@zero-vdisplay.html
>
> * igt@kms_joiner@basic-force-ultra-joiner:
> - shard-rkl: NOTRUN -> [SKIP][289] ([i915#12394])
> [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html
> - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#12394])
> [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
>
> * igt@kms_joiner@basic-ultra-joiner:
> - shard-dg2: NOTRUN -> [SKIP][291] ([i915#12339])
> [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_joiner@basic-ultra-joiner.html
>
> * igt@kms_joiner@invalid-modeset-force-big-joiner:
> - shard-dg2: [PASS][292] -> [SKIP][293] ([i915#12388])
> [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
> [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
>
> * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
> - shard-dg2: NOTRUN -> [SKIP][294] ([i915#10656])
> [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
>
> * igt@kms_joiner@invalid-modeset-ultra-joiner:
> - shard-dg1: NOTRUN -> [SKIP][295] ([i915#12339])
> [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_joiner@invalid-modeset-ultra-joiner.html
>
> * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
> - shard-rkl: [PASS][296] -> [SKIP][297] ([i915#11190] / [i915#14544])
> [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
> [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
>
> * igt@kms_plane@planar-pixel-format-settings:
> - shard-rkl: [PASS][298] -> [SKIP][299] ([i915#14544] / [i915#9581])
> [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_plane@planar-pixel-format-settings.html
> [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings.html
>
> * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
> - shard-glk: NOTRUN -> [INCOMPLETE][300] ([i915#13026]) +1 other test incomplete
> [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
>
> * igt@kms_plane@plane-position-covered:
> - shard-rkl: [PASS][301] -> [SKIP][302] ([i915#14544] / [i915#8825]) +1 other test skip
> [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_plane@plane-position-covered.html
> [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane@plane-position-covered.html
>
> * igt@kms_plane_alpha_blend@alpha-opaque-fb:
> - shard-glk10: NOTRUN -> [SKIP][303] +201 other tests skip
> [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
>
> * igt@kms_plane_lowres@tiling-yf:
> - shard-dg2: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8821])
> [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html
>
> * igt@kms_plane_multiple@2x-tiling-y:
> - shard-dg2-9: NOTRUN -> [SKIP][305] ([i915#13958])
> [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-y.html
>
> * igt@kms_plane_multiple@tiling-y:
> - shard-dg2-9: NOTRUN -> [SKIP][306] ([i915#14259])
> [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_plane_multiple@tiling-y.html
>
> * igt@kms_plane_multiple@tiling-yf:
> - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#14259])
> [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
> - shard-dg2: NOTRUN -> [SKIP][308] ([i915#14259])
> [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html
>
> * igt@kms_plane_scaling@intel-max-src-size:
> - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#6953])
> [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html
>
> * igt@kms_plane_scaling@invalid-num-scalers:
> - shard-rkl: NOTRUN -> [SKIP][310] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
> [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html
>
> * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
> - shard-tglu: NOTRUN -> [SKIP][311] ([i915#12247]) +9 other tests skip
> [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
>
> * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
> - shard-rkl: NOTRUN -> [SKIP][312] ([i915#12247]) +3 other tests skip
> [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
>
> * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
> - shard-rkl: [PASS][313] -> [SKIP][314] ([i915#14544] / [i915#8152])
> [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
> [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
>
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
> - shard-rkl: [PASS][315] -> [SKIP][316] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
> [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
> [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
>
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
> - shard-rkl: [PASS][317] -> [SKIP][318] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip
> [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
> [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
> - shard-rkl: [PASS][319] -> [SKIP][320] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
> [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
> [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
> - shard-rkl: [PASS][321] -> [SKIP][322] ([i915#12247] / [i915#14544]) +2 other tests skip
> [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
> [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
>
> * igt@kms_pm_backlight@bad-brightness:
> - shard-tglu: NOTRUN -> [SKIP][323] ([i915#9812])
> [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html
>
> * igt@kms_pm_backlight@basic-brightness:
> - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9812])
> [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
>
> * igt@kms_pm_lpsp@kms-lpsp:
> - shard-dg2: [PASS][325] -> [SKIP][326] ([i915#9340])
> [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
> [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
>
> * igt@kms_pm_lpsp@screens-disabled:
> - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#8430])
> [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
>
> * igt@kms_pm_rpm@cursor:
> - shard-rkl: [PASS][328] -> [SKIP][329] ([i915#14544] / [i915#1849])
> [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_pm_rpm@cursor.html
> [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_rpm@cursor.html
>
> * igt@kms_pm_rpm@dpms-lpsp:
> - shard-dg2: NOTRUN -> [SKIP][330] ([i915#9519])
> [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
>
> * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
> - shard-dg1: NOTRUN -> [SKIP][331] ([i915#9519])
> [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
>
> * igt@kms_pm_rpm@fences:
> - shard-dg1: NOTRUN -> [SKIP][332] ([i915#4077]) +2 other tests skip
> [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_pm_rpm@fences.html
> - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#4077])
> [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-2/igt@kms_pm_rpm@fences.html
>
> * igt@kms_pm_rpm@i2c:
> - shard-dg1: [PASS][334] -> [DMESG-WARN][335] ([i915#4423]) +3 other tests dmesg-warn
> [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-17/igt@kms_pm_rpm@i2c.html
> [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_pm_rpm@i2c.html
>
> * igt@kms_pm_rpm@modeset-lpsp:
> - shard-dg2-9: NOTRUN -> [SKIP][336] ([i915#9519])
> [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp.html
>
> * igt@kms_pm_rpm@modeset-lpsp-stress:
> - shard-rkl: [PASS][337] -> [SKIP][338] ([i915#14544] / [i915#9519])
> [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
> [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
>
> * igt@kms_pm_rpm@modeset-non-lpsp:
> - shard-rkl: [PASS][339] -> [SKIP][340] ([i915#9519]) +1 other test skip
> [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
> [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
>
> * igt@kms_pm_rpm@modeset-non-lpsp-stress:
> - shard-rkl: NOTRUN -> [SKIP][341] ([i915#9519])
> [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
> - shard-tglu: NOTRUN -> [SKIP][342] ([i915#9519]) +1 other test skip
> [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
>
> * igt@kms_pm_rpm@pm-caching:
> - shard-rkl: [PASS][343] -> [SKIP][344] ([i915#12916] / [i915#14544])
> [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_pm_rpm@pm-caching.html
> [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_rpm@pm-caching.html
>
> * igt@kms_pm_rpm@system-suspend-modeset:
> - shard-glk: [PASS][345] -> [INCOMPLETE][346] ([i915#10553])
> [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk1/igt@kms_pm_rpm@system-suspend-modeset.html
> [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html
>
> * igt@kms_properties@plane-properties-legacy:
> - shard-rkl: [PASS][347] -> [SKIP][348] ([i915#11521] / [i915#14544])
> [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_properties@plane-properties-legacy.html
> [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html
>
> * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
> - shard-tglu: NOTRUN -> [SKIP][349] ([i915#11520]) +3 other tests skip
> [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
>
> * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
> - shard-rkl: NOTRUN -> [SKIP][350] ([i915#11520]) +2 other tests skip
> [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
>
> * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
> - shard-dg2: NOTRUN -> [SKIP][351] ([i915#11520]) +6 other tests skip
> [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
>
> * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
> - shard-rkl: NOTRUN -> [SKIP][352] ([i915#11520] / [i915#14544])
> [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
>
> * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
> - shard-glk: NOTRUN -> [SKIP][353] ([i915#11520]) +4 other tests skip
> [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
> - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#11520]) +3 other tests skip
> [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
>
> * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
> - shard-dg2-9: NOTRUN -> [SKIP][355] ([i915#11520]) +2 other tests skip
> [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
>
> * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
> - shard-dg1: NOTRUN -> [SKIP][356] ([i915#11520]) +1 other test skip
> [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-14/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
>
> * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
> - shard-glk10: NOTRUN -> [SKIP][357] ([i915#11520]) +6 other tests skip
> [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
>
> * igt@kms_psr2_su@page_flip-p010:
> - shard-rkl: NOTRUN -> [SKIP][358] ([i915#9683])
> [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_psr2_su@page_flip-p010.html
> - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9683])
> [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
>
> * igt@kms_psr2_su@page_flip-xrgb8888:
> - shard-dg2-9: NOTRUN -> [SKIP][360] ([i915#9683])
> [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_psr2_su@page_flip-xrgb8888.html
>
> * igt@kms_psr@fbc-pr-cursor-render:
> - shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +22 other tests skip
> [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_psr@fbc-pr-cursor-render.html
>
> * igt@kms_psr@fbc-pr-no-drrs:
> - shard-rkl: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
> [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr@fbc-pr-no-drrs.html
>
> * igt@kms_psr@fbc-pr-sprite-mmap-gtt:
> - shard-dg1: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +4 other tests skip
> [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html
>
> * igt@kms_psr@fbc-psr-sprite-mmap-cpu:
> - shard-dg2-9: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +14 other tests skip
> [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_psr@fbc-psr-sprite-mmap-cpu.html
>
> * igt@kms_psr@fbc-psr2-cursor-mmap-cpu:
> - shard-rkl: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +5 other tests skip
> [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html
>
> * igt@kms_psr@psr-cursor-render:
> - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9732]) +5 other tests skip
> [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-3/igt@kms_psr@psr-cursor-render.html
>
> * igt@kms_psr@psr2-cursor-mmap-gtt:
> - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9732]) +6 other tests skip
> [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html
>
> * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> - shard-dg2: NOTRUN -> [SKIP][368] ([i915#9685])
> [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
>
> * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
> - shard-rkl: NOTRUN -> [SKIP][369] ([i915#5289])
> [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
>
> * igt@kms_rotation_crc@primary-rotation-90:
> - shard-dg2-9: NOTRUN -> [SKIP][370] ([i915#12755]) +1 other test skip
> [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_rotation_crc@primary-rotation-90.html
>
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
> - shard-dg2: NOTRUN -> [SKIP][371] ([i915#5190]) +1 other test skip
> [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
> - shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#5289]) +1 other test skip
> [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
>
> * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
> - shard-dg2: NOTRUN -> [ABORT][373] ([i915#13179]) +1 other test abort
> [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
>
> * igt@kms_setmode@basic:
> - shard-tglu-1: NOTRUN -> [FAIL][374] ([i915#5465]) +2 other tests fail
> [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_setmode@basic.html
> - shard-mtlp: [PASS][375] -> [FAIL][376] ([i915#5465]) +1 other test fail
> [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-mtlp-4/igt@kms_setmode@basic.html
> [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-5/igt@kms_setmode@basic.html
> - shard-rkl: [PASS][377] -> [FAIL][378] ([i915#5465])
> [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_setmode@basic.html
> [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_setmode@basic.html
>
> * igt@kms_setmode@basic@pipe-a-hdmi-a-1:
> - shard-rkl: NOTRUN -> [FAIL][379] ([i915#5465]) +1 other test fail
> [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
>
> * igt@kms_setmode@invalid-clone-single-crtc-stealing:
> - shard-dg2-9: NOTRUN -> [SKIP][380] ([i915#3555]) +6 other tests skip
> [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
>
> * igt@kms_tiled_display@basic-test-pattern:
> - shard-rkl: NOTRUN -> [SKIP][381] ([i915#8623])
> [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html
>
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> - shard-dg2-9: NOTRUN -> [SKIP][382] ([i915#8623])
> [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>
> * igt@kms_vblank@query-forked-busy-hang@pipe-b-hdmi-a-1:
> - shard-rkl: NOTRUN -> [DMESG-WARN][383] ([i915#12964]) +12 other tests dmesg-warn
> [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_vblank@query-forked-busy-hang@pipe-b-hdmi-a-1.html
>
> * igt@kms_vrr@flip-basic:
> - shard-dg2: NOTRUN -> [SKIP][384] ([i915#3555]) +3 other tests skip
> [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_vrr@flip-basic.html
>
> * igt@kms_vrr@flip-basic-fastset:
> - shard-tglu: NOTRUN -> [SKIP][385] ([i915#9906])
> [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html
> - shard-dg2-9: NOTRUN -> [SKIP][386] ([i915#9906])
> [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_vrr@flip-basic-fastset.html
>
> * igt@kms_vrr@lobf:
> - shard-rkl: NOTRUN -> [SKIP][387] ([i915#11920])
> [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_vrr@lobf.html
> - shard-tglu: NOTRUN -> [SKIP][388] ([i915#11920])
> [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-9/igt@kms_vrr@lobf.html
>
> * igt@kms_vrr@max-min:
> - shard-dg2: NOTRUN -> [SKIP][389] ([i915#9906])
> [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_vrr@max-min.html
>
> * igt@kms_vrr@negative-basic:
> - shard-dg1: NOTRUN -> [SKIP][390] ([i915#3555] / [i915#9906])
> [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-15/igt@kms_vrr@negative-basic.html
>
> * igt@kms_vrr@seamless-rr-switch-vrr:
> - shard-tglu-1: NOTRUN -> [SKIP][391] ([i915#9906]) +1 other test skip
> [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
>
> * igt@kms_writeback@writeback-fb-id:
> - shard-dg2-9: NOTRUN -> [SKIP][392] ([i915#2437])
> [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@kms_writeback@writeback-fb-id.html
>
> * igt@kms_writeback@writeback-invalid-parameters:
> - shard-rkl: NOTRUN -> [SKIP][393] ([i915#2437])
> [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_writeback@writeback-invalid-parameters.html
>
> * igt@perf@gen8-unprivileged-single-ctx-counters:
> - shard-dg2: NOTRUN -> [SKIP][394] ([i915#2436])
> [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
>
> * igt@perf@global-sseu-config-invalid:
> - shard-dg2: NOTRUN -> [SKIP][395] ([i915#7387])
> [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-6/igt@perf@global-sseu-config-invalid.html
>
> * igt@perf_pmu@event-wait@rcs0:
> - shard-dg2: NOTRUN -> [SKIP][396] +13 other tests skip
> [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-4/igt@perf_pmu@event-wait@rcs0.html
>
> * igt@perf_pmu@frequency:
> - shard-dg2: [PASS][397] -> [FAIL][398] ([i915#12549] / [i915#6806]) +1 other test fail
> [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@perf_pmu@frequency.html
> [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-1/igt@perf_pmu@frequency.html
> - shard-dg1: [PASS][399] -> [FAIL][400] ([i915#12549] / [i915#6806]) +1 other test fail
> [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-18/igt@perf_pmu@frequency.html
> [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@perf_pmu@frequency.html
>
> * igt@perf_pmu@module-unload:
> - shard-dg2: NOTRUN -> [FAIL][401] ([i915#14433])
> [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@perf_pmu@module-unload.html
> - shard-glk10: NOTRUN -> [FAIL][402] ([i915#14433])
> [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@perf_pmu@module-unload.html
>
> * igt@perf_pmu@rc6-suspend:
> - shard-glk: NOTRUN -> [INCOMPLETE][403] ([i915#13356] / [i915#14242])
> [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@perf_pmu@rc6-suspend.html
> - shard-rkl: [PASS][404] -> [INCOMPLETE][405] ([i915#13520])
> [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@perf_pmu@rc6-suspend.html
> [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@perf_pmu@rc6-suspend.html
>
> * igt@prime_vgem@basic-fence-flip:
> - shard-dg1: NOTRUN -> [SKIP][406] ([i915#3708])
> [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@prime_vgem@basic-fence-flip.html
> - shard-dg2: NOTRUN -> [SKIP][407] ([i915#3708])
> [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html
>
> * igt@prime_vgem@basic-read:
> - shard-dg2: NOTRUN -> [SKIP][408] ([i915#3291] / [i915#3708])
> [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@prime_vgem@basic-read.html
>
> * igt@prime_vgem@basic-write:
> - shard-rkl: NOTRUN -> [SKIP][409] ([i915#3291] / [i915#3708])
> [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@prime_vgem@basic-write.html
>
> * igt@prime_vgem@fence-flip-hang:
> - shard-rkl: NOTRUN -> [SKIP][410] ([i915#3708])
> [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html
>
> * igt@prime_vgem@fence-read-hang:
> - shard-dg2-9: NOTRUN -> [SKIP][411] ([i915#3708])
> [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@prime_vgem@fence-read-hang.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-off:
> - shard-dg2-9: NOTRUN -> [SKIP][412] ([i915#9917])
> [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-off.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-on:
> - shard-rkl: NOTRUN -> [SKIP][413] ([i915#9917])
> [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
>
> * igt@tools_test@sysfs_l3_parity:
> - shard-dg2: NOTRUN -> [SKIP][414] ([i915#4818])
> [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html
>
>
> #### Possible fixes ####
>
> * igt@gem_exec_big@single:
> - shard-tglu: [ABORT][415] ([i915#11713] / [i915#14756]) -> [PASS][416]
> [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-tglu-4/igt@gem_exec_big@single.html
> [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-4/igt@gem_exec_big@single.html
>
> * igt@gem_exec_capture@pi:
> - shard-rkl: [DMESG-WARN][417] ([i915#12964]) -> [PASS][418] +20 other tests pass
> [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@gem_exec_capture@pi.html
> [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@gem_exec_capture@pi.html
>
> * igt@gem_exec_suspend@basic-s3:
> - shard-glk: [INCOMPLETE][419] ([i915#11441] / [i915#13196]) -> [PASS][420] +1 other test pass
> [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk1/igt@gem_exec_suspend@basic-s3.html
> [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk6/igt@gem_exec_suspend@basic-s3.html
>
> * igt@gem_mmap_wc@set-cache-level:
> - shard-rkl: [SKIP][421] ([i915#14544] / [i915#1850]) -> [PASS][422]
> [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html
> [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@gem_mmap_wc@set-cache-level.html
>
> * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
> - shard-rkl: [TIMEOUT][423] ([i915#12917] / [i915#12964]) -> [PASS][424] +2 other tests pass
> [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
> [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
>
> * igt@i915_suspend@fence-restore-untiled:
> - shard-glk10: [INCOMPLETE][425] ([i915#4817]) -> [PASS][426]
> [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk10/igt@i915_suspend@fence-restore-untiled.html
> [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk10/igt@i915_suspend@fence-restore-untiled.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> - shard-mtlp: [FAIL][427] ([i915#5138]) -> [PASS][428]
> [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
> [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>
> * igt@kms_color@legacy-gamma-reset:
> - shard-rkl: [SKIP][429] ([i915#12655] / [i915#14544]) -> [PASS][430]
> [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_color@legacy-gamma-reset.html
> [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_color@legacy-gamma-reset.html
>
> * igt@kms_cursor_crc@cursor-random-128x42:
> - shard-rkl: [FAIL][431] ([i915#13566]) -> [PASS][432]
> [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
> [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
>
> * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
> - shard-tglu: [FAIL][433] ([i915#13566]) -> [PASS][434] +3 other tests pass
> [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
> [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> - shard-rkl: [FAIL][435] ([i915#2346]) -> [PASS][436]
> [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>
> * igt@kms_dither@fb-8bpc-vs-panel-8bpc:
> - shard-dg2: [SKIP][437] ([i915#3555]) -> [PASS][438]
> [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
> [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
>
> * igt@kms_flip@flip-vs-rmfb-interruptible:
> - shard-rkl: [SKIP][439] ([i915#14544] / [i915#3637]) -> [PASS][440] +4 other tests pass
> [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip@flip-vs-rmfb-interruptible.html
> [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
> - shard-rkl: [SKIP][441] ([i915#14544] / [i915#3555]) -> [PASS][442] +1 other test pass
> [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
> [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
> - shard-dg2: [FAIL][443] ([i915#6880]) -> [PASS][444]
> [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
> [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
> - shard-rkl: [DMESG-WARN][445] ([i915#12917] / [i915#12964]) -> [PASS][446]
> [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
> [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
> - shard-glk: [SKIP][447] -> [PASS][448] +1 other test pass
> [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
> [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
> - shard-rkl: [SKIP][449] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][450] +9 other tests pass
> [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
> [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
>
> * igt@kms_hdr@static-toggle-suspend:
> - shard-dg2: [SKIP][451] ([i915#3555] / [i915#8228]) -> [PASS][452] +1 other test pass
> [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
> [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
>
> * igt@kms_invalid_mode@bad-vsync-end:
> - shard-rkl: [SKIP][453] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][454] +1 other test pass
> [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html
> [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-end.html
>
> * igt@kms_invalid_mode@zero-vdisplay:
> - shard-dg1: [DMESG-WARN][455] ([i915#4423]) -> [PASS][456] +1 other test pass
> [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-17/igt@kms_invalid_mode@zero-vdisplay.html
> [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-16/igt@kms_invalid_mode@zero-vdisplay.html
>
> * igt@kms_pipe_crc_basic@hang-read-crc:
> - shard-rkl: [SKIP][457] ([i915#11190] / [i915#14544]) -> [PASS][458]
> [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_pipe_crc_basic@hang-read-crc.html
> [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_pipe_crc_basic@hang-read-crc.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc:
> - shard-rkl: [INCOMPLETE][459] ([i915#13476]) -> [PASS][460] +1 other test pass
> [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
> [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc.html
>
> * igt@kms_plane@plane-position-hole:
> - shard-rkl: [SKIP][461] ([i915#14544] / [i915#8825]) -> [PASS][462]
> [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane@plane-position-hole.html
> [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_plane@plane-position-hole.html
>
> * igt@kms_plane_alpha_blend@constant-alpha-mid:
> - shard-rkl: [SKIP][463] ([i915#14544] / [i915#7294]) -> [PASS][464]
> [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-mid.html
> [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_plane_alpha_blend@constant-alpha-mid.html
>
> * igt@kms_plane_scaling@intel-max-src-size:
> - shard-dg2: [SKIP][465] ([i915#6953] / [i915#9423]) -> [PASS][466]
> [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html
> [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
>
> * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
> - shard-rkl: [SKIP][467] ([i915#14544] / [i915#8152]) -> [PASS][468]
> [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
> [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
>
> * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
> - shard-rkl: [SKIP][469] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][470] +4 other tests pass
> [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b.html
> [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
> - shard-rkl: [SKIP][471] ([i915#12247] / [i915#14544]) -> [PASS][472] +3 other tests pass
> [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
> [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
> - shard-rkl: [SKIP][473] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][474] +1 other test pass
> [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
> [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
>
> * igt@kms_pm_rpm@dpms-lpsp:
> - shard-rkl: [SKIP][475] ([i915#14544] / [i915#9519]) -> [PASS][476]
> [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
> [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
>
> * igt@kms_pm_rpm@fences:
> - shard-rkl: [SKIP][477] ([i915#14544] / [i915#1849]) -> [PASS][478]
> [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_pm_rpm@fences.html
> [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_pm_rpm@fences.html
>
> * igt@kms_properties@crtc-properties-legacy:
> - shard-rkl: [SKIP][479] ([i915#11521] / [i915#14544]) -> [PASS][480]
> [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html
> [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_properties@crtc-properties-legacy.html
>
> * igt@kms_rmfb@rmfb-ioctl:
> - shard-rkl: [SKIP][481] ([i915#14544]) -> [PASS][482] +37 other tests pass
> [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_rmfb@rmfb-ioctl.html
> [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_rmfb@rmfb-ioctl.html
>
> * igt@kms_vblank@ts-continuation-dpms-suspend:
> - shard-rkl: [INCOMPLETE][483] ([i915#12276]) -> [PASS][484] +1 other test pass
> [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
> [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_vblank@ts-continuation-dpms-suspend.html
>
> * igt@perf_pmu@busy-double-start@bcs0:
> - shard-mtlp: [FAIL][485] ([i915#4349]) -> [PASS][486] +1 other test pass
> [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
> [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html
>
> * igt@perf_pmu@most-busy-check-all:
> - shard-rkl: [FAIL][487] ([i915#4349]) -> [PASS][488] +1 other test pass
> [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
> [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@perf_pmu@most-busy-check-all.html
>
>
> #### Warnings ####
>
> * igt@api_intel_bb@blit-reloc-keep-cache:
> - shard-rkl: [SKIP][489] ([i915#8411]) -> [SKIP][490] ([i915#14544] / [i915#8411])
> [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html
> [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
>
> * igt@api_intel_bb@blit-reloc-purge-cache:
> - shard-rkl: [SKIP][491] ([i915#14544] / [i915#8411]) -> [SKIP][492] ([i915#8411]) +1 other test skip
> [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
> [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html
>
> * igt@device_reset@unbind-cold-reset-rebind:
> - shard-rkl: [SKIP][493] ([i915#11078]) -> [SKIP][494] ([i915#11078] / [i915#14544])
> [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html
> [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
>
> * igt@gem_bad_reloc@negative-reloc-lut:
> - shard-rkl: [SKIP][495] ([i915#3281]) -> [SKIP][496] ([i915#14544] / [i915#3281]) +3 other tests skip
> [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html
> [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
>
> * igt@gem_close_race@multigpu-basic-process:
> - shard-rkl: [SKIP][497] ([i915#14544] / [i915#7697]) -> [SKIP][498] ([i915#7697])
> [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
> [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
>
> * igt@gem_create@create-ext-set-pat:
> - shard-rkl: [SKIP][499] ([i915#14544] / [i915#8562]) -> [SKIP][500] ([i915#8562])
> [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
> [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
>
> * igt@gem_ctx_sseu@mmap-args:
> - shard-rkl: [SKIP][501] ([i915#280]) -> [SKIP][502] ([i915#14544] / [i915#280])
> [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html
> [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
>
> * igt@gem_exec_balancer@parallel:
> - shard-rkl: [SKIP][503] ([i915#14544] / [i915#4525]) -> [SKIP][504] ([i915#4525]) +2 other tests skip
> [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_exec_balancer@parallel.html
> [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gem_exec_balancer@parallel.html
>
> * igt@gem_exec_balancer@parallel-keep-in-fence:
> - shard-rkl: [SKIP][505] ([i915#4525]) -> [SKIP][506] ([i915#14544] / [i915#4525])
> [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-in-fence.html
> [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
>
> * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
> - shard-rkl: [SKIP][507] ([i915#14544] / [i915#3281]) -> [SKIP][508] ([i915#3281]) +7 other tests skip
> [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
> [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
>
> * igt@gem_lmem_swapping@heavy-multi:
> - shard-rkl: [SKIP][509] ([i915#4613]) -> [SKIP][510] ([i915#14544] / [i915#4613]) +1 other test skip
> [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html
> [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html
>
> * igt@gem_lmem_swapping@heavy-random:
> - shard-rkl: [SKIP][511] ([i915#14544] / [i915#4613]) -> [SKIP][512] ([i915#4613])
> [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
> [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
> - shard-rkl: [SKIP][513] ([i915#14544] / [i915#3282]) -> [SKIP][514] ([i915#3282]) +4 other tests skip
> [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
> [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
>
> * igt@gem_pread@snoop:
> - shard-rkl: [SKIP][515] ([i915#3282]) -> [SKIP][516] ([i915#14544] / [i915#3282]) +6 other tests skip
> [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@gem_pread@snoop.html
> [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_pread@snoop.html
>
> * igt@gem_pxp@hw-rejects-pxp-buffer:
> - shard-rkl: [SKIP][517] ([i915#13717]) -> [TIMEOUT][518] ([i915#12917] / [i915#12964])
> [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
> [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html
>
> * igt@gem_userptr_blits@coherency-sync:
> - shard-rkl: [SKIP][519] ([i915#14544] / [i915#3297]) -> [SKIP][520] ([i915#3297]) +1 other test skip
> [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
> [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@gem_userptr_blits@coherency-sync.html
>
> * igt@gem_userptr_blits@coherency-unsync:
> - shard-rkl: [SKIP][521] ([i915#3297]) -> [SKIP][522] ([i915#14544] / [i915#3297]) +2 other tests skip
> [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html
> [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
>
> * igt@gen9_exec_parse@bb-start-far:
> - shard-rkl: [SKIP][523] ([i915#14544] / [i915#2527]) -> [SKIP][524] ([i915#2527]) +2 other tests skip
> [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
> [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@gen9_exec_parse@bb-start-far.html
>
> * igt@gen9_exec_parse@valid-registers:
> - shard-rkl: [SKIP][525] ([i915#2527]) -> [SKIP][526] ([i915#14544] / [i915#2527]) +2 other tests skip
> [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html
> [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
>
> * igt@i915_module_load@resize-bar:
> - shard-rkl: [SKIP][527] ([i915#14544] / [i915#6412]) -> [SKIP][528] ([i915#6412])
> [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@i915_module_load@resize-bar.html
> [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@i915_module_load@resize-bar.html
>
> * igt@i915_pm_sseu@full-enable:
> - shard-rkl: [SKIP][529] ([i915#14544] / [i915#4387]) -> [SKIP][530] ([i915#4387])
> [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
> [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
>
> * igt@i915_suspend@basic-s3-without-i915:
> - shard-rkl: [DMESG-WARN][531] ([i915#12964]) -> [INCOMPLETE][532] ([i915#12964] / [i915#4817])
> [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
> [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
>
> * igt@intel_hwmon@hwmon-read:
> - shard-rkl: [SKIP][533] ([i915#7707]) -> [SKIP][534] ([i915#14544] / [i915#7707])
> [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@intel_hwmon@hwmon-read.html
> [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
> - shard-rkl: [SKIP][535] ([i915#1769] / [i915#3555]) -> [SKIP][536] ([i915#14544])
> [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
> [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>
> * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
> - shard-rkl: [SKIP][537] ([i915#5286]) -> [SKIP][538] ([i915#14544]) +7 other tests skip
> [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
> [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> - shard-rkl: [SKIP][539] ([i915#14544]) -> [SKIP][540] ([i915#5286]) +4 other tests skip
> [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>
> * igt@kms_big_fb@linear-32bpp-rotate-270:
> - shard-rkl: [SKIP][541] ([i915#14544]) -> [SKIP][542] ([i915#3638])
> [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
> [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
>
> * igt@kms_big_fb@linear-32bpp-rotate-90:
> - shard-rkl: [SKIP][543] ([i915#3638]) -> [SKIP][544] ([i915#14544]) +1 other test skip
> [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html
> [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
>
> * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
> - shard-rkl: [SKIP][545] ([i915#12313]) -> [SKIP][546] ([i915#14544]) +1 other test skip
> [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
> [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
>
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
> - shard-rkl: [SKIP][547] ([i915#14544]) -> [SKIP][548] ([i915#14098] / [i915#6095]) +7 other tests skip
> [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
> [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
> - shard-rkl: [SKIP][549] ([i915#12805]) -> [SKIP][550] ([i915#14544])
> [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
> [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
> - shard-rkl: [SKIP][551] ([i915#14544]) -> [SKIP][552] ([i915#12313]) +1 other test skip
> [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
> [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
> - shard-rkl: [SKIP][553] ([i915#14098] / [i915#6095]) -> [SKIP][554] ([i915#6095])
> [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
> [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
>
> * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
> - shard-rkl: [SKIP][555] ([i915#14098] / [i915#6095]) -> [SKIP][556] ([i915#14544]) +10 other tests skip
> [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
> [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
>
> * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
> - shard-rkl: [SKIP][557] ([i915#6095]) -> [SKIP][558] ([i915#14098] / [i915#6095]) +1 other test skip
> [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
> [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
>
> * igt@kms_cdclk@plane-scaling:
> - shard-rkl: [SKIP][559] ([i915#3742]) -> [SKIP][560] ([i915#14544] / [i915#3742])
> [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_cdclk@plane-scaling.html
> [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cdclk@plane-scaling.html
>
> * igt@kms_chamelium_frames@hdmi-frame-dump:
> - shard-rkl: [SKIP][561] ([i915#11151] / [i915#7828]) -> [SKIP][562] ([i915#11151] / [i915#14544] / [i915#7828]) +6 other tests skip
> [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
> [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
>
> * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
> - shard-rkl: [SKIP][563] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][564] ([i915#11151] / [i915#7828]) +5 other tests skip
> [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
> [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
>
> * igt@kms_content_protection@atomic-dpms:
> - shard-rkl: [SKIP][565] ([i915#7118] / [i915#9424]) -> [SKIP][566] ([i915#14544]) +1 other test skip
> [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html
> [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
>
> * igt@kms_content_protection@content-type-change:
> - shard-rkl: [SKIP][567] ([i915#9424]) -> [SKIP][568] ([i915#14544])
> [567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_content_protection@content-type-change.html
> [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_content_protection@content-type-change.html
>
> * igt@kms_content_protection@dp-mst-type-0:
> - shard-rkl: [SKIP][569] ([i915#14544]) -> [SKIP][570] ([i915#3116])
> [569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
> [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
> - shard-rkl: [SKIP][571] ([i915#14544]) -> [SKIP][572] ([i915#13049]) +1 other test skip
> [571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
> [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-onscreen-max-size:
> - shard-rkl: [SKIP][573] ([i915#14544]) -> [SKIP][574] ([i915#3555])
> [573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
> [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
>
> * igt@kms_cursor_crc@cursor-random-256x85:
> - shard-rkl: [FAIL][575] ([i915#13566]) -> [SKIP][576] ([i915#14544])
> [575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85.html
> [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85.html
>
> * igt@kms_cursor_crc@cursor-random-512x170:
> - shard-rkl: [SKIP][577] ([i915#13049]) -> [SKIP][578] ([i915#14544]) +3 other tests skip
> [577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html
> [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
>
> * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
> - shard-rkl: [SKIP][579] ([i915#3555]) -> [SKIP][580] ([i915#14544])
> [579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
> [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
>
> * igt@kms_cursor_crc@cursor-sliding-256x85:
> - shard-rkl: [SKIP][581] ([i915#14544]) -> [FAIL][582] ([i915#13566]) +1 other test fail
> [581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
> [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
> - shard-rkl: [SKIP][583] ([i915#14544]) -> [SKIP][584] +21 other tests skip
> [583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
> [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
> - shard-rkl: [SKIP][585] -> [SKIP][586] ([i915#14544]) +20 other tests skip
> [585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
> [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
>
> * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
> - shard-rkl: [SKIP][587] ([i915#14544]) -> [SKIP][588] ([i915#9067])
> [587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
> [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
>
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> - shard-rkl: [SKIP][589] ([i915#4103]) -> [SKIP][590] ([i915#14544])
> [589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
> [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
>
> * igt@kms_display_modes@extended-mode-basic:
> - shard-rkl: [SKIP][591] ([i915#13691]) -> [SKIP][592] ([i915#14544])
> [591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_display_modes@extended-mode-basic.html
> [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
>
> * igt@kms_dsc@dsc-basic:
> - shard-rkl: [SKIP][593] ([i915#3555] / [i915#3840]) -> [SKIP][594] ([i915#11190] / [i915#14544])
> [593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_dsc@dsc-basic.html
> [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_dsc@dsc-basic.html
>
> * igt@kms_dsc@dsc-fractional-bpp:
> - shard-rkl: [SKIP][595] ([i915#14544]) -> [SKIP][596] ([i915#3840])
> [595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
> [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
>
> * igt@kms_dsc@dsc-with-bpc-formats:
> - shard-rkl: [SKIP][597] ([i915#14544]) -> [SKIP][598] ([i915#3555] / [i915#3840])
> [597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
> [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html
>
> * igt@kms_feature_discovery@display-2x:
> - shard-rkl: [SKIP][599] ([i915#14544] / [i915#1839]) -> [SKIP][600] ([i915#1839])
> [599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
> [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_feature_discovery@display-2x.html
>
> * igt@kms_feature_discovery@display-4x:
> - shard-rkl: [SKIP][601] ([i915#1839]) -> [SKIP][602] ([i915#14544] / [i915#1839])
> [601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_feature_discovery@display-4x.html
> [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_feature_discovery@display-4x.html
>
> * igt@kms_feature_discovery@dp-mst:
> - shard-rkl: [SKIP][603] ([i915#9337]) -> [SKIP][604] ([i915#14544] / [i915#9337])
> [603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html
> [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
>
> * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
> - shard-rkl: [SKIP][605] ([i915#9934]) -> [SKIP][606] ([i915#14544] / [i915#9934]) +5 other tests skip
> [605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
> [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
>
> * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
> - shard-rkl: [SKIP][607] ([i915#14544] / [i915#9934]) -> [SKIP][608] ([i915#9934]) +6 other tests skip
> [607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
> [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
>
> * igt@kms_flip@flip-vs-blocking-wf-vblank:
> - shard-rkl: [DMESG-WARN][609] ([i915#12964]) -> [SKIP][610] ([i915#14544] / [i915#3637]) +1 other test skip
> [609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
> [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html
>
> * igt@kms_flip@flip-vs-expired-vblank-interruptible:
> - shard-rkl: [SKIP][611] ([i915#14544] / [i915#3637]) -> [DMESG-WARN][612] ([i915#12964])
> [611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
> [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
> - shard-dg1: [SKIP][613] ([i915#2672] / [i915#3555]) -> [SKIP][614] ([i915#2672] / [i915#3555] / [i915#4423])
> [613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
> [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
> - shard-dg1: [SKIP][615] ([i915#2587] / [i915#2672]) -> [SKIP][616] ([i915#2587] / [i915#2672] / [i915#4423])
> [615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
> [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
> - shard-rkl: [SKIP][617] ([i915#14544] / [i915#3555]) -> [SKIP][618] ([i915#2672] / [i915#3555]) +1 other test skip
> [617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
> [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
> - shard-rkl: [SKIP][619] ([i915#2672] / [i915#3555]) -> [SKIP][620] ([i915#14544] / [i915#3555]) +4 other tests skip
> [619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
> [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
> - shard-rkl: [SKIP][621] ([i915#1825]) -> [SKIP][622] ([i915#14544] / [i915#1849] / [i915#5354]) +32 other tests skip
> [621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
> [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
> - shard-rkl: [SKIP][623] ([i915#3023]) -> [SKIP][624] ([i915#14544] / [i915#1849] / [i915#5354]) +23 other tests skip
> [623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
> [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
> - shard-rkl: [SKIP][625] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][626] ([i915#3023]) +15 other tests skip
> [625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
> [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
> - shard-dg2: [SKIP][627] ([i915#10433] / [i915#3458]) -> [SKIP][628] ([i915#3458]) +1 other test skip
> [627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
> [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
> - shard-dg1: [SKIP][629] ([i915#3458]) -> [SKIP][630] ([i915#3458] / [i915#4423])
> [629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
> [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
> - shard-rkl: [SKIP][631] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][632] ([i915#1825]) +28 other tests skip
> [631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
> [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
>
> * igt@kms_joiner@basic-big-joiner:
> - shard-rkl: [SKIP][633] ([i915#10656]) -> [SKIP][634] ([i915#10656] / [i915#14544])
> [633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html
> [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
>
> * igt@kms_joiner@basic-force-big-joiner:
> - shard-rkl: [SKIP][635] ([i915#12388]) -> [SKIP][636] ([i915#12388] / [i915#14544])
> [635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_joiner@basic-force-big-joiner.html
> [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html
>
> * igt@kms_plane_multiple@2x-tiling-x:
> - shard-rkl: [SKIP][637] ([i915#14544]) -> [SKIP][638] ([i915#13958])
> [637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
> [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html
>
> * igt@kms_plane_multiple@tiling-4:
> - shard-rkl: [SKIP][639] ([i915#14544]) -> [SKIP][640] ([i915#14259])
> [639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html
> [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_plane_multiple@tiling-4.html
>
> * igt@kms_plane_multiple@tiling-yf:
> - shard-dg1: [SKIP][641] ([i915#14259] / [i915#4423]) -> [SKIP][642] ([i915#14259])
> [641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html
> [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html
>
> * igt@kms_pm_backlight@fade-with-suspend:
> - shard-rkl: [SKIP][643] ([i915#5354]) -> [SKIP][644] ([i915#14544] / [i915#5354]) +1 other test skip
> [643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html
> [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
>
> * igt@kms_pm_dc@dc5-retention-flops:
> - shard-rkl: [SKIP][645] ([i915#3828]) -> [SKIP][646] ([i915#14544] / [i915#3828])
> [645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_pm_dc@dc5-retention-flops.html
> [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
>
> * igt@kms_pm_dc@dc6-psr:
> - shard-rkl: [SKIP][647] ([i915#9685]) -> [SKIP][648] ([i915#14544] / [i915#9685]) +1 other test skip
> [647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_pm_dc@dc6-psr.html
> [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
>
> * igt@kms_pm_dc@dc9-dpms:
> - shard-rkl: [SKIP][649] ([i915#14544] / [i915#4281]) -> [SKIP][650] ([i915#3361])
> [649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
> [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html
>
> * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
> - shard-rkl: [DMESG-WARN][651] ([i915#12964]) -> [SKIP][652] ([i915#14544] / [i915#9519])
> [651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
> [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
>
> * igt@kms_pm_rpm@pc8-residency:
> - shard-rkl: [SKIP][653] -> [SKIP][654] ([i915#12916])
> [653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-7/igt@kms_pm_rpm@pc8-residency.html
> [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-3/igt@kms_pm_rpm@pc8-residency.html
>
> * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
> - shard-rkl: [SKIP][655] ([i915#11520]) -> [SKIP][656] ([i915#11520] / [i915#14544]) +6 other tests skip
> [655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
> [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
>
> * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
> - shard-rkl: [SKIP][657] ([i915#11520] / [i915#14544]) -> [SKIP][658] ([i915#11520]) +5 other tests skip
> [657]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
> [658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
>
> * igt@kms_psr2_su@page_flip-nv12:
> - shard-rkl: [SKIP][659] ([i915#14544] / [i915#9683]) -> [SKIP][660] ([i915#9683])
> [659]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
> [660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html
>
> * igt@kms_psr2_su@page_flip-xrgb8888:
> - shard-rkl: [SKIP][661] ([i915#9683]) -> [SKIP][662] ([i915#14544] / [i915#9683])
> [661]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html
> [662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
>
> * igt@kms_psr@fbc-psr2-sprite-render:
> - shard-rkl: [SKIP][663] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][664] ([i915#1072] / [i915#9732]) +12 other tests skip
> [663]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
> [664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_psr@fbc-psr2-sprite-render.html
>
> * igt@kms_psr@psr-sprite-plane-onoff:
> - shard-rkl: [SKIP][665] ([i915#1072] / [i915#9732]) -> [SKIP][666] ([i915#1072] / [i915#14544] / [i915#9732]) +19 other tests skip
> [665]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_psr@psr-sprite-plane-onoff.html
> [666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
> - shard-rkl: [SKIP][667] ([i915#14544]) -> [SKIP][668] ([i915#5289]) +1 other test skip
> [667]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
> [668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
>
> * igt@kms_setmode@clone-exclusive-crtc:
> - shard-rkl: [SKIP][669] ([i915#3555]) -> [SKIP][670] ([i915#14544] / [i915#3555]) +2 other tests skip
> [669]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_setmode@clone-exclusive-crtc.html
> [670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
>
> * igt@kms_vblank@wait-idle-hang:
> - shard-rkl: [DMESG-WARN][671] ([i915#12964]) -> [SKIP][672] ([i915#14544])
> [671]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-2/igt@kms_vblank@wait-idle-hang.html
> [672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_vblank@wait-idle-hang.html
>
> * igt@kms_vrr@seamless-rr-switch-vrr:
> - shard-rkl: [SKIP][673] ([i915#14544]) -> [SKIP][674] ([i915#9906]) +1 other test skip
> [673]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
> [674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
>
> * igt@kms_writeback@writeback-check-output:
> - shard-rkl: [SKIP][675] ([i915#2437]) -> [SKIP][676] ([i915#14544] / [i915#2437])
> [675]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@kms_writeback@writeback-check-output.html
> [676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@kms_writeback@writeback-check-output.html
>
> * igt@perf@per-context-mode-unprivileged:
> - shard-rkl: [SKIP][677] ([i915#14544] / [i915#2435]) -> [SKIP][678] ([i915#2435])
> [677]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
> [678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html
>
> * igt@prime_vgem@coherency-gtt:
> - shard-rkl: [SKIP][679] ([i915#3708]) -> [SKIP][680] ([i915#14544] / [i915#3708])
> [679]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-8/igt@prime_vgem@coherency-gtt.html
> [680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
>
> * igt@sriov_basic@bind-unbind-vf:
> - shard-rkl: [SKIP][681] ([i915#9917]) -> [SKIP][682] ([i915#14544] / [i915#9917])
> [681]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17061/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html
> [682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
>
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
> [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
> [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
> [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
> [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
> [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
> [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
> [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
> [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
> [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
> [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
> [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
> [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
> [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
> [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
> [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
> [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
> [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
> [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
> [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
> [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
> [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
> [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
> [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
> [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
> [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
> [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
> [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
> [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
> [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
> [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
> [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
> [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
> [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
> [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
> [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
> [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942
> [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
> [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
> [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
> [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
> [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
> [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
> [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
> [i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
> [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
> [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
> [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
> [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
> [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
> [i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665
> [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
> [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
> [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
> [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
> [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
> [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
> [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
> [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
> [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
> [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
> [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
> [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
> [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
> [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
> [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
> [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
> [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
> [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
> [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
> [i915#14756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14756
> [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
> [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
> [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
> [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
> [i915#1850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1850
> [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
> [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
> [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
> [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
> [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
> [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
> [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
> [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
> [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
> [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
> [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
> [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
> [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
> [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
> [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
> [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
> [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
> [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
> [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
> [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
> [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
> [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
> [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
> [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
> [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
> [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
> [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
> [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
> [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
> [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
> [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
> [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
> [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
> [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
> [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
> [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
> [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
> [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
> [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
> [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
> [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
> [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
> [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
> [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
> [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
> [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
> [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
> [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
> [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
> [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
> [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
> [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
> [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
> [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
> [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
> [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
> [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
> [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
> [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
> [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
> [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
> [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
> [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
> [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
> [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
> [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
> [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
> [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
> [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
> [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
> [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
> [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
> [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
> [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
> [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
> [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
> [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
> [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
> [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
> [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
> [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
> [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
> [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
> [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
> [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
> [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
> [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
> [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
> [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
> [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
> [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
> [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
> [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
> [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
> [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
> [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
> [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
> [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
> [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
> [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
> [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
> [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
> [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
> [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
> [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
> [i915#9581]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581
> [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
> [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
> [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
> [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
> [i915#9738]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9738
> [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
> [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
> [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
> [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
> [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
>
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_8505 -> IGTPW_13629
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_17061: 5481954bd63bd4d34a5acb2b89fb2caf55bb0695 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_13629: 13629
> IGT_8505: 8505
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13629/index.html
>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-08-26 14:52 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-25 8:22 [PATCH v3 i-g-t 0/3] tests/intel/xe_sriov_scheduling: Refactor submission/measurement Marcin Bernatowicz
2025-08-25 8:22 ` [PATCH v3 i-g-t 1/3] tests/intel/xe_sriov_scheduling: Keep K submissions in flight Marcin Bernatowicz
2025-08-25 9:15 ` Laguna, Lukasz
2025-08-25 8:22 ` [PATCH v3 i-g-t 2/3] tests/intel/xe_sriov_scheduling: Compute throughput from completion timestamps Marcin Bernatowicz
2025-08-25 9:15 ` Laguna, Lukasz
2025-08-25 8:22 ` [PATCH v3 i-g-t 3/3] tests/intel/xe_sriov_scheduling: Make in-flight submissions configurable Marcin Bernatowicz
2025-08-25 10:37 ` ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_scheduling: Refactor submission/measurement (rev2) Patchwork
2025-08-25 10:49 ` ✓ i915.CI.BAT: " Patchwork
2025-08-25 12:41 ` ✗ Xe.CI.Full: failure " Patchwork
2025-08-25 13:27 ` ✗ i915.CI.Full: " Patchwork
2025-08-26 14:51 ` Bernatowicz, Marcin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).