* [i-g-t, v7, 0/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency
@ 2025-05-29 9:08 Sk Anirban
2025-05-29 9:08 ` [PATCH v7 1/2] " Sk Anirban
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Sk Anirban @ 2025-05-29 9:08 UTC (permalink / raw)
To: igt-dev; +Cc: riana.tauro, Sk Anirban
Leverage IGT spinner to trigger frequency scaling and
set RPS minimum frequency to RP0 for achieving peak frequency.
This method replaces the existing waitboost mechanism used
to reach maximum frequency.
v4:
- Cosmetic changes (Riana)
v5:
- Limit the power consumption test to GT0 only
v6:
- Fix frequency restoration (Riana)
v7:
- Fix variable scope (Riana)
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
Sk Anirban (2):
tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency
HAX: Add rc6-idle tests to fast feedback list
tests/intel-ci/fast-feedback.testlist | 1 +
tests/intel/i915_pm_rc6_residency.c | 125 ++++++++++++++++++--------
2 files changed, 87 insertions(+), 39 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH v7 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency 2025-05-29 9:08 [i-g-t, v7, 0/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban @ 2025-05-29 9:08 ` Sk Anirban 2025-05-30 19:43 ` Kamil Konieczny 2025-05-29 9:08 ` [PATCH v7 2/2] HAX: Add rc6-idle tests to fast feedback list Sk Anirban ` (5 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Sk Anirban @ 2025-05-29 9:08 UTC (permalink / raw) To: igt-dev; +Cc: riana.tauro, Sk Anirban Leverage IGT spinner to trigger frequency scaling and set RPS minimum frequency to RP0 for achieving peak frequency. This method replaces the existing waitboost mechanism used to reach maximum frequency. v4: - Cosmetic changes (Riana) v5: - Limit the power consumption test to GT0 only v6: - Fix frequency restoration (Riana) v7: - Fix variable scope (Riana) Signed-off-by: Sk Anirban <sk.anirban@intel.com> Reviewed-by: Riana Tauro <riana.tauro@intel.com> --- tests/intel/i915_pm_rc6_residency.c | 125 +++++++++++++++++++--------- 1 file changed, 86 insertions(+), 39 deletions(-) diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c index c9128481d..e7a34b0da 100644 --- a/tests/intel/i915_pm_rc6_residency.c +++ b/tests/intel/i915_pm_rc6_residency.c @@ -264,17 +264,6 @@ static bool __pmu_wait_for_rc6(int fd) return false; } -static uint32_t batch_create(int fd) -{ - const uint32_t bbe = MI_BATCH_BUFFER_END; - uint32_t handle; - - handle = gem_create(fd, 4096); - gem_write(fd, handle, 0, &bbe, sizeof(bbe)); - - return handle; -} - static int open_pmu(int i915, uint64_t config) { int fd; @@ -286,45 +275,88 @@ static int open_pmu(int i915, uint64_t config) return fd; } -#define WAITBOOST 0x1 +#define FREQUENT_BOOST 0x1 #define ONCE 0x2 static void sighandler(int sig) { } -static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) +static uint32_t get_freq(int dirfd, uint8_t id) +{ + uint32_t val; + + igt_assert(igt_sysfs_rps_scanf(dirfd, id, "%u", &val) == 1); + + return val; +} + +static int set_freq(int dirfd, uint8_t id, uint32_t val) +{ + return igt_sysfs_rps_printf(dirfd, id, "%u", val); +} + +uint32_t stash_min; + +static void restore_freq(int sig) +{ + int i915 = -1; + int dirfd; + int gt = 0; + + i915 = drm_open_driver(DRIVER_INTEL); + dirfd = igt_sysfs_gt_open(i915, 0); + igt_sysfs_gt_open(i915, gt); + + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min)); + + drm_close_driver(i915); + close(dirfd); +} + +static void bg_load(int i915, const intel_ctx_t *ctx, int dirfd, uint64_t engine_flags, + unsigned int flags, unsigned long *ctl, unsigned int gt) { const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8; - struct drm_i915_gem_exec_object2 obj = { - .handle = batch_create(i915), - }; - struct drm_i915_gem_execbuffer2 execbuf = { - .buffers_ptr = to_user_pointer(&obj), - .buffer_count = 1, - .flags = engine_flags, - .rsvd1 = ctx_id, - }; struct sigaction act = { .sa_handler = sighandler }; + int64_t timeout = 1; + uint64_t ahnd; + int rp0; + ahnd = get_reloc_ahnd(i915, ctx->id); + rp0 = get_freq(dirfd, RPS_RP0_FREQ_MHZ); sigaction(SIGINT, &act, NULL); do { uint64_t submit, wait, elapsed; struct timespec tv = {}; + igt_spin_t *spin; igt_nsec_elapsed(&tv); - - gem_execbuf(i915, &execbuf); + spin = igt_spin_new(i915, + .ahnd = ahnd, + .ctx = ctx, + .engine = engine_flags); submit = igt_nsec_elapsed(&tv); - if (flags & WAITBOOST) { - gem_sync(i915, obj.handle); + if (flags & FREQUENT_BOOST) { + /* Set MIN freq to RP0 to achieve the peak freq */ + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, rp0)); + igt_assert(gem_bo_busy(i915, spin->handle)); + gem_wait(i915, spin->handle, &timeout); + + /* Restore the MIN freq back to default */ + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min)); + igt_spin_end(spin); + igt_spin_free(i915, spin); + gem_quiescent_gpu(i915); if (flags & ONCE) - flags &= ~WAITBOOST; + flags &= ~FREQUENT_BOOST; } else { - while (gem_bo_busy(i915, obj.handle)) - usleep(0); + igt_assert(gem_bo_busy(i915, spin->handle)); + igt_spin_end(spin); + igt_spin_free(i915, spin); + gem_quiescent_gpu(i915); } wait = igt_nsec_elapsed(&tv); @@ -350,6 +382,7 @@ static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned i /* aim for ~1% busy */ usleep(min_t(elapsed, elapsed / 10, 50 * 1000)); } while (!READ_ONCE(*ctl)); + put_ahnd(ahnd); } static void kill_children(int sig) @@ -361,9 +394,9 @@ static void kill_children(int sig) signal(sig, old); } -static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) +static void rc6_idle(int i915, const intel_ctx_t *ctx, uint64_t flags, unsigned int gt) { - const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; + const int64_t duration_ns = 2 * SLEEP_DURATION * (int64_t)NSEC_PER_SEC; const int tolerance = 20; /* Some RC6 is better than none! */ const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); struct { @@ -371,10 +404,11 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) unsigned int flags; double power; } phases[] = { + { "once", FREQUENT_BOOST | ONCE }, { "normal", 0 }, - { "boost", WAITBOOST }, - { "once", WAITBOOST | ONCE }, + { "boost", FREQUENT_BOOST } }; + int dirfd = igt_sysfs_gt_open(i915, gt); struct power_sample sample[2]; unsigned long slept, cycles; unsigned long *done; @@ -407,12 +441,21 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) assert_within_epsilon_debug(rc6, ts[1] - ts[0], 5, drpc); + if (gt) { + close(fd); + close(dirfd); + igt_power_close(&gpu); + return; + } + done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0); + stash_min = get_freq(dirfd, RPS_MIN_FREQ_MHZ); + for (int p = 0; p < ARRAY_SIZE(phases); p++) { memset(done, 0, 2 * sizeof(*done)); igt_fork(child, 1) /* Setup up a very light load */ - bg_load(i915, ctx_id, flags, phases[p].flags, done); + bg_load(i915, ctx, dirfd, flags, phases[p].flags, done, gt); igt_power_get_energy(&gpu, &sample[0]); cycles = -READ_ONCE(done[1]); @@ -451,15 +494,16 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) munmap(done, 4096); close(fd); + close(dirfd); igt_power_close(&gpu); - if (phases[1].power - phases[0].power > 10) { - igt_assert_f(2 * phases[2].power - phases[0].power <= phases[1].power, + if (phases[2].power - phases[1].power > 20 && !gem_has_lmem(i915)) { + igt_assert_f(2 * phases[0].power - phases[1].power <= phases[2].power, "Exceeded energy expectations for single busy wait load\n" "Used %.1fmW, min %.1fmW, max %.1fmW, expected less than %.1fmW\n", - phases[2].power, phases[0].power, phases[1].power, - phases[0].power + (phases[1].power - phases[0].power) / 2); + phases[0].power, phases[1].power, phases[2].power, + phases[1].power + (phases[2].power - phases[1].power) / 2); } } @@ -582,19 +626,22 @@ igt_main igt_subtest_with_dynamic("rc6-idle") { const struct intel_execution_engine2 *e; + igt_install_exit_handler(restore_freq); igt_require_gem(i915); gem_quiescent_gpu(i915); + intel_allocator_multiprocess_start(); i915_for_each_gt(i915, dirfd, gt) { ctx = intel_ctx_create_for_gt(i915, gt); for_each_ctx_engine(i915, ctx, e) { if (e->instance == 0) { igt_dynamic_f("gt%u-%s", gt, e->name) - rc6_idle(i915, ctx->id, e->flags, gt); + rc6_idle(i915, ctx, e->flags, gt); } } intel_ctx_destroy(i915, ctx); } + intel_allocator_multiprocess_stop(); } igt_subtest_with_dynamic("rc6-fence") { -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v7 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency 2025-05-29 9:08 ` [PATCH v7 1/2] " Sk Anirban @ 2025-05-30 19:43 ` Kamil Konieczny 2025-06-02 10:16 ` Anirban, Sk 0 siblings, 1 reply; 13+ messages in thread From: Kamil Konieczny @ 2025-05-30 19:43 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev, riana.tauro Hi Sk, On 2025-05-29 at 14:38:40 +0530, Sk Anirban wrote: > Leverage IGT spinner to trigger frequency scaling and > set RPS minimum frequency to RP0 for achieving peak frequency. > This method replaces the existing waitboost mechanism used > to reach maximum frequency. > > v4: > - Cosmetic changes (Riana) > > v5: > - Limit the power consumption test to GT0 only Imho this should be a separate patch with its own description why you need only for GT0. > > v6: > - Fix frequency restoration (Riana) > > v7: > - Fix variable scope (Riana) > > Signed-off-by: Sk Anirban <sk.anirban@intel.com> > Reviewed-by: Riana Tauro <riana.tauro@intel.com> > --- > tests/intel/i915_pm_rc6_residency.c | 125 +++++++++++++++++++--------- > 1 file changed, 86 insertions(+), 39 deletions(-) > > diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c > index c9128481d..e7a34b0da 100644 > --- a/tests/intel/i915_pm_rc6_residency.c > +++ b/tests/intel/i915_pm_rc6_residency.c > @@ -264,17 +264,6 @@ static bool __pmu_wait_for_rc6(int fd) > return false; > } > > -static uint32_t batch_create(int fd) > -{ > - const uint32_t bbe = MI_BATCH_BUFFER_END; > - uint32_t handle; > - > - handle = gem_create(fd, 4096); > - gem_write(fd, handle, 0, &bbe, sizeof(bbe)); > - > - return handle; > -} > - > static int open_pmu(int i915, uint64_t config) > { > int fd; > @@ -286,45 +275,88 @@ static int open_pmu(int i915, uint64_t config) > return fd; > } > > -#define WAITBOOST 0x1 > +#define FREQUENT_BOOST 0x1 > #define ONCE 0x2 > > static void sighandler(int sig) > { > } > > -static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) > +static uint32_t get_freq(int dirfd, uint8_t id) > +{ > + uint32_t val; > + > + igt_assert(igt_sysfs_rps_scanf(dirfd, id, "%u", &val) == 1); > + > + return val; > +} > + > +static int set_freq(int dirfd, uint8_t id, uint32_t val) > +{ > + return igt_sysfs_rps_printf(dirfd, id, "%u", val); > +} > + > +uint32_t stash_min; ^ static uint32_t stash_min; Also add: static int s_dirfd = -1; > + > +static void restore_freq(int sig) > +{ > + int i915 = -1; > + int dirfd; > + int gt = 0; > + Add here: if (s_dirfd == -1) return; > + i915 = drm_open_driver(DRIVER_INTEL); > + dirfd = igt_sysfs_gt_open(i915, 0); > + igt_sysfs_gt_open(i915, gt); > + > + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min)); > + > + drm_close_driver(i915); This looks incorrect, in signal handler you should only make one write with restoration of stash_min, so only dirfd and stash_min are needed. Also this is a last call before exit so no asserts here, if you really need it you could make restoring with assert at test end. In summary, here: if (stash_min) set_freq(s_dirfd, RPS_MIN_FREQ_MHZ, stash_min); > + close(dirfd); > +} > + > +static void bg_load(int i915, const intel_ctx_t *ctx, int dirfd, uint64_t engine_flags, > + unsigned int flags, unsigned long *ctl, unsigned int gt) > { > const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8; > - struct drm_i915_gem_exec_object2 obj = { > - .handle = batch_create(i915), > - }; > - struct drm_i915_gem_execbuffer2 execbuf = { > - .buffers_ptr = to_user_pointer(&obj), > - .buffer_count = 1, > - .flags = engine_flags, > - .rsvd1 = ctx_id, > - }; > struct sigaction act = { > .sa_handler = sighandler > }; > + int64_t timeout = 1; > + uint64_t ahnd; > + int rp0; > > + ahnd = get_reloc_ahnd(i915, ctx->id); > + rp0 = get_freq(dirfd, RPS_RP0_FREQ_MHZ); > sigaction(SIGINT, &act, NULL); > do { > uint64_t submit, wait, elapsed; > struct timespec tv = {}; > + igt_spin_t *spin; > > igt_nsec_elapsed(&tv); > - > - gem_execbuf(i915, &execbuf); > + spin = igt_spin_new(i915, > + .ahnd = ahnd, > + .ctx = ctx, > + .engine = engine_flags); > submit = igt_nsec_elapsed(&tv); > - if (flags & WAITBOOST) { > - gem_sync(i915, obj.handle); > + if (flags & FREQUENT_BOOST) { > + /* Set MIN freq to RP0 to achieve the peak freq */ > + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, rp0)); > + igt_assert(gem_bo_busy(i915, spin->handle)); > + gem_wait(i915, spin->handle, &timeout); > + > + /* Restore the MIN freq back to default */ > + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min)); > + igt_spin_end(spin); > + igt_spin_free(i915, spin); > + gem_quiescent_gpu(i915); > if (flags & ONCE) > - flags &= ~WAITBOOST; > + flags &= ~FREQUENT_BOOST; > } else { > - while (gem_bo_busy(i915, obj.handle)) > - usleep(0); > + igt_assert(gem_bo_busy(i915, spin->handle)); > + igt_spin_end(spin); > + igt_spin_free(i915, spin); > + gem_quiescent_gpu(i915); > } > wait = igt_nsec_elapsed(&tv); > > @@ -350,6 +382,7 @@ static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned i > /* aim for ~1% busy */ > usleep(min_t(elapsed, elapsed / 10, 50 * 1000)); > } while (!READ_ONCE(*ctl)); > + put_ahnd(ahnd); > } > > static void kill_children(int sig) > @@ -361,9 +394,9 @@ static void kill_children(int sig) > signal(sig, old); > } > > -static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) > +static void rc6_idle(int i915, const intel_ctx_t *ctx, uint64_t flags, unsigned int gt) > { > - const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; > + const int64_t duration_ns = 2 * SLEEP_DURATION * (int64_t)NSEC_PER_SEC; > const int tolerance = 20; /* Some RC6 is better than none! */ > const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); > struct { > @@ -371,10 +404,11 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) > unsigned int flags; > double power; > } phases[] = { > + { "once", FREQUENT_BOOST | ONCE }, > { "normal", 0 }, > - { "boost", WAITBOOST }, > - { "once", WAITBOOST | ONCE }, > + { "boost", FREQUENT_BOOST } > }; > + int dirfd = igt_sysfs_gt_open(i915, gt); > struct power_sample sample[2]; > unsigned long slept, cycles; > unsigned long *done; > @@ -407,12 +441,21 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) > > assert_within_epsilon_debug(rc6, ts[1] - ts[0], 5, drpc); > > + if (gt) { > + close(fd); > + close(dirfd); > + igt_power_close(&gpu); > + return; > + } > + > done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0); > > + stash_min = get_freq(dirfd, RPS_MIN_FREQ_MHZ); > + > for (int p = 0; p < ARRAY_SIZE(phases); p++) { > memset(done, 0, 2 * sizeof(*done)); > igt_fork(child, 1) /* Setup up a very light load */ > - bg_load(i915, ctx_id, flags, phases[p].flags, done); > + bg_load(i915, ctx, dirfd, flags, phases[p].flags, done, gt); > > igt_power_get_energy(&gpu, &sample[0]); > cycles = -READ_ONCE(done[1]); > @@ -451,15 +494,16 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) > > munmap(done, 4096); > close(fd); > + close(dirfd); > > igt_power_close(&gpu); > > - if (phases[1].power - phases[0].power > 10) { > - igt_assert_f(2 * phases[2].power - phases[0].power <= phases[1].power, > + if (phases[2].power - phases[1].power > 20 && !gem_has_lmem(i915)) { > + igt_assert_f(2 * phases[0].power - phases[1].power <= phases[2].power, > "Exceeded energy expectations for single busy wait load\n" > "Used %.1fmW, min %.1fmW, max %.1fmW, expected less than %.1fmW\n", > - phases[2].power, phases[0].power, phases[1].power, > - phases[0].power + (phases[1].power - phases[0].power) / 2); > + phases[0].power, phases[1].power, phases[2].power, > + phases[1].power + (phases[2].power - phases[1].power) / 2); > } > } > > @@ -582,19 +626,22 @@ igt_main > igt_subtest_with_dynamic("rc6-idle") { > const struct intel_execution_engine2 *e; > You should set stash_min and s_dirfd before installing exit handler. > + igt_install_exit_handler(restore_freq); This should be before ..multiprocess_start(), your test may skip in case require will trigger skip. Regards, Kamil > igt_require_gem(i915); > gem_quiescent_gpu(i915); > + intel_allocator_multiprocess_start(); > > i915_for_each_gt(i915, dirfd, gt) { > ctx = intel_ctx_create_for_gt(i915, gt); > for_each_ctx_engine(i915, ctx, e) { > if (e->instance == 0) { > igt_dynamic_f("gt%u-%s", gt, e->name) > - rc6_idle(i915, ctx->id, e->flags, gt); > + rc6_idle(i915, ctx, e->flags, gt); > } > } > intel_ctx_destroy(i915, ctx); > } > + intel_allocator_multiprocess_stop(); > } > > igt_subtest_with_dynamic("rc6-fence") { > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v7 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency 2025-05-30 19:43 ` Kamil Konieczny @ 2025-06-02 10:16 ` Anirban, Sk 0 siblings, 0 replies; 13+ messages in thread From: Anirban, Sk @ 2025-06-02 10:16 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, riana.tauro Hi Kamil, On 31-05-2025 01:13, Kamil Konieczny wrote: > Hi Sk, > On 2025-05-29 at 14:38:40 +0530, Sk Anirban wrote: >> Leverage IGT spinner to trigger frequency scaling and >> set RPS minimum frequency to RP0 for achieving peak frequency. >> This method replaces the existing waitboost mechanism used >> to reach maximum frequency. >> >> v4: >> - Cosmetic changes (Riana) >> >> v5: >> - Limit the power consumption test to GT0 only > Imho this should be a separate patch with its own description > why you need only for GT0. The test was targeting GT0 only in the past. Maybe I will add a descriptive commit message for this. >> v6: >> - Fix frequency restoration (Riana) >> >> v7: >> - Fix variable scope (Riana) >> >> Signed-off-by: Sk Anirban <sk.anirban@intel.com> >> Reviewed-by: Riana Tauro <riana.tauro@intel.com> >> --- >> tests/intel/i915_pm_rc6_residency.c | 125 +++++++++++++++++++--------- >> 1 file changed, 86 insertions(+), 39 deletions(-) >> >> diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c >> index c9128481d..e7a34b0da 100644 >> --- a/tests/intel/i915_pm_rc6_residency.c >> +++ b/tests/intel/i915_pm_rc6_residency.c >> @@ -264,17 +264,6 @@ static bool __pmu_wait_for_rc6(int fd) >> return false; >> } >> >> -static uint32_t batch_create(int fd) >> -{ >> - const uint32_t bbe = MI_BATCH_BUFFER_END; >> - uint32_t handle; >> - >> - handle = gem_create(fd, 4096); >> - gem_write(fd, handle, 0, &bbe, sizeof(bbe)); >> - >> - return handle; >> -} >> - >> static int open_pmu(int i915, uint64_t config) >> { >> int fd; >> @@ -286,45 +275,88 @@ static int open_pmu(int i915, uint64_t config) >> return fd; >> } >> >> -#define WAITBOOST 0x1 >> +#define FREQUENT_BOOST 0x1 >> #define ONCE 0x2 >> >> static void sighandler(int sig) >> { >> } >> >> -static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) >> +static uint32_t get_freq(int dirfd, uint8_t id) >> +{ >> + uint32_t val; >> + >> + igt_assert(igt_sysfs_rps_scanf(dirfd, id, "%u", &val) == 1); >> + >> + return val; >> +} >> + >> +static int set_freq(int dirfd, uint8_t id, uint32_t val) >> +{ >> + return igt_sysfs_rps_printf(dirfd, id, "%u", val); >> +} >> + >> +uint32_t stash_min; > ^ > static uint32_t stash_min; > > Also add: > static int s_dirfd = -1; > >> + >> +static void restore_freq(int sig) >> +{ >> + int i915 = -1; >> + int dirfd; >> + int gt = 0; >> + > Add here: > if (s_dirfd == -1) > return; > >> + i915 = drm_open_driver(DRIVER_INTEL); >> + dirfd = igt_sysfs_gt_open(i915, 0); >> + igt_sysfs_gt_open(i915, gt); >> + >> + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min)); >> + >> + drm_close_driver(i915); > This looks incorrect, in signal handler you should only make one > write with restoration of stash_min, so only dirfd and stash_min > are needed. > Also this is a last call before exit so no asserts here, if you > really need it you could make restoring with assert at test end. > In summary, here: > if (stash_min) > set_freq(s_dirfd, RPS_MIN_FREQ_MHZ, stash_min); I will fix the above code, I will be removing the igt_assert from the restoration block. >> + close(dirfd); >> +} >> + >> +static void bg_load(int i915, const intel_ctx_t *ctx, int dirfd, uint64_t engine_flags, >> + unsigned int flags, unsigned long *ctl, unsigned int gt) >> { >> const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8; >> - struct drm_i915_gem_exec_object2 obj = { >> - .handle = batch_create(i915), >> - }; >> - struct drm_i915_gem_execbuffer2 execbuf = { >> - .buffers_ptr = to_user_pointer(&obj), >> - .buffer_count = 1, >> - .flags = engine_flags, >> - .rsvd1 = ctx_id, >> - }; >> struct sigaction act = { >> .sa_handler = sighandler >> }; >> + int64_t timeout = 1; >> + uint64_t ahnd; >> + int rp0; >> >> + ahnd = get_reloc_ahnd(i915, ctx->id); >> + rp0 = get_freq(dirfd, RPS_RP0_FREQ_MHZ); >> sigaction(SIGINT, &act, NULL); >> do { >> uint64_t submit, wait, elapsed; >> struct timespec tv = {}; >> + igt_spin_t *spin; >> >> igt_nsec_elapsed(&tv); >> - >> - gem_execbuf(i915, &execbuf); >> + spin = igt_spin_new(i915, >> + .ahnd = ahnd, >> + .ctx = ctx, >> + .engine = engine_flags); >> submit = igt_nsec_elapsed(&tv); >> - if (flags & WAITBOOST) { >> - gem_sync(i915, obj.handle); >> + if (flags & FREQUENT_BOOST) { >> + /* Set MIN freq to RP0 to achieve the peak freq */ >> + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, rp0)); >> + igt_assert(gem_bo_busy(i915, spin->handle)); >> + gem_wait(i915, spin->handle, &timeout); >> + >> + /* Restore the MIN freq back to default */ >> + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min)); >> + igt_spin_end(spin); >> + igt_spin_free(i915, spin); >> + gem_quiescent_gpu(i915); >> if (flags & ONCE) >> - flags &= ~WAITBOOST; >> + flags &= ~FREQUENT_BOOST; >> } else { >> - while (gem_bo_busy(i915, obj.handle)) >> - usleep(0); >> + igt_assert(gem_bo_busy(i915, spin->handle)); >> + igt_spin_end(spin); >> + igt_spin_free(i915, spin); >> + gem_quiescent_gpu(i915); >> } >> wait = igt_nsec_elapsed(&tv); >> >> @@ -350,6 +382,7 @@ static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned i >> /* aim for ~1% busy */ >> usleep(min_t(elapsed, elapsed / 10, 50 * 1000)); >> } while (!READ_ONCE(*ctl)); >> + put_ahnd(ahnd); >> } >> >> static void kill_children(int sig) >> @@ -361,9 +394,9 @@ static void kill_children(int sig) >> signal(sig, old); >> } >> >> -static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) >> +static void rc6_idle(int i915, const intel_ctx_t *ctx, uint64_t flags, unsigned int gt) >> { >> - const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; >> + const int64_t duration_ns = 2 * SLEEP_DURATION * (int64_t)NSEC_PER_SEC; >> const int tolerance = 20; /* Some RC6 is better than none! */ >> const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); >> struct { >> @@ -371,10 +404,11 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) >> unsigned int flags; >> double power; >> } phases[] = { >> + { "once", FREQUENT_BOOST | ONCE }, >> { "normal", 0 }, >> - { "boost", WAITBOOST }, >> - { "once", WAITBOOST | ONCE }, >> + { "boost", FREQUENT_BOOST } >> }; >> + int dirfd = igt_sysfs_gt_open(i915, gt); >> struct power_sample sample[2]; >> unsigned long slept, cycles; >> unsigned long *done; >> @@ -407,12 +441,21 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) >> >> assert_within_epsilon_debug(rc6, ts[1] - ts[0], 5, drpc); >> >> + if (gt) { >> + close(fd); >> + close(dirfd); >> + igt_power_close(&gpu); >> + return; >> + } >> + >> done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0); >> >> + stash_min = get_freq(dirfd, RPS_MIN_FREQ_MHZ); >> + >> for (int p = 0; p < ARRAY_SIZE(phases); p++) { >> memset(done, 0, 2 * sizeof(*done)); >> igt_fork(child, 1) /* Setup up a very light load */ >> - bg_load(i915, ctx_id, flags, phases[p].flags, done); >> + bg_load(i915, ctx, dirfd, flags, phases[p].flags, done, gt); >> >> igt_power_get_energy(&gpu, &sample[0]); >> cycles = -READ_ONCE(done[1]); >> @@ -451,15 +494,16 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt) >> >> munmap(done, 4096); >> close(fd); >> + close(dirfd); >> >> igt_power_close(&gpu); >> >> - if (phases[1].power - phases[0].power > 10) { >> - igt_assert_f(2 * phases[2].power - phases[0].power <= phases[1].power, >> + if (phases[2].power - phases[1].power > 20 && !gem_has_lmem(i915)) { >> + igt_assert_f(2 * phases[0].power - phases[1].power <= phases[2].power, >> "Exceeded energy expectations for single busy wait load\n" >> "Used %.1fmW, min %.1fmW, max %.1fmW, expected less than %.1fmW\n", >> - phases[2].power, phases[0].power, phases[1].power, >> - phases[0].power + (phases[1].power - phases[0].power) / 2); >> + phases[0].power, phases[1].power, phases[2].power, >> + phases[1].power + (phases[2].power - phases[1].power) / 2); >> } >> } >> >> @@ -582,19 +626,22 @@ igt_main >> igt_subtest_with_dynamic("rc6-idle") { >> const struct intel_execution_engine2 *e; >> > You should set stash_min and s_dirfd before installing exit handler. > >> + igt_install_exit_handler(restore_freq); > This should be before ..multiprocess_start(), your test may skip > in case require will trigger skip. > > Regards, > Kamil sure, I will check this. Thanks, Anirban > >> igt_require_gem(i915); >> gem_quiescent_gpu(i915); >> + intel_allocator_multiprocess_start(); >> >> i915_for_each_gt(i915, dirfd, gt) { >> ctx = intel_ctx_create_for_gt(i915, gt); >> for_each_ctx_engine(i915, ctx, e) { >> if (e->instance == 0) { >> igt_dynamic_f("gt%u-%s", gt, e->name) >> - rc6_idle(i915, ctx->id, e->flags, gt); >> + rc6_idle(i915, ctx, e->flags, gt); >> } >> } >> intel_ctx_destroy(i915, ctx); >> } >> + intel_allocator_multiprocess_stop(); >> } >> >> igt_subtest_with_dynamic("rc6-fence") { >> -- >> 2.34.1 >> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v7 2/2] HAX: Add rc6-idle tests to fast feedback list 2025-05-29 9:08 [i-g-t, v7, 0/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban 2025-05-29 9:08 ` [PATCH v7 1/2] " Sk Anirban @ 2025-05-29 9:08 ` Sk Anirban 2025-05-29 10:24 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Sk Anirban @ 2025-05-29 9:08 UTC (permalink / raw) To: igt-dev; +Cc: riana.tauro, Sk Anirban Add pm_rc6_residency-rc6@idle to i915-fast-feedback Signed-off-by: Sk Anirban <sk.anirban@intel.com> --- tests/intel-ci/fast-feedback.testlist | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 82395e7ea..c34caed55 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -48,6 +48,7 @@ igt@gem_tiled_fence_blits@basic igt@gem_tiled_pread_basic igt@gem_wait@busy@all-engines igt@gem_wait@wait@all-engines +igt@i915_pm_rc6_residency@rc6-idle igt@i915_getparams_basic@basic-eu-total igt@i915_getparams_basic@basic-subslice-total igt@i915_hangman@error-state-basic -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) 2025-05-29 9:08 [i-g-t, v7, 0/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban 2025-05-29 9:08 ` [PATCH v7 1/2] " Sk Anirban 2025-05-29 9:08 ` [PATCH v7 2/2] HAX: Add rc6-idle tests to fast feedback list Sk Anirban @ 2025-05-29 10:24 ` Patchwork 2025-05-29 10:25 ` ✗ i915.CI.BAT: failure " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-05-29 10:24 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1475 bytes --] == Series Details == Series: tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) URL : https://patchwork.freedesktop.org/series/148054/ State : success == Summary == CI Bug Log - changes from XEIGT_8383_BAT -> XEIGTPW_13206_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (7 -> 8) ------------------------------ Additional (1): bat-bmg-2 Known issues ------------ Here are the changes found in XEIGTPW_13206_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_module_load@load: - bat-bmg-2: NOTRUN -> [ABORT][1] ([Intel XE#5155]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13206/bat-bmg-2/igt@xe_module_load@load.html [Intel XE#5155]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5155 Build changes ------------- * IGT: IGT_8383 -> IGTPW_13206 * Linux: xe-3156-2f74377e0846598397723197386e6d9d65b7711e -> xe-3157-bf0749a9930efe943554c3f73454d03c43779d15 IGTPW_13206: 0b49229cc7ef6d577ae4afb48a5149a197a8dd43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8383: 8383 xe-3156-2f74377e0846598397723197386e6d9d65b7711e: 2f74377e0846598397723197386e6d9d65b7711e xe-3157-bf0749a9930efe943554c3f73454d03c43779d15: bf0749a9930efe943554c3f73454d03c43779d15 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13206/index.html [-- Attachment #2: Type: text/html, Size: 2050 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.BAT: failure for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) 2025-05-29 9:08 [i-g-t, v7, 0/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban ` (2 preceding siblings ...) 2025-05-29 10:24 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) Patchwork @ 2025-05-29 10:25 ` Patchwork 2025-05-29 17:23 ` ✓ Xe.CI.Full: success " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-05-29 10:25 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9463 bytes --] == Series Details == Series: tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) URL : https://patchwork.freedesktop.org/series/148054/ State : failure == Summary == CI Bug Log - changes from IGT_8383 -> IGTPW_13206 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13206 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13206, 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_13206/index.html Participating hosts (46 -> 43) ------------------------------ Missing (3): bat-rpls-4 bat-arlh-2 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13206: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rc6_residency@rc6-idle: - fi-bsw-n3050: NOTRUN -> [ABORT][1] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-bsw-n3050/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - fi-bsw-nick: NOTRUN -> [ABORT][2] +1 other test abort [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-bsw-nick/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html - bat-apl-1: NOTRUN -> [ABORT][3] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-apl-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_selftest@live@execlists: - bat-twl-2: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-twl-2/igt@i915_selftest@live@execlists.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-twl-2/igt@i915_selftest@live@execlists.html Known issues ------------ Here are the changes found in IGTPW_13206 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - fi-hsw-4770: NOTRUN -> [WARN][6] ([i915#2681]) +1 other test warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-hsw-4770/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - fi-ilk-650: NOTRUN -> [SKIP][7] +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-ilk-650/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html - fi-blb-e6850: NOTRUN -> [SKIP][8] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-blb-e6850/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html - fi-pnv-d510: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-pnv-d510/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - fi-elk-e7500: NOTRUN -> [SKIP][10] +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-elk-e7500/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_selftest@live: - bat-arlh-3: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061] / [i915#14243]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-arlh-3/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-arlh-3/igt@i915_selftest@live.html - bat-twl-2: [PASS][13] -> [INCOMPLETE][14] ([i915#14096]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-twl-2/igt@i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@active: - bat-dg2-14: [PASS][15] -> [ABORT][16] ([i915#14201]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-dg2-14/igt@i915_selftest@live@active.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-dg2-14/igt@i915_selftest@live@active.html * igt@i915_selftest@live@guc_multi_lrc: - bat-twl-1: [PASS][17] -> [INCOMPLETE][18] ([i915#14096]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-twl-1/igt@i915_selftest@live@guc_multi_lrc.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-twl-1/igt@i915_selftest@live@guc_multi_lrc.html * igt@i915_selftest@live@hugepages: - bat-arlh-3: [PASS][19] -> [DMESG-FAIL][20] ([i915#14243]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-arlh-3/igt@i915_selftest@live@hugepages.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-arlh-3/igt@i915_selftest@live@hugepages.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][21] -> [DMESG-FAIL][22] ([i915#12061]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-arlh-3/igt@i915_selftest@live@workarounds.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [PASS][23] -> [DMESG-FAIL][24] ([i915#12061]) +1 other test dmesg-fail [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-arls-5/igt@i915_selftest@live@workarounds.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [DMESG-WARN][25] ([i915#13890]) -> [PASS][26] +78 other tests pass [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][27] ([i915#12061]) -> [PASS][28] +1 other test pass [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - bat-dg2-9: [DMESG-FAIL][29] ([i915#12061]) -> [PASS][30] +1 other test pass [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-dg2-9/igt@i915_selftest@live@workarounds.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-dg2-9/igt@i915_selftest@live@workarounds.html - bat-dg2-14: [DMESG-FAIL][31] ([i915#12061]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-dg2-14/igt@i915_selftest@live@workarounds.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][33] ([i915#12061]) -> [PASS][34] +1 other test pass [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-mtlp-9/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-dg2-14: [DMESG-FAIL][35] ([i915#12061]) -> [ABORT][36] ([i915#13696] / [i915#14201]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-dg2-14/igt@i915_selftest@live.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-dg2-14/igt@i915_selftest@live.html - bat-atsm-1: [DMESG-FAIL][37] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][38] ([i915#12061] / [i915#13929]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-atsm-1/igt@i915_selftest@live.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@mman: - bat-atsm-1: [DMESG-FAIL][39] ([i915#14204]) -> [DMESG-FAIL][40] ([i915#13929]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-atsm-1/igt@i915_selftest@live@mman.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-atsm-1/igt@i915_selftest@live@mman.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13696]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13696 [i915#13890]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13890 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14096]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14096 [i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#14243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14243 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8383 -> IGTPW_13206 * Linux: CI_DRM_16610 -> CI_DRM_16611 CI-20190529: 20190529 CI_DRM_16610: 2f74377e0846598397723197386e6d9d65b7711e @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16611: bf0749a9930efe943554c3f73454d03c43779d15 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13206: 0b49229cc7ef6d577ae4afb48a5149a197a8dd43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8383: 8383 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/index.html [-- Attachment #2: Type: text/html, Size: 11557 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.Full: success for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) 2025-05-29 9:08 [i-g-t, v7, 0/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban ` (3 preceding siblings ...) 2025-05-29 10:25 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-05-29 17:23 ` Patchwork 2025-05-30 11:23 ` ✓ i915.CI.BAT: " Patchwork 2025-05-30 12:52 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-05-29 17:23 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1090 bytes --] == Series Details == Series: tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) URL : https://patchwork.freedesktop.org/series/148054/ State : success == Summary == CI Bug Log - changes from XEIGT_8383_FULL -> XEIGTPW_13206_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Changes ------- No changes found Build changes ------------- * IGT: IGT_8383 -> IGTPW_13206 * Linux: xe-3156-2f74377e0846598397723197386e6d9d65b7711e -> xe-3157-bf0749a9930efe943554c3f73454d03c43779d15 IGTPW_13206: 0b49229cc7ef6d577ae4afb48a5149a197a8dd43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8383: 8383 xe-3156-2f74377e0846598397723197386e6d9d65b7711e: 2f74377e0846598397723197386e6d9d65b7711e xe-3157-bf0749a9930efe943554c3f73454d03c43779d15: bf0749a9930efe943554c3f73454d03c43779d15 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13206/index.html [-- Attachment #2: Type: text/html, Size: 1649 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) 2025-05-29 9:08 [i-g-t, v7, 0/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban ` (4 preceding siblings ...) 2025-05-29 17:23 ` ✓ Xe.CI.Full: success " Patchwork @ 2025-05-30 11:23 ` Patchwork 2025-05-30 12:52 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-05-30 11:23 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9123 bytes --] == Series Details == Series: tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) URL : https://patchwork.freedesktop.org/series/148054/ State : success == Summary == CI Bug Log - changes from IGT_8383 -> IGTPW_13206 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/index.html Participating hosts (46 -> 43) ------------------------------ Missing (3): bat-rpls-4 bat-arlh-2 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13206 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rc6_residency@rc6-idle: - fi-bsw-n3050: NOTRUN -> [ABORT][1] ([i915#14336]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-bsw-n3050/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - fi-hsw-4770: NOTRUN -> [WARN][2] ([i915#2681]) +1 other test warn [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-hsw-4770/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - fi-ilk-650: NOTRUN -> [SKIP][3] +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-ilk-650/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html - fi-blb-e6850: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-blb-e6850/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html - fi-bsw-nick: NOTRUN -> [ABORT][5] ([i915#14336]) +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-bsw-nick/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html - fi-pnv-d510: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-pnv-d510/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html - bat-apl-1: NOTRUN -> [ABORT][7] ([i915#14336]) +1 other test abort [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-apl-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - fi-elk-e7500: NOTRUN -> [SKIP][8] +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/fi-elk-e7500/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_selftest@live: - bat-arlh-3: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061] / [i915#14243]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-arlh-3/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-arlh-3/igt@i915_selftest@live.html - bat-twl-2: [PASS][11] -> [INCOMPLETE][12] ([i915#14096]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-twl-2/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@active: - bat-dg2-14: [PASS][13] -> [ABORT][14] ([i915#14201]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-dg2-14/igt@i915_selftest@live@active.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-dg2-14/igt@i915_selftest@live@active.html * igt@i915_selftest@live@execlists: - bat-twl-2: [PASS][15] -> [INCOMPLETE][16] ([i915#14376]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-twl-2/igt@i915_selftest@live@execlists.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-twl-2/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@guc_multi_lrc: - bat-twl-1: [PASS][17] -> [INCOMPLETE][18] ([i915#14096]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-twl-1/igt@i915_selftest@live@guc_multi_lrc.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-twl-1/igt@i915_selftest@live@guc_multi_lrc.html * igt@i915_selftest@live@hugepages: - bat-arlh-3: [PASS][19] -> [DMESG-FAIL][20] ([i915#14243]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-arlh-3/igt@i915_selftest@live@hugepages.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-arlh-3/igt@i915_selftest@live@hugepages.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][21] -> [DMESG-FAIL][22] ([i915#12061]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-arlh-3/igt@i915_selftest@live@workarounds.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [PASS][23] -> [DMESG-FAIL][24] ([i915#12061]) +1 other test dmesg-fail [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-arls-5/igt@i915_selftest@live@workarounds.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [DMESG-WARN][25] ([i915#13890]) -> [PASS][26] +78 other tests pass [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][27] ([i915#12061]) -> [PASS][28] +1 other test pass [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - bat-dg2-9: [DMESG-FAIL][29] ([i915#12061]) -> [PASS][30] +1 other test pass [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-dg2-9/igt@i915_selftest@live@workarounds.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-dg2-9/igt@i915_selftest@live@workarounds.html - bat-dg2-14: [DMESG-FAIL][31] ([i915#12061]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-dg2-14/igt@i915_selftest@live@workarounds.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][33] ([i915#12061]) -> [PASS][34] +1 other test pass [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-mtlp-9/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-dg2-14: [DMESG-FAIL][35] ([i915#12061]) -> [ABORT][36] ([i915#13696] / [i915#14201]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-dg2-14/igt@i915_selftest@live.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-dg2-14/igt@i915_selftest@live.html - bat-atsm-1: [DMESG-FAIL][37] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][38] ([i915#12061] / [i915#13929]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-atsm-1/igt@i915_selftest@live.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@mman: - bat-atsm-1: [DMESG-FAIL][39] ([i915#14204]) -> [DMESG-FAIL][40] ([i915#13929]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8383/bat-atsm-1/igt@i915_selftest@live@mman.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/bat-atsm-1/igt@i915_selftest@live@mman.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13696]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13696 [i915#13890]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13890 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14096]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14096 [i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#14243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14243 [i915#14336]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14336 [i915#14376]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14376 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8383 -> IGTPW_13206 * Linux: CI_DRM_16610 -> CI_DRM_16611 CI-20190529: 20190529 CI_DRM_16610: 2f74377e0846598397723197386e6d9d65b7711e @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16611: bf0749a9930efe943554c3f73454d03c43779d15 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13206: 0b49229cc7ef6d577ae4afb48a5149a197a8dd43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8383: 8383 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/index.html [-- Attachment #2: Type: text/html, Size: 11315 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) 2025-05-29 9:08 [i-g-t, v7, 0/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban ` (5 preceding siblings ...) 2025-05-30 11:23 ` ✓ i915.CI.BAT: " Patchwork @ 2025-05-30 12:52 ` Patchwork 2025-05-30 17:08 ` Anirban, Sk 6 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2025-05-30 12:52 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 119507 bytes --] == Series Details == Series: tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) URL : https://patchwork.freedesktop.org/series/148054/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16611_full -> IGTPW_13206_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13206_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13206_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_13206/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13206_full: ### IGT changes ### #### Possible regressions #### * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@perf_pmu@module-unload.html New tests --------- New tests have been introduced between CI_DRM_16611_full and IGTPW_13206_full: ### New IGT tests (3) ### * igt@kms_flip@2x-flip-vs-fences-interruptible@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.97] s * igt@kms_flip@2x-flip-vs-fences-interruptible@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.76] s * igt@kms_flip@2x-flip-vs-fences-interruptible@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.69] s Known issues ------------ Here are the changes found in IGTPW_13206_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#7697]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#9323]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][8] ([i915#9323]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@gem_ccs@suspend-resume.html * igt@gem_compute@compute-square: - shard-dg2: NOTRUN -> [FAIL][9] ([i915#13665]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_compute@compute-square.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6335]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [PASS][11] -> [FAIL][12] ([i915#9561]) +1 other test fail [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@gem_ctx_freq@sysfs.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][15] ([i915#1099]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb5/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ctx_sseu@mmap-args.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][18] ([i915#10030] / [i915#7975] / [i915#8213]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][19] -> [FAIL][20] ([i915#5784]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@gem_eio@reset-stress.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4771]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#4812]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#4525]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_exec_balancer@sliced.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][26] ([i915#11713]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#6334]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_flush@basic-wb-ro-default: - shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_flush@basic-wb-ro-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_gttfill@basic: - shard-rkl: [PASS][33] -> [DMESG-WARN][34] ([i915#12917] / [i915#12964]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@gem_exec_gttfill@basic.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_exec_gttfill@basic.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-read.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-dg2-9: NOTRUN -> [SKIP][38] ([i915#3281]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +16 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#7276]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][43] +66 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@gem_exec_schedule@thriceslice.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613] / [i915#7582]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613] / [i915#7582]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [DMESG-WARN][52] ([i915#5493]) +1 other test dmesg-warn [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +6 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#12193]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4565]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2-9: NOTRUN -> [SKIP][58] ([i915#4077]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_mmap_wc@copy.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@gem_mmap_wc@write.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#4083]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +13 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@bench: - shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#3282]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_pread@bench.html * igt@gem_pxp@create-regular-context-1: - shard-dg2-9: NOTRUN -> [SKIP][68] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#13398]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][70] ([i915#12917] / [i915#12964]) +4 other tests timeout [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: [PASS][72] -> [TIMEOUT][73] ([i915#12917] / [i915#12964]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gem_set_tiling_vs_pwrite.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4077]) +14 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiling_max_stride: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4077]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2-9: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4958]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4958]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [PASS][89] -> [INCOMPLETE][90] ([i915#13356]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][91] +11 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +6 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@secure-batches: - shard-dg2-9: NOTRUN -> [SKIP][97] ([i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@busy-check-all@vcs1: - shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#11527]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@i915_drm_fdinfo@busy-check-all@vcs1.html * igt@i915_drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#14073]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@i915_drm_fdinfo@most-busy-check-all.html * igt@i915_drm_fdinfo@most-busy-check-all@bcs0: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#14073]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html * igt@i915_drm_fdinfo@most-busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#14073]) +7 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#6590]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][104] ([i915#13790] / [i915#2681]) +1 other test warn [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][105] ([i915#13790] / [i915#2681]) +4 other tests warn [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#11681] / [i915#6621]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#11681]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#11681]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#4387]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][110] ([i915#4387]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live: - shard-rkl: [PASS][111] -> [DMESG-FAIL][112] ([i915#13550]) +1 other test dmesg-fail [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@i915_selftest@live.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@i915_selftest@live.html * igt@i915_selftest@perf: - shard-snb: [PASS][113] -> [ABORT][114] ([i915#11703]) +1 other test abort [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb2/igt@i915_selftest@perf.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@i915_selftest@perf.html * igt@i915_suspend@basic-s3-without-i915: - shard-glk: NOTRUN -> [DMESG-WARN][115] ([i915#13736]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][116] ([i915#4817]) +1 other test incomplete [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#7707]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4212]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2-9: NOTRUN -> [SKIP][120] ([i915#4212]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4212]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#12454] / [i915#12712]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#8709]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#8709]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#1769] / [i915#3555]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][126] +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5286]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +9 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/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-mtlp: NOTRUN -> [SKIP][131] +6 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +8 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3638]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#3638]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#5190]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2-9: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#5190]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +172 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +24 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][141] +444 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2-9: NOTRUN -> [SKIP][143] ([i915#12313]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#6095]) +59 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#14098] / [i915#6095]) +55 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#6095]) +39 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6095]) +34 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#6095]) +37 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#6095]) +21 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2-9: NOTRUN -> [SKIP][151] ([i915#6095]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#12313]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#6095]) +142 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3742]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3742]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#13784]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#13781]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#3742]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2-9: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +15 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +6 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_content_protection@atomic.html - shard-dg1: NOTRUN -> [SKIP][167] ([i915#7116] / [i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_content_protection@atomic.html - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_content_protection@atomic.html - shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#7118] / [i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3299]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3116]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg2-9: NOTRUN -> [SKIP][174] ([i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#7118]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#7118]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#7116]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [FAIL][178] ([i915#1339] / [i915#7173]) +1 other test fail [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][179] ([i915#7118] / [i915#9424]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#13049]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu: NOTRUN -> [SKIP][181] ([i915#13049]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8814]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3555]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#13049]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x512.html - shard-rkl: NOTRUN -> [SKIP][185] ([i915#13049]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555]) +9 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: NOTRUN -> [FAIL][188] ([i915#13566]) +1 other test fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][189] ([i915#13566]) +2 other tests fail [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#13049]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#13046] / [i915#5354]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/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][193] ([i915#4103] / [i915#4213]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#4103]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#4103]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg2-9: NOTRUN -> [SKIP][196] ([i915#4103] / [i915#4213]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-snb: [PASS][197] -> [SKIP][198] +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2-9: NOTRUN -> [SKIP][199] ([i915#13046] / [i915#5354]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#9067]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#9723]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2-9: NOTRUN -> [SKIP][202] ([i915#9833]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3804]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3804]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#1257]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][206] ([i915#1257]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#13748]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#13748]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][209] -> [SKIP][210] ([i915#13707]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2-9: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3840]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dsc@dsc-basic.html - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3840] / [i915#9688]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#3840]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3840]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][216] ([i915#3840]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3840] / [i915#9688]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-1/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-9: NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9053]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#1839]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#658]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#658]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#658]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][224] ([i915#658]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#9934]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#9934]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#3637] / [i915#9934]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9934]) +19 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#8381]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg2: NOTRUN -> [SKIP][230] ([i915#8381]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#3637] / [i915#9934]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [PASS][232] -> [TIMEOUT][233] ([i915#14033] / [i915#14350]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html - shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#12745] / [i915#4839]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#4839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][236] -> [TIMEOUT][237] ([i915#14033]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2-9: NOTRUN -> [SKIP][238] ([i915#9934]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [PASS][239] -> [FAIL][240] ([i915#11832] / [i915#13734]) +1 other test fail [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3637] / [i915#9934]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@basic-plain-flip@b-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][242] ([i915#12964]) +20 other tests dmesg-warn [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1: - shard-rkl: [PASS][243] -> [DMESG-WARN][244] ([i915#12964]) +11 other tests dmesg-warn [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1: - shard-tglu: [PASS][245] -> [FAIL][246] ([i915#13734]) +1 other test fail [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8810] / [i915#8813]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8810] / [i915#8813]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-dg1: [PASS][251] -> [DMESG-WARN][252] ([i915#4423]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][254] ([i915#2587] / [i915#2672]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/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][255] ([i915#2672] / [i915#3555]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][256] ([i915#2672]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#2672]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#3555] / [i915#5190]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#2672]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555]) +2 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#10055]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#10055]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][266] ([i915#3458]) +6 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][267] +36 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][268] +39 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-dg2-9: NOTRUN -> [SKIP][269] ([i915#5354]) +15 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#1825]) +6 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][271] +15 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#8708]) +25 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#9766]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#3458]) +16 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#8708]) +8 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][276] ([i915#8708]) +6 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#3023]) +45 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8708]) +7 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#1825]) +63 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#5354]) +34 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][281] +61 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#3458]) +6 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#6118]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-dg2-9: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html - shard-dg1: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][289] ([i915#10656]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#12388]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][291] ([i915#12388]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#10656]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#12394]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-9: NOTRUN -> [SKIP][294] ([i915#4816]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][295] ([i915#4816]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#6301]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][297] ([i915#10647] / [i915#12169]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][298] ([i915#10647]) +1 other test fail [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_cursor@overlay: - shard-mtlp: [PASS][299] -> [DMESG-WARN][300] ([i915#14371]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-8/igt@kms_plane_cursor@overlay.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_plane_cursor@overlay.html * igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64: - shard-mtlp: [PASS][301] -> [DMESG-WARN][302] ([i915#13736]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-8/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html * igt@kms_plane_lowres@tiling-x: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#11614] / [i915#3582]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_multiple@2x-tiling-x: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#13958]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#13958]) +2 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][307] ([i915#13958]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#14259]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#6953]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#12247] / [i915#9423]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#12247]) +4 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#12247]) +8 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-9: NOTRUN -> [SKIP][313] ([i915#12247] / [i915#9423]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-dg2-9: NOTRUN -> [SKIP][314] ([i915#12247]) +3 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html - shard-rkl: NOTRUN -> [SKIP][315] ([i915#12247]) +15 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#6953] / [i915#9423]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#12247]) +11 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12247]) +8 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#12247] / [i915#6953]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#5354]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#5354]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9812]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#9685]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][326] -> [SKIP][327] ([i915#9340]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][328] ([i915#3828]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9519]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][330] -> [SKIP][331] ([i915#9519]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#9519]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#9519]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#6524] / [i915#6805]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#12316]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][336] ([i915#11520]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#9808]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#11520]) +3 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#11520]) +17 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][340] ([i915#11520]) +10 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk9/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-dg2-9: NOTRUN -> [SKIP][341] ([i915#11520]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/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-tglu-1: NOTRUN -> [SKIP][342] ([i915#11520]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#11520]) +7 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#11520]) +7 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#9683]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +7 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +19 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#9688]) +6 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_psr@pr-cursor-blt.html * igt@kms_psr@pr-suspend: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +9 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@kms_psr@pr-suspend.html * igt@kms_psr@psr2-cursor-render: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#9732]) +13 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_psr@psr2-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#9732]) +10 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +33 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#9685]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#9685]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#12755] / [i915#5190]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#5289]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#12755]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][358] ([i915#5465]) +2 other tests fail [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2-9: NOTRUN -> [SKIP][359] ([i915#3555]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#3555]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#8623]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#8623]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-9: NOTRUN -> [SKIP][363] ([i915#8623]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#9906]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2-9: NOTRUN -> [SKIP][365] ([i915#9906]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-rkl: NOTRUN -> [SKIP][366] ([i915#9906]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#9906]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#9906]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu: NOTRUN -> [SKIP][369] ([i915#9906]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#8808] / [i915#9906]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][371] ([i915#2437]) +3 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk5/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][372] ([i915#2437]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][373] ([i915#2437]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#2437] / [i915#9412]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][375] ([i915#2437] / [i915#9412]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#2436]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#7387]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#2434]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@perf@mi-rpc.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-mtlp: [PASS][379] -> [FAIL][380] ([i915#4349]) +5 other tests fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@bcs0.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#8516]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#3708]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html - shard-dg2: NOTRUN -> [SKIP][383] ([i915#3708]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#3291] / [i915#3708]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#3291] / [i915#3708]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#3708]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-dg2-9: NOTRUN -> [SKIP][387] ([i915#3708]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#9917]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][389] ([i915#13356]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@gem_ccs@suspend-resume.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][391] ([i915#12392] / [i915#13356]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_eio@kms: - shard-tglu: [DMESG-WARN][393] ([i915#13363]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-5/igt@gem_eio@kms.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_eio@kms.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][395] ([i915#5493]) -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_offset@partial-remap@smem0: - shard-rkl: [DMESG-WARN][397] ([i915#12964]) -> [PASS][398] +9 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-4/igt@gem_mmap_offset@partial-remap@smem0.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_mmap_offset@partial-remap@smem0.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [INCOMPLETE][399] ([i915#13809]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-3/igt@gem_softpin@noreloc-s3.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@gem_softpin@noreloc-s3.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][401] ([i915#12455] / [i915#13820]) -> [PASS][402] +1 other test pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@kms_color@ctm-red-to-blue: - shard-dg1: [DMESG-WARN][403] ([i915#4423]) -> [PASS][404] +1 other test pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_color@ctm-red-to-blue.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_color@ctm-red-to-blue.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-tglu: [FAIL][405] ([i915#13566]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-5/igt@kms_cursor_crc@cursor-random-256x85.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-snb: [INCOMPLETE][407] ([i915#14345]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [SKIP][409] ([i915#13749]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-sst.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][411] ([i915#13734]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-snb: [SKIP][413] -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: [SKIP][415] ([i915#3555] / [i915#8228]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-7/igt@kms_hdr@bpc-switch-dpms.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][417] ([i915#9519]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][419] ([i915#9519]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@perf_pmu@module-unload: - shard-mtlp: [INCOMPLETE][421] ([i915#13520]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-4/igt@perf_pmu@module-unload.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@perf_pmu@module-unload.html - shard-dg2: [INCOMPLETE][423] ([i915#13520]) -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@perf_pmu@module-unload.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@perf_pmu@module-unload.html #### Warnings #### * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][425] ([i915#6095]) -> [SKIP][426] ([i915#14098] / [i915#6095]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg1: [SKIP][427] ([i915#4423] / [i915#6095]) -> [SKIP][428] ([i915#6095]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_content_protection@legacy: - shard-dg2: [FAIL][429] ([i915#7173]) -> [SKIP][430] ([i915#7118] / [i915#9424]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@kms_content_protection@legacy.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_content_protection@legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-rkl: [FAIL][431] ([i915#2346]) -> [DMESG-WARN][432] ([i915#12964]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][433] ([i915#10433] / [i915#3458]) -> [SKIP][434] ([i915#3458]) +1 other test skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-dg1: [SKIP][435] -> [SKIP][436] ([i915#4423]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][437] ([i915#3458]) -> [SKIP][438] ([i915#10433] / [i915#3458]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][439] ([i915#12713]) -> [SKIP][440] ([i915#13331]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: [SKIP][441] ([i915#12713]) -> [SKIP][442] ([i915#1187] / [i915#12713]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: [SKIP][443] ([i915#5354]) -> [SKIP][444] ([i915#4423] / [i915#5354]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-12/igt@kms_pm_backlight@fade-with-suspend.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_psr@pr-sprite-plane-move: - shard-dg1: [SKIP][445] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][446] ([i915#1072] / [i915#9732]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_psr@pr-sprite-plane-move.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@kms_psr@pr-sprite-plane-move.html [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [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#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [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#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734 [i915#13736]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736 [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#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14345 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14371]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14371 [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#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [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#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [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#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [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#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [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#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [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#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [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#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#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [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_8383 -> IGTPW_13206 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_16611: bf0749a9930efe943554c3f73454d03c43779d15 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13206: 0b49229cc7ef6d577ae4afb48a5149a197a8dd43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8383: 8383 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/index.html [-- Attachment #2: Type: text/html, Size: 153391 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) 2025-05-30 12:52 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-05-30 17:08 ` Anirban, Sk 2025-05-30 18:10 ` Anirban, Sk 2025-05-30 18:11 ` Anirban, Sk 0 siblings, 2 replies; 13+ messages in thread From: Anirban, Sk @ 2025-05-30 17:08 UTC (permalink / raw) To: igt-dev; +Cc: kamil.konieczny [-- Attachment #1: Type: text/plain, Size: 149797 bytes --] Hi, The issues reported here are not related to my changes. Thanks, Anirban On 30-05-2025 18:22, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* tests/i915/pm_rc6_residency: Use sysfs to achieve peak > frequency (rev4) > *URL:* https://patchwork.freedesktop.org/series/148054/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/index.html > > > CI Bug Log - changes from CI_DRM_16611_full -> IGTPW_13206_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_13206_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_13206_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_13206/index.html > > > Participating hosts (10 -> 10) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_13206_full: > > > IGT changes > > > Possible regressions > > * igt@perf_pmu@module-unload: > o shard-glk: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@perf_pmu@module-unload.html> > > > New tests > > New tests have been introduced between CI_DRM_16611_full and > IGTPW_13206_full: > > > New IGT tests (3) > > * > > igt@kms_flip@2x-flip-vs-fences-interruptible@ab-hdmi-a1-hdmi-a2: > > o Statuses : 1 pass(s) > o Exec time: [10.97] s > * > > igt@kms_flip@2x-flip-vs-fences-interruptible@ac-hdmi-a1-hdmi-a2: > > o Statuses : 1 pass(s) > o Exec time: [10.76] s > * > > igt@kms_flip@2x-flip-vs-fences-interruptible@bc-hdmi-a1-hdmi-a2: > > o Statuses : 1 pass(s) > o Exec time: [10.69] s > > > Known issues > > Here are the changes found in IGTPW_13206_full that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_bb@crc32: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@api_intel_bb@crc32.html> > (i915#6230 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@api_intel_bb@crc32.html> > (i915#6230 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) > * > > igt@api_intel_bb@object-reloc-keep-cache: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html> > (i915#8411 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > +2 other tests skip > * > > igt@gem_basic@multigpu-create-close: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_basic@multigpu-create-close.html> > (i915#7697 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) > * > > igt@gem_ccs@ctrl-surf-copy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#9323 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > +1 other test skip > * > > igt@gem_ccs@suspend-resume: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_ccs@suspend-resume.html> > (i915#9323 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@gem_ccs@suspend-resume.html> > (i915#9323 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > +1 other test skip > * > > igt@gem_compute@compute-square: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_compute@compute-square.html> > (i915#13665 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665>) > * > > igt@gem_create@create-ext-cpu-access-sanity-check: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html> > (i915#6335 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) > * > > igt@gem_ctx_freq@sysfs: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@gem_ctx_freq@sysfs.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_ctx_freq@sysfs.html> > (i915#9561 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561>) > +1 other test fail > * > > igt@gem_ctx_persistence@heartbeat-hang: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html> > (i915#8555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > +2 other tests skip > * > > igt@gem_ctx_persistence@heartbeat-many: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-many.html> > (i915#8555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > * > > igt@gem_ctx_persistence@legacy-engines-cleanup: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb5/igt@gem_ctx_persistence@legacy-engines-cleanup.html> > (i915#1099 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) > +1 other test skip > * > > igt@gem_ctx_sseu@mmap-args: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ctx_sseu@mmap-args.html> > (i915#280 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html> > (i915#280 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > * > > igt@gem_eio@hibernate: > > o shard-dg2: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@gem_eio@hibernate.html> > (i915#10030 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030> > / i915#7975 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975> > / i915#8213 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213>) > * > > igt@gem_eio@reset-stress: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@gem_eio@reset-stress.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@gem_eio@reset-stress.html> > (i915#5784 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>) > * > > igt@gem_exec_balancer@bonded-dual: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html> > (i915#4771 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) > * > > igt@gem_exec_balancer@bonded-false-hang: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_balancer@bonded-false-hang.html> > (i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > +1 other test skip > * > > igt@gem_exec_balancer@parallel: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_exec_balancer@parallel.html> > (i915#4525 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) > +1 other test skip > * > > igt@gem_exec_balancer@parallel-bb-first: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html> > (i915#4525 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) > * > > igt@gem_exec_balancer@sliced: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_exec_balancer@sliced.html> > (i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > +1 other test skip > * > > igt@gem_exec_big@single: > > o shard-tglu: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_exec_big@single.html> > (i915#11713 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713>) > * > > igt@gem_exec_capture@capture-invisible: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@gem_exec_capture@capture-invisible.html> > (i915#6334 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) > +2 other tests skip > * > > igt@gem_exec_fence@submit67: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@gem_exec_fence@submit67.html> > (i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > * > > igt@gem_exec_flush@basic-uc-set-default: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>) > * > > igt@gem_exec_flush@basic-wb-ro-before-default: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@gem_exec_flush@basic-wb-ro-before-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> > / i915#4852 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > +3 other tests skip > * > > igt@gem_exec_flush@basic-wb-ro-default: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_flush@basic-wb-ro-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> > / i915#4852 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > * > > igt@gem_exec_flush@basic-wb-rw-before-default: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-before-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> > / i915#4852 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > +1 other test skip > * > > igt@gem_exec_gttfill@basic: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@gem_exec_gttfill@basic.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_exec_gttfill@basic.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > * > > igt@gem_exec_reloc@basic-cpu-noreloc: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-noreloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +1 other test skip > * > > igt@gem_exec_reloc@basic-gtt-read: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-read.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +4 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-read.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > * > > igt@gem_exec_reloc@basic-write-gtt-noreloc: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +2 other tests skip > * > > igt@gem_exec_reloc@basic-write-read: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +16 other tests skip > * > > igt@gem_exec_schedule@preempt-queue: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_schedule@preempt-queue.html> > (i915#4537 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> > / i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > * > > igt@gem_exec_schedule@preempt-queue-chain: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html> > (i915#4537 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> > / i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > * > > igt@gem_exec_schedule@semaphore-power: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html> > (i915#7276 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276>) > * > > igt@gem_exec_schedule@thriceslice: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@gem_exec_schedule@thriceslice.html> > +66 other tests skip > * > > igt@gem_fenced_exec_thrash@2-spare-fences: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_fenced_exec_thrash@2-spare-fences.html> > (i915#4860 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) > +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@gem_fenced_exec_thrash@2-spare-fences.html> > (i915#4860 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) > * > > igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html> > (i915#4860 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) > * > > igt@gem_lmem_evict@dontneed-evict-race: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> > / i915#7582 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> > / i915#7582 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) > * > > igt@gem_lmem_swapping@heavy-verify-multi-ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +2 other tests skip > * > > igt@gem_lmem_swapping@parallel-random-verify: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +5 other tests skip > * > > igt@gem_lmem_swapping@random: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@gem_lmem_swapping@random.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > * > > igt@gem_lmem_swapping@smem-oom@lmem0: > > o shard-dg2: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html> > (i915#5493 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) > +1 other test dmesg-warn > * > > igt@gem_lmem_swapping@verify-ccs: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +6 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs.html> > (i915#12193 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193>) > * > > igt@gem_lmem_swapping@verify-ccs@lmem0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs@lmem0.html> > (i915#4565 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>) > * > > igt@gem_lmem_swapping@verify-random: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +1 other test skip > * > > igt@gem_mmap_gtt@basic-small-copy: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +4 other tests skip > * > > igt@gem_mmap_gtt@zero-extend: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_mmap_gtt@zero-extend.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +3 other tests skip > * > > igt@gem_mmap_wc@copy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_mmap_wc@copy.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +4 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@gem_mmap_wc@copy.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +2 other tests skip > * > > igt@gem_mmap_wc@write: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@gem_mmap_wc@write.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > * > > igt@gem_mmap_wc@write-cpu-read-wc: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_mmap_wc@write-cpu-read-wc.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +4 other tests skip > * > > igt@gem_partial_pwrite_pread@reads-uncached: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +6 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@gem_partial_pwrite_pread@reads-uncached.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +2 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@gem_partial_pwrite_pread@reads-uncached.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +1 other test skip > * > > igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +13 other tests skip > * > > igt@gem_pread@bench: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_pread@bench.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > * > > igt@gem_pxp@create-regular-context-1: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > * > > igt@gem_pxp@hw-rejects-pxp-buffer: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html> > (i915#13398 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398>) > * > > igt@gem_pxp@protected-encrypted-src-copy-not-readible: > > o shard-rkl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +4 other tests timeout > * > > igt@gem_pxp@protected-raw-src-copy-not-readible: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > +4 other tests skip > * > > igt@gem_pxp@reject-modify-context-protection-off-3: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > * > > igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > +1 other test skip > * > > igt@gem_render_copy@y-tiled-to-vebox-y-tiled: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html> > (i915#8428 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) > +1 other test skip > * > > igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> > / i915#8428 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) > +7 other tests skip > * > > igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> > / i915#8428 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) > +2 other tests skip > * > > igt@gem_set_tiling_vs_pwrite: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gem_set_tiling_vs_pwrite.html> > (i915#4079 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) > +1 other test skip > * > > igt@gem_tiled_partial_pwrite_pread@writes: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@gem_tiled_partial_pwrite_pread@writes.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +14 other tests skip > * > > igt@gem_tiling_max_stride: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@gem_tiling_max_stride.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +3 other tests skip > * > > igt@gem_userptr_blits@create-destroy-unsync: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +3 other tests skip > * > > igt@gem_userptr_blits@map-fixed-invalidate-busy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> > / i915#4880 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>) > * > > igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> > / i915#4880 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>) > * > > igt@gem_userptr_blits@readonly-pwrite-unsync: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_userptr_blits@readonly-pwrite-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gem_userptr_blits@sd-probe: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> > / i915#4958 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> > / i915#4958 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>) > * > > igt@gem_userptr_blits@unsync-unmap: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +2 other tests skip > * > > igt@gem_workarounds@suspend-resume-fd: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html> > (i915#13356 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) > * > > igt@gen7_exec_parse@bitmasks: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html> > +11 other tests skip > * > > igt@gen9_exec_parse@batch-zero-length: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gen9_exec_parse@batch-zero-length.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > * > > igt@gen9_exec_parse@bb-oversize: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > +6 other tests skip > * > > igt@gen9_exec_parse@bb-start-out: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> > / i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > * > > igt@gen9_exec_parse@cmd-crossing-page: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> > / i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > +3 other tests skip > * > > igt@gen9_exec_parse@secure-batches: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > * > > igt@gen9_exec_parse@shadow-peek: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > +3 other tests skip > * > > igt@i915_drm_fdinfo@busy-check-all@vcs1: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@i915_drm_fdinfo@busy-check-all@vcs1.html> > (i915#11527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527>) > +7 other tests skip > * > > igt@i915_drm_fdinfo@most-busy-check-all: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@i915_drm_fdinfo@most-busy-check-all.html> > (i915#14073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) > +5 other tests skip > * > > igt@i915_drm_fdinfo@most-busy-check-all@bcs0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html> > (i915#14073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) > +6 other tests skip > * > > igt@i915_drm_fdinfo@most-busy-check-all@vecs0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html> > (i915#14073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) > +7 other tests skip > * > > igt@i915_pm_freq_mult@media-freq@gt0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html> > (i915#6590 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>) > +1 other test skip > * > > igt@i915_pm_rc6_residency@rc6-fence: > > o shard-tglu: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html> > (i915#13790 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790> > / i915#2681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681>) > +1 other test warn > * > > igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: > > o shard-tglu-1: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> > (i915#13790 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790> > / i915#2681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681>) > +4 other tests warn > * > > igt@i915_pm_rps@min-max-config-idle: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html> > (i915#11681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> > / i915#6621 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) > * > > igt@i915_pm_rps@thresholds-idle-park: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park.html> > (i915#11681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html> > (i915#11681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) > * > > igt@i915_pm_sseu@full-enable: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@i915_pm_sseu@full-enable.html> > (i915#4387 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@i915_pm_sseu@full-enable.html> > (i915#4387 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) > * > > igt@i915_selftest@live: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@i915_selftest@live.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@i915_selftest@live.html> > (i915#13550 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550>) > +1 other test dmesg-fail > * > > igt@i915_selftest@perf: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb2/igt@i915_selftest@perf.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@i915_selftest@perf.html> > (i915#11703 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703>) > +1 other test abort > * > > igt@i915_suspend@basic-s3-without-i915: > > o shard-glk: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@i915_suspend@basic-s3-without-i915.html> > (i915#13736 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736>) > * > > igt@i915_suspend@forcewake: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@i915_suspend@forcewake.html> > (i915#4817 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) > +1 other test incomplete > * > > igt@intel_hwmon@hwmon-write: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@intel_hwmon@hwmon-write.html> > (i915#7707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) > +1 other test skip > * > > igt@kms_addfb_basic@addfb25-x-tiled-legacy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> > (i915#4212 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) > +1 other test skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> > (i915#4212 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) > * > > igt@kms_addfb_basic@framebuffer-vs-set-tiling: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html> > (i915#4212 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html> > (i915#4212 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) > +1 other test skip > * > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> > (i915#12454 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> > / i915#12712 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) > * > > igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc.html> > (i915#8709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) > +7 other tests skip > * > > igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc.html> > (i915#8709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) > +1 other test skip > * > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> > (i915#1769 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_big_fb@4-tiled-16bpp-rotate-270: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html> > +5 other tests skip > * > > igt@kms_big_fb@4-tiled-32bpp-rotate-90: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +5 other tests skip > * > > igt@kms_big_fb@4-tiled-64bpp-rotate-0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> > / i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +2 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +9 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +2 other tests skip > * > > igt@kms_big_fb@linear-32bpp-rotate-270: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_big_fb@linear-32bpp-rotate-270.html> > +6 other tests skip > * > > igt@kms_big_fb@y-tiled-64bpp-rotate-0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > +8 other tests skip > * > > igt@kms_big_fb@y-tiled-8bpp-rotate-90: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> > (i915#3638 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) > +4 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> > (i915#3638 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) > +1 other test skip > * > > igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > +3 other tests skip > * > > igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > +4 other tests skip > * > > igt@kms_big_fb@yf-tiled-64bpp-rotate-270: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) > +2 other tests skip > * > > igt@kms_big_fb@yf-tiled-addfb: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html> > (i915#10307 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +172 other tests skip > * > > igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html> > (i915#10307 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +24 other tests skip > * > > igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html> > +444 other tests skip > * > > igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html> > (i915#10307 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> > / i915#10434 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > * > > igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > * > > igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > +1 other test skip > * > > igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +59 other tests skip > * > > igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> > (i915#14098 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +55 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +39 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +34 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +37 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +21 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +4 other tests skip > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > +3 other tests skip > * > > igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +142 other tests skip > * > > igt@kms_cdclk@mode-transition: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_cdclk@mode-transition.html> > (i915#3742 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_cdclk@mode-transition.html> > (i915#3742 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > * > > igt@kms_cdclk@mode-transition-all-outputs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_cdclk@mode-transition-all-outputs.html> > (i915#13784 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784>) > * > > igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> > (i915#13781 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781>) > +4 other tests skip > * > > igt@kms_cdclk@plane-scaling: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cdclk@plane-scaling.html> > (i915#3742 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > * > > igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +5 other tests skip > * > > igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +6 other tests skip > * > > igt@kms_chamelium_frames@hdmi-crc-multiple: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_chamelium_frames@hdmi-crc-multiple.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +2 other tests skip > * > > igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +15 other tests skip > * > > igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +2 other tests skip > * > > igt@kms_chamelium_hpd@vga-hpd-after-suspend: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +6 other tests skip > * > > igt@kms_chamelium_hpd@vga-hpd-fast: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +3 other tests skip > * > > igt@kms_content_protection@atomic: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_content_protection@atomic.html> > (i915#6944 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> > / i915#7116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> > / i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_content_protection@atomic.html> > (i915#7116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_content_protection@atomic.html> > (i915#6944 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_content_protection@atomic.html> > (i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@content-type-change: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_content_protection@content-type-change.html> > (i915#6944 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@dp-mst-lic-type-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-1.html> > (i915#3299 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) > * > > igt@kms_content_protection@dp-mst-type-0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html> > (i915#3116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) > * > > igt@kms_content_protection@legacy: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_content_protection@legacy.html> > (i915#6944 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> > / i915#7116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> > / i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@mei-interface: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_content_protection@mei-interface.html> > (i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@srm: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_content_protection@srm.html> > (i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_content_protection@srm.html> > (i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_content_protection@srm.html> > (i915#7116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116>) > * > > igt@kms_content_protection@uevent: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_content_protection@uevent.html> > (i915#1339 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339> > / i915#7173 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) > +1 other test fail > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_content_protection@uevent.html> > (i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_cursor_crc@cursor-offscreen-512x512: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_crc@cursor-onscreen-128x42: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html> > (i915#8814 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>) > +1 other test skip > * > > igt@kms_cursor_crc@cursor-onscreen-32x32: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +2 other tests skip > * > > igt@kms_cursor_crc@cursor-random-512x512: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > +2 other tests skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > +2 other tests skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-32x10: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_cursor_crc@cursor-rapid-movement-max-size: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +9 other tests skip > * > > igt@kms_cursor_crc@cursor-sliding-128x42: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html> > (i915#13566 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) > +1 other test fail > * > > igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html> > (i915#13566 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) > +2 other tests fail > * > > igt@kms_cursor_crc@cursor-sliding-32x10: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +3 other tests skip > * > > igt@kms_cursor_crc@cursor-sliding-512x170: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> > (i915#13046 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> > / i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > +5 other tests skip > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> > / i915#4213 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > +1 other test skip > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> > / i915#4213 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) > * > > igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> > +1 other test skip > * > > igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> > (i915#13046 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> > / i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > * > > igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> > (i915#9067 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) > * > > igt@kms_dirtyfb@drrs-dirtyfb-ioctl: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> > (i915#9723 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) > * > > igt@kms_dirtyfb@psr-dirtyfb-ioctl: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > (i915#9833 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>) > * > > igt@kms_dither@fb-8bpc-vs-panel-6bpc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#3804 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > * > > igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> > (i915#3804 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > * > > igt@kms_dp_aux_dev: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_dp_aux_dev.html> > (i915#1257 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_dp_aux_dev.html> > (i915#1257 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) > * > > igt@kms_dp_link_training@uhbr-mst: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_dp_link_training@uhbr-mst.html> > (i915#13748 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) > * > > igt@kms_dp_link_training@uhbr-sst: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@kms_dp_link_training@uhbr-sst.html> > (i915#13748 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) > * > > igt@kms_dp_linktrain_fallback@dp-fallback: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html> > (i915#13707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) > * > > igt@kms_dsc@dsc-basic: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dsc@dsc-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_dsc@dsc-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > * > > igt@kms_dsc@dsc-fractional-bpp: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html> > (i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> > / i915#9688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html> > (i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp.html> > (i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html> > (i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-1/igt@kms_dsc@dsc-fractional-bpp.html> > (i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> > / i915#9688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) > * > > igt@kms_dsc@dsc-with-formats: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_dsc@dsc-with-formats.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > * > > igt@kms_dsc@dsc-with-output-formats-with-bpc: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> > (i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> > / i915#9053 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>) > * > > igt@kms_feature_discovery@display-2x: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_feature_discovery@display-2x.html> > (i915#1839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > * > > igt@kms_feature_discovery@psr1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_feature_discovery@psr1.html> > (i915#658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) > +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_feature_discovery@psr1.html> > (i915#658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) > +1 other test skip > * > > igt@kms_feature_discovery@psr2: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_feature_discovery@psr2.html> > (i915#658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_feature_discovery@psr2.html> > (i915#658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) > * > > igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +7 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +1 other test skip > * > > igt@kms_flip@2x-flip-vs-dpms: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html> > (i915#3637 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> > / i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +2 other tests skip > * > > igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +19 other tests skip > * > > igt@kms_flip@2x-flip-vs-fences-interruptible: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#8381 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#8381 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) > * > > igt@kms_flip@2x-flip-vs-modeset: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html> > (i915#3637 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> > / i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +3 other tests skip > * > > igt@kms_flip@2x-flip-vs-suspend-interruptible: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> > (i915#14033 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033> > / i915#14350 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350>) > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> > (i915#12745 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> > / i915#4839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) > * > > igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html> > (i915#4839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) > * > > igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html> > (i915#14033 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033>) > * > > igt@kms_flip@2x-modeset-vs-vblank-race: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip@2x-modeset-vs-vblank-race.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +2 other tests skip > * > > igt@kms_flip@2x-plain-flip-ts-check: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html> > (i915#11832 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832> > / i915#13734 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) > +1 other test fail > * > > igt@kms_flip@2x-wf_vblank-ts-check: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_flip@2x-wf_vblank-ts-check.html> > (i915#3637 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> > / i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > * > > igt@kms_flip@basic-plain-flip@b-hdmi-a1: > > o shard-rkl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +20 other tests dmesg-warn > * > > igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +11 other tests dmesg-warn > * > > igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html> > (i915#13734 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) > +1 other test fail > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8810 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810> > / i915#8813 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html> > (i915#8810 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810> > / i915#8813 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> > (i915#2587 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> > / i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> > (i915#2587 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> > / i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > +2 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8813 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) > +3 other tests skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +2 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-tiling-y: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> > (i915#10055 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> > (i915#10055 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +6 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> > +36 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> > +39 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > +15 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html> > (i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > +6 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html> > +15 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +25 other tests skip > * > > igt@kms_frontbuffer_tracking@pipe-fbc-rte: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> > (i915#9766 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) > * > > igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +16 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +8 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +6 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html> > (i915#3023 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) > +45 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +7 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html> > (i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > +63 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > +34 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html> > +61 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +6 other tests skip > * > > igt@kms_getfb@getfb-reject-ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_getfb@getfb-reject-ccs.html> > (i915#6118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118>) > * > > igt@kms_hdr@bpc-switch: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_hdr@bpc-switch.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@invalid-metadata-sizes: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@static-swap: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_hdr@static-swap.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@static-toggle-suspend: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > +2 other tests skip > * > > igt@kms_joiner@invalid-modeset-big-joiner: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_joiner@invalid-modeset-big-joiner.html> > (i915#10656 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > * > > igt@kms_joiner@invalid-modeset-force-big-joiner: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html> > (i915#12388 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html> > (i915#12388 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) > * > > igt@kms_joiner@invalid-modeset-force-ultra-joiner: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> > (i915#10656 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> > (i915#12394 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394>) > * > > igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > (i915#4816 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > (i915#4816 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) > * > > igt@kms_panel_fitting@atomic-fastset: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html> > (i915#6301 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) > * > > igt@kms_plane_alpha_blend@alpha-opaque-fb: > > o shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> > (i915#10647 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647> > / i915#12169 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>) > * > > igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: > > o shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html> > (i915#10647 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) > +1 other test fail > * > > igt@kms_plane_cursor@overlay: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-8/igt@kms_plane_cursor@overlay.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_plane_cursor@overlay.html> > (i915#14371 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14371>) > * > > igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-8/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html> > (i915#13736 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736>) > * > > igt@kms_plane_lowres@tiling-x: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_plane_lowres@tiling-x.html> > (i915#11614 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614> > / i915#3582 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>) > +1 other test skip > * > > igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html> > (i915#10226 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226> > / i915#11614 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614> > / i915#3582 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>) > +2 other tests skip > * > > igt@kms_plane_multiple@2x-tiling-x: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-x.html> > (i915#13958 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) > * > > igt@kms_plane_multiple@2x-tiling-y: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-y.html> > (i915#13958 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) > +2 other tests skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-y.html> > (i915#13958 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) > * > > igt@kms_plane_multiple@tiling-4: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html> > (i915#14259 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) > * > > igt@kms_plane_scaling@intel-max-src-size: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html> > (i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#9423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > +1 other test skip > * > > igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +4 other tests skip > * > > igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +8 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#9423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +3 other tests skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +15 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> > / i915#9423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) > +1 other test skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +11 other tests skip > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +8 other tests skip > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) > * > > igt@kms_pm_backlight@bad-brightness: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_pm_backlight@bad-brightness.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > * > > igt@kms_pm_backlight@fade-with-dpms: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html> > (i915#9812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>) > +1 other test skip > * > > igt@kms_pm_dc@dc3co-vpb-simulation: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html> > (i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > * > > igt@kms_pm_lpsp@kms-lpsp: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html> > (i915#9340 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html> > (i915#3828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) > * > > igt@kms_pm_rpm@modeset-lpsp-stress: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > * > > igt@kms_prime@basic-modeset-hybrid: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html> > (i915#6524 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> > / i915#6805 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) > * > > igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> > (i915#12316 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>) > +1 other test skip > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +1 other test skip > * > > igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html> > (i915#9808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808>) > * > > igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +3 other tests skip > * > > igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +17 other tests skip > * > > igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk9/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +10 other tests skip > * > > igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +2 other tests skip > * > > igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +2 other tests skip > * > > igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +7 other tests skip > * > > igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +7 other tests skip > * > > igt@kms_psr2_su@page_flip-p010: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > * > > igt@kms_psr@fbc-pr-primary-mmap-gtt: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_psr@fbc-pr-primary-mmap-gtt.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +7 other tests skip > * > > igt@kms_psr@fbc-psr-primary-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_psr@fbc-psr-primary-mmap-gtt.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +19 other tests skip > * > > igt@kms_psr@pr-cursor-blt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_psr@pr-cursor-blt.html> > (i915#9688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) > +6 other tests skip > * > > igt@kms_psr@pr-suspend: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@kms_psr@pr-suspend.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +9 other tests skip > * > > igt@kms_psr@psr2-cursor-render: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_psr@psr2-cursor-render.html> > (i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +13 other tests skip > * > > igt@kms_psr@psr2-sprite-mmap-gtt: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html> > (i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +10 other tests skip > * > > igt@kms_psr@psr2-suspend: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_psr@psr2-suspend.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +33 other tests skip > * > > igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > (i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > * > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > (i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > * > > igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> > (i915#12755 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> > (i915#5289 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > +1 other test skip > * > > igt@kms_rotation_crc@sprite-rotation-270: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html> > (i915#12755 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) > * > > igt@kms_setmode@basic: > > o shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_setmode@basic.html> > (i915#5465 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) > +2 other tests fail > * > > igt@kms_setmode@basic-clone-single-crtc: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +2 other tests skip > * > > igt@kms_setmode@clone-exclusive-crtc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_setmode@clone-exclusive-crtc.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +2 other tests skip > * > > igt@kms_tiled_display@basic-test-pattern-with-chamelium: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> > (i915#8623 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> > (i915#8623 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> > (i915#8623 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) > * > > igt@kms_vrr@max-min: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_vrr@max-min.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@kms_vrr@seamless-rr-switch-virtual: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > +1 other test skip > * > > igt@kms_vrr@seamless-rr-switch-vrr: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> > / i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@kms_writeback@writeback-fb-id: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk5/igt@kms_writeback@writeback-fb-id.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) > +3 other tests skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_writeback@writeback-fb-id.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_writeback@writeback-fb-id.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) > +1 other test skip > * > > igt@kms_writeback@writeback-pixel-formats: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> > / i915#9412 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_writeback@writeback-pixel-formats.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> > / i915#9412 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) > * > > igt@perf@gen8-unprivileged-single-ctx-counters: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html> > (i915#2436 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>) > * > > igt@perf@global-sseu-config-invalid: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@perf@global-sseu-config-invalid.html> > (i915#7387 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387>) > * > > igt@perf@mi-rpc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@perf@mi-rpc.html> > (i915#2434 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>) > * > > igt@perf_pmu@busy-idle-check-all@bcs0: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@bcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@perf_pmu@busy-idle-check-all@bcs0.html> > (i915#4349 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) > +5 other tests fail > * > > igt@perf_pmu@rc6@other-idle-gt0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@perf_pmu@rc6@other-idle-gt0.html> > (i915#8516 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) > * > > igt@prime_vgem@basic-fence-flip: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@prime_vgem@basic-fence-flip.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@prime_vgem@basic-fence-read: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@prime_vgem@basic-fence-read.html> > (i915#3291 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> > / i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@prime_vgem@basic-read: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@prime_vgem@basic-read.html> > (i915#3291 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> > / i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@prime_vgem@fence-flip-hang: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@prime_vgem@fence-read-hang: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@prime_vgem@fence-read-hang.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@sriov_basic@bind-unbind-vf: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html> > (i915#9917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > +1 other test skip > > > Possible fixes > > * > > igt@gem_ccs@suspend-resume: > > o shard-dg2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@gem_ccs@suspend-resume.html> > (i915#13356 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ccs@suspend-resume.html> > * > > igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: > > o shard-dg2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html> > (i915#12392 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392> > / i915#13356 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html> > * > > igt@gem_eio@kms: > > o shard-tglu: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-5/igt@gem_eio@kms.html> > (i915#13363 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_eio@kms.html> > * > > igt@gem_lmem_swapping@smem-oom@lmem0: > > o shard-dg1: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html> > (i915#5493 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html> > +1 other test pass > * > > igt@gem_mmap_offset@partial-remap@smem0: > > o shard-rkl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-4/igt@gem_mmap_offset@partial-remap@smem0.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_mmap_offset@partial-remap@smem0.html> > +9 other tests pass > * > > igt@gem_softpin@noreloc-s3: > > o shard-rkl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-3/igt@gem_softpin@noreloc-s3.html> > (i915#13809 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@gem_softpin@noreloc-s3.html> > * > > igt@i915_pm_freq_api@freq-suspend@gt0: > > o shard-dg2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html> > (i915#12455 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455> > / i915#13820 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html> > +1 other test pass > * > > igt@kms_color@ctm-red-to-blue: > > o shard-dg1: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_color@ctm-red-to-blue.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_color@ctm-red-to-blue.html> > +1 other test pass > * > > igt@kms_cursor_crc@cursor-random-256x85: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-5/igt@kms_cursor_crc@cursor-random-256x85.html> > (i915#13566 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85.html> > +1 other test pass > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic: > > o shard-snb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> > (i915#14345 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14345>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> > * > > igt@kms_dp_link_training@non-uhbr-sst: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-sst.html> > (i915#13749 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html> > * > > igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: > > o shard-snb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> > (i915#13734 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> > +1 other test pass > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: > > o shard-snb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html> > * > > igt@kms_hdr@bpc-switch-dpms: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-7/igt@kms_hdr@bpc-switch-dpms.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html> > * > > igt@kms_pm_rpm@modeset-lpsp: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html> > * > > igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> > * > > igt@perf_pmu@module-unload: > > o shard-mtlp: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-4/igt@perf_pmu@module-unload.html> > (i915#13520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@perf_pmu@module-unload.html> > o shard-dg2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@perf_pmu@module-unload.html> > (i915#13520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@perf_pmu@module-unload.html> > > > Warnings > > * > > igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html> > (i915#14098 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > * > > igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +1 other test skip > * > > igt@kms_content_protection@legacy: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@kms_content_protection@legacy.html> > (i915#7173 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_content_protection@legacy.html> > (i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_cursor_legacy@flip-vs-cursor-varying-size: > > o shard-rkl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html> > (i915#2346 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>) > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> > (i915#10433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +1 other test skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html> > (i915#10433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +1 other test skip > * > > igt@kms_hdr@brightness-with-hdr: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html> > (i915#12713 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html> > (i915#13331 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331>) > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html> > (i915#12713 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html> > (i915#1187 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> > / i915#12713 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) > * > > igt@kms_pm_backlight@fade-with-suspend: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-12/igt@kms_pm_backlight@fade-with-suspend.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> > / i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > * > > igt@kms_psr@pr-sprite-plane-move: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_psr@pr-sprite-plane-move.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@kms_psr@pr-sprite-plane-move.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_8383 -> IGTPW_13206 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_16611: bf0749a9930efe943554c3f73454d03c43779d15 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_13206: 0b49229cc7ef6d577ae4afb48a5149a197a8dd43 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8383: 8383 > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit > [-- Attachment #2: Type: text/html, Size: 195626 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) 2025-05-30 17:08 ` Anirban, Sk @ 2025-05-30 18:10 ` Anirban, Sk 2025-05-30 18:11 ` Anirban, Sk 1 sibling, 0 replies; 13+ messages in thread From: Anirban, Sk @ 2025-05-30 18:10 UTC (permalink / raw) To: igt-dev, I915-ci-infra; +Cc: kamil.konieczny [-- Attachment #1: Type: text/plain, Size: 153420 bytes --] On 30-05-2025 22:38, Anirban, Sk wrote: > Hi, > The issues reported here are not related to my changes. > > Thanks, > Anirban > > On 30-05-2025 18:22, Patchwork wrote: >> Project List - Patchwork *Patch Details* >> *Series:* tests/i915/pm_rc6_residency: Use sysfs to achieve peak >> frequency (rev4) >> *URL:* https://patchwork.freedesktop.org/series/148054/ >> *State:* failure >> *Details:* >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/index.html >> >> >> CI Bug Log - changes from CI_DRM_16611_full -> IGTPW_13206_full >> >> >> Summary >> >> *FAILURE* >> >> Serious unknown changes coming with IGTPW_13206_full absolutely need >> to be >> verified manually. >> >> If you think the reported changes have nothing to do with the changes >> introduced in IGTPW_13206_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_13206/index.html >> >> >> Participating hosts (10 -> 10) >> >> No changes in participating hosts >> >> >> Possible new issues >> >> Here are the unknown changes that may have been introduced in >> IGTPW_13206_full: >> >> >> IGT changes >> >> >> Possible regressions >> >> * igt@perf_pmu@module-unload: >> o shard-glk: NOTRUN -> ABORT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@perf_pmu@module-unload.html> >> >> >> New tests >> >> New tests have been introduced between CI_DRM_16611_full and >> IGTPW_13206_full: >> >> >> New IGT tests (3) >> >> * >> >> igt@kms_flip@2x-flip-vs-fences-interruptible@ab-hdmi-a1-hdmi-a2: >> >> o Statuses : 1 pass(s) >> o Exec time: [10.97] s >> * >> >> igt@kms_flip@2x-flip-vs-fences-interruptible@ac-hdmi-a1-hdmi-a2: >> >> o Statuses : 1 pass(s) >> o Exec time: [10.76] s >> * >> >> igt@kms_flip@2x-flip-vs-fences-interruptible@bc-hdmi-a1-hdmi-a2: >> >> o Statuses : 1 pass(s) >> o Exec time: [10.69] s >> >> >> Known issues >> >> Here are the changes found in IGTPW_13206_full that come from known >> issues: >> >> >> IGT changes >> >> >> Issues hit >> >> * >> >> igt@api_intel_bb@crc32: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@api_intel_bb@crc32.html> >> (i915#6230 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@api_intel_bb@crc32.html> >> (i915#6230 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) >> * >> >> igt@api_intel_bb@object-reloc-keep-cache: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html> >> (i915#8411 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) >> +2 other tests skip >> * >> >> igt@gem_basic@multigpu-create-close: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_basic@multigpu-create-close.html> >> (i915#7697 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) >> * >> >> igt@gem_ccs@ctrl-surf-copy: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#9323 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) >> +1 other test skip >> * >> >> igt@gem_ccs@suspend-resume: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_ccs@suspend-resume.html> >> (i915#9323 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) >> +1 other test skip >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@gem_ccs@suspend-resume.html> >> (i915#9323 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) >> +1 other test skip >> * >> >> igt@gem_compute@compute-square: >> >> o shard-dg2: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_compute@compute-square.html> >> (i915#13665 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665>) >> * >> >> igt@gem_create@create-ext-cpu-access-sanity-check: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html> >> (i915#6335 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) >> * >> >> igt@gem_ctx_freq@sysfs: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@gem_ctx_freq@sysfs.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_ctx_freq@sysfs.html> >> (i915#9561 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561>) >> +1 other test fail >> * >> >> igt@gem_ctx_persistence@heartbeat-hang: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html> >> (i915#8555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) >> +2 other tests skip >> * >> >> igt@gem_ctx_persistence@heartbeat-many: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-many.html> >> (i915#8555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) >> * >> >> igt@gem_ctx_persistence@legacy-engines-cleanup: >> >> o shard-snb: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb5/igt@gem_ctx_persistence@legacy-engines-cleanup.html> >> (i915#1099 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) >> +1 other test skip >> * >> >> igt@gem_ctx_sseu@mmap-args: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ctx_sseu@mmap-args.html> >> (i915#280 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html> >> (i915#280 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) >> * >> >> igt@gem_eio@hibernate: >> >> o shard-dg2: NOTRUN -> ABORT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@gem_eio@hibernate.html> >> (i915#10030 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030> >> / i915#7975 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975> >> / i915#8213 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213>) >> * >> >> igt@gem_eio@reset-stress: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@gem_eio@reset-stress.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@gem_eio@reset-stress.html> >> (i915#5784 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>) >> * >> >> igt@gem_exec_balancer@bonded-dual: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html> >> (i915#4771 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) >> * >> >> igt@gem_exec_balancer@bonded-false-hang: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_balancer@bonded-false-hang.html> >> (i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> +1 other test skip >> * >> >> igt@gem_exec_balancer@parallel: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_exec_balancer@parallel.html> >> (i915#4525 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) >> +1 other test skip >> * >> >> igt@gem_exec_balancer@parallel-bb-first: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html> >> (i915#4525 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) >> * >> >> igt@gem_exec_balancer@sliced: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_exec_balancer@sliced.html> >> (i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> +1 other test skip >> * >> >> igt@gem_exec_big@single: >> >> o shard-tglu: NOTRUN -> ABORT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_exec_big@single.html> >> (i915#11713 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713>) >> * >> >> igt@gem_exec_capture@capture-invisible: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@gem_exec_capture@capture-invisible.html> >> (i915#6334 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) >> +2 other tests skip >> * >> >> igt@gem_exec_fence@submit67: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@gem_exec_fence@submit67.html> >> (i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> * >> >> igt@gem_exec_flush@basic-uc-set-default: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html> >> (i915#3539 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>) >> * >> >> igt@gem_exec_flush@basic-wb-ro-before-default: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@gem_exec_flush@basic-wb-ro-before-default.html> >> (i915#3539 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> >> / i915#4852 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) >> +3 other tests skip >> * >> >> igt@gem_exec_flush@basic-wb-ro-default: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_flush@basic-wb-ro-default.html> >> (i915#3539 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> >> / i915#4852 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) >> * >> >> igt@gem_exec_flush@basic-wb-rw-before-default: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-before-default.html> >> (i915#3539 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> >> / i915#4852 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) >> +1 other test skip >> * >> >> igt@gem_exec_gttfill@basic: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@gem_exec_gttfill@basic.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_exec_gttfill@basic.html> >> (i915#12917 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> >> / i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> * >> >> igt@gem_exec_reloc@basic-cpu-noreloc: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-noreloc.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> +1 other test skip >> * >> >> igt@gem_exec_reloc@basic-gtt-read: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-read.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> +4 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-read.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> * >> >> igt@gem_exec_reloc@basic-write-gtt-noreloc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> +2 other tests skip >> * >> >> igt@gem_exec_reloc@basic-write-read: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> +16 other tests skip >> * >> >> igt@gem_exec_schedule@preempt-queue: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_schedule@preempt-queue.html> >> (i915#4537 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> >> / i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> * >> >> igt@gem_exec_schedule@preempt-queue-chain: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html> >> (i915#4537 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> >> / i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> * >> >> igt@gem_exec_schedule@semaphore-power: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html> >> (i915#7276 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276>) >> * >> >> igt@gem_exec_schedule@thriceslice: >> >> o shard-snb: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@gem_exec_schedule@thriceslice.html> >> +66 other tests skip >> * >> >> igt@gem_fenced_exec_thrash@2-spare-fences: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_fenced_exec_thrash@2-spare-fences.html> >> (i915#4860 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) >> +1 other test skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@gem_fenced_exec_thrash@2-spare-fences.html> >> (i915#4860 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) >> * >> >> igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html> >> (i915#4860 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) >> * >> >> igt@gem_lmem_evict@dontneed-evict-race: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> >> / i915#7582 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> >> / i915#7582 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) >> * >> >> igt@gem_lmem_swapping@heavy-verify-multi-ccs: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> +2 other tests skip >> * >> >> igt@gem_lmem_swapping@parallel-random-verify: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> +5 other tests skip >> * >> >> igt@gem_lmem_swapping@random: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@gem_lmem_swapping@random.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> * >> >> igt@gem_lmem_swapping@smem-oom@lmem0: >> >> o shard-dg2: NOTRUN -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html> >> (i915#5493 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) >> +1 other test dmesg-warn >> * >> >> igt@gem_lmem_swapping@verify-ccs: >> >> o shard-glk: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> +6 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs.html> >> (i915#12193 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193>) >> * >> >> igt@gem_lmem_swapping@verify-ccs@lmem0: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs@lmem0.html> >> (i915#4565 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>) >> * >> >> igt@gem_lmem_swapping@verify-random: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> +1 other test skip >> * >> >> igt@gem_mmap_gtt@basic-small-copy: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy.html> >> (i915#4077 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) >> +4 other tests skip >> * >> >> igt@gem_mmap_gtt@zero-extend: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_mmap_gtt@zero-extend.html> >> (i915#4077 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) >> +3 other tests skip >> * >> >> igt@gem_mmap_wc@copy: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_mmap_wc@copy.html> >> (i915#4083 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) >> +4 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@gem_mmap_wc@copy.html> >> (i915#4083 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) >> +2 other tests skip >> * >> >> igt@gem_mmap_wc@write: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@gem_mmap_wc@write.html> >> (i915#4083 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) >> * >> >> igt@gem_mmap_wc@write-cpu-read-wc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_mmap_wc@write-cpu-read-wc.html> >> (i915#4083 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) >> +4 other tests skip >> * >> >> igt@gem_partial_pwrite_pread@reads-uncached: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> +6 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@gem_partial_pwrite_pread@reads-uncached.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> +2 other tests skip >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@gem_partial_pwrite_pread@reads-uncached.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> +1 other test skip >> * >> >> igt@gem_partial_pwrite_pread@writes-after-reads-uncached: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> +13 other tests skip >> * >> >> igt@gem_pread@bench: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_pread@bench.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> * >> >> igt@gem_pxp@create-regular-context-1: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html> >> (i915#4270 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) >> * >> >> igt@gem_pxp@hw-rejects-pxp-buffer: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html> >> (i915#13398 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398>) >> * >> >> igt@gem_pxp@protected-encrypted-src-copy-not-readible: >> >> o shard-rkl: NOTRUN -> TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html> >> (i915#12917 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> >> / i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> +4 other tests timeout >> * >> >> igt@gem_pxp@protected-raw-src-copy-not-readible: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html> >> (i915#4270 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) >> +4 other tests skip >> * >> >> igt@gem_pxp@reject-modify-context-protection-off-3: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html> >> -> TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html> >> (i915#12917 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> >> / i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> * >> >> igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> >> (i915#4270 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) >> +1 other test skip >> * >> >> igt@gem_render_copy@y-tiled-to-vebox-y-tiled: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html> >> (i915#8428 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) >> +1 other test skip >> * >> >> igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html> >> (i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> >> / i915#8428 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) >> +7 other tests skip >> * >> >> igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html> >> (i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> >> / i915#8428 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) >> +2 other tests skip >> * >> >> igt@gem_set_tiling_vs_pwrite: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gem_set_tiling_vs_pwrite.html> >> (i915#4079 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) >> +1 other test skip >> * >> >> igt@gem_tiled_partial_pwrite_pread@writes: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@gem_tiled_partial_pwrite_pread@writes.html> >> (i915#4077 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) >> +14 other tests skip >> * >> >> igt@gem_tiling_max_stride: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@gem_tiling_max_stride.html> >> (i915#4077 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) >> +3 other tests skip >> * >> >> igt@gem_userptr_blits@create-destroy-unsync: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) >> +3 other tests skip >> * >> >> igt@gem_userptr_blits@map-fixed-invalidate-busy: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> >> / i915#4880 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>) >> * >> >> igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> >> / i915#4880 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>) >> * >> >> igt@gem_userptr_blits@readonly-pwrite-unsync: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_userptr_blits@readonly-pwrite-unsync.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) >> * >> >> igt@gem_userptr_blits@sd-probe: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> >> / i915#4958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> >> / i915#4958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>) >> * >> >> igt@gem_userptr_blits@unsync-unmap: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) >> +2 other tests skip >> * >> >> igt@gem_workarounds@suspend-resume-fd: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html> >> -> INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html> >> (i915#13356 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) >> * >> >> igt@gen7_exec_parse@bitmasks: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html> >> +11 other tests skip >> * >> >> igt@gen9_exec_parse@batch-zero-length: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html> >> (i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gen9_exec_parse@batch-zero-length.html> >> (i915#2527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) >> * >> >> igt@gen9_exec_parse@bb-oversize: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html> >> (i915#2527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) >> +6 other tests skip >> * >> >> igt@gen9_exec_parse@bb-start-out: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html> >> (i915#2527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> >> / i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> * >> >> igt@gen9_exec_parse@cmd-crossing-page: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html> >> (i915#2527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> >> / i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> +3 other tests skip >> * >> >> igt@gen9_exec_parse@secure-batches: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html> >> (i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> * >> >> igt@gen9_exec_parse@shadow-peek: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html> >> (i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> +3 other tests skip >> * >> >> igt@i915_drm_fdinfo@busy-check-all@vcs1: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@i915_drm_fdinfo@busy-check-all@vcs1.html> >> (i915#11527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527>) >> +7 other tests skip >> * >> >> igt@i915_drm_fdinfo@most-busy-check-all: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@i915_drm_fdinfo@most-busy-check-all.html> >> (i915#14073 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) >> +5 other tests skip >> * >> >> igt@i915_drm_fdinfo@most-busy-check-all@bcs0: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html> >> (i915#14073 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) >> +6 other tests skip >> * >> >> igt@i915_drm_fdinfo@most-busy-check-all@vecs0: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html> >> (i915#14073 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) >> +7 other tests skip >> * >> >> igt@i915_pm_freq_mult@media-freq@gt0: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html> >> (i915#6590 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>) >> +1 other test skip >> * >> >> igt@i915_pm_rc6_residency@rc6-fence: >> >> o shard-tglu: NOTRUN -> WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html> >> (i915#13790 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790> >> / i915#2681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681>) >> +1 other test warn >> * >> >> igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: >> >> o shard-tglu-1: NOTRUN -> WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> >> (i915#13790 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790> >> / i915#2681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681>) >> +4 other tests warn >> * >> >> igt@i915_pm_rps@min-max-config-idle: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html> >> (i915#11681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> >> / i915#6621 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) >> * >> >> igt@i915_pm_rps@thresholds-idle-park: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park.html> >> (i915#11681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html> >> (i915#11681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) >> * >> >> igt@i915_pm_sseu@full-enable: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@i915_pm_sseu@full-enable.html> >> (i915#4387 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@i915_pm_sseu@full-enable.html> >> (i915#4387 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) >> * >> >> igt@i915_selftest@live: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@i915_selftest@live.html> >> -> DMESG-FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@i915_selftest@live.html> >> (i915#13550 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550>) >> +1 other test dmesg-fail >> * >> >> igt@i915_selftest@perf: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb2/igt@i915_selftest@perf.html> >> -> ABORT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@i915_selftest@perf.html> >> (i915#11703 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703>) >> +1 other test abort >> * >> >> igt@i915_suspend@basic-s3-without-i915: >> >> o shard-glk: NOTRUN -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@i915_suspend@basic-s3-without-i915.html> >> (i915#13736 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736>) >> * >> >> igt@i915_suspend@forcewake: >> >> o shard-glk: NOTRUN -> INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@i915_suspend@forcewake.html> >> (i915#4817 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) >> +1 other test incomplete >> * >> >> igt@intel_hwmon@hwmon-write: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@intel_hwmon@hwmon-write.html> >> (i915#7707 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) >> +1 other test skip >> * >> >> igt@kms_addfb_basic@addfb25-x-tiled-legacy: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> >> (i915#4212 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) >> +1 other test skip >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> >> (i915#4212 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) >> * >> >> igt@kms_addfb_basic@framebuffer-vs-set-tiling: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html> >> (i915#4212 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html> >> (i915#4212 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) >> +1 other test skip >> * >> >> igt@kms_addfb_basic@invalid-smem-bo-on-discrete: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> >> (i915#12454 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> >> / i915#12712 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) >> * >> >> igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc.html> >> (i915#8709 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) >> +7 other tests skip >> * >> >> igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc.html> >> (i915#8709 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) >> +1 other test skip >> * >> >> igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> >> (i915#1769 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> * >> >> igt@kms_big_fb@4-tiled-16bpp-rotate-270: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html> >> +5 other tests skip >> * >> >> igt@kms_big_fb@4-tiled-32bpp-rotate-90: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html> >> (i915#5286 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) >> +5 other tests skip >> * >> >> igt@kms_big_fb@4-tiled-64bpp-rotate-0: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html> >> (i915#4538 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> >> / i915#5286 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) >> +2 other tests skip >> * >> >> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> >> (i915#5286 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) >> +9 other tests skip >> * >> >> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> >> (i915#5286 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) >> +2 other tests skip >> * >> >> igt@kms_big_fb@linear-32bpp-rotate-270: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_big_fb@linear-32bpp-rotate-270.html> >> +6 other tests skip >> * >> >> igt@kms_big_fb@y-tiled-64bpp-rotate-0: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html> >> (i915#4538 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> +8 other tests skip >> * >> >> igt@kms_big_fb@y-tiled-8bpp-rotate-90: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> >> (i915#3638 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) >> +4 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> >> (i915#3638 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) >> +1 other test skip >> * >> >> igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> >> (i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> +3 other tests skip >> * >> >> igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html> >> (i915#4538 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> +4 other tests skip >> * >> >> igt@kms_big_fb@yf-tiled-64bpp-rotate-270: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html> >> (i915#4538 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) >> +2 other tests skip >> * >> >> igt@kms_big_fb@yf-tiled-addfb: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb.html> >> (i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> * >> >> igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html> >> (i915#10307 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +172 other tests skip >> * >> >> igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html> >> (i915#10307 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +24 other tests skip >> * >> >> igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: >> >> o shard-glk: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html> >> +444 other tests skip >> * >> >> igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html> >> (i915#10307 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> >> / i915#10434 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> * >> >> igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> >> (i915#12313 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) >> * >> >> igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> >> (i915#12313 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) >> +1 other test skip >> * >> >> igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +59 other tests skip >> * >> >> igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> >> (i915#14098 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +55 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +39 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +34 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +37 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +21 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +4 other tests skip >> * >> >> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> >> (i915#12313 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) >> +3 other tests skip >> * >> >> igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +142 other tests skip >> * >> >> igt@kms_cdclk@mode-transition: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_cdclk@mode-transition.html> >> (i915#3742 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_cdclk@mode-transition.html> >> (i915#3742 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) >> * >> >> igt@kms_cdclk@mode-transition-all-outputs: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_cdclk@mode-transition-all-outputs.html> >> (i915#13784 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784>) >> * >> >> igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> >> (i915#13781 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781>) >> +4 other tests skip >> * >> >> igt@kms_cdclk@plane-scaling: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cdclk@plane-scaling.html> >> (i915#3742 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) >> * >> >> igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +5 other tests skip >> * >> >> igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +6 other tests skip >> * >> >> igt@kms_chamelium_frames@hdmi-crc-multiple: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_chamelium_frames@hdmi-crc-multiple.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +2 other tests skip >> * >> >> igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +15 other tests skip >> * >> >> igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +2 other tests skip >> * >> >> igt@kms_chamelium_hpd@vga-hpd-after-suspend: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +6 other tests skip >> * >> >> igt@kms_chamelium_hpd@vga-hpd-fast: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +3 other tests skip >> * >> >> igt@kms_content_protection@atomic: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_content_protection@atomic.html> >> (i915#6944 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> >> / i915#7116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> >> / i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_content_protection@atomic.html> >> (i915#7116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_content_protection@atomic.html> >> (i915#6944 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_content_protection@atomic.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_content_protection@content-type-change: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_content_protection@content-type-change.html> >> (i915#6944 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_content_protection@dp-mst-lic-type-1: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-1.html> >> (i915#3299 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) >> * >> >> igt@kms_content_protection@dp-mst-type-0: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html> >> (i915#3116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) >> * >> >> igt@kms_content_protection@legacy: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_content_protection@legacy.html> >> (i915#6944 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> >> / i915#7116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> >> / i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_content_protection@mei-interface: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_content_protection@mei-interface.html> >> (i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_content_protection@srm: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_content_protection@srm.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_content_protection@srm.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_content_protection@srm.html> >> (i915#7116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116>) >> * >> >> igt@kms_content_protection@uevent: >> >> o shard-dg2: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_content_protection@uevent.html> >> (i915#1339 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339> >> / i915#7173 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) >> +1 other test fail >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_content_protection@uevent.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_cursor_crc@cursor-offscreen-512x512: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> * >> >> igt@kms_cursor_crc@cursor-onscreen-128x42: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html> >> (i915#8814 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>) >> +1 other test skip >> * >> >> igt@kms_cursor_crc@cursor-onscreen-32x32: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +2 other tests skip >> * >> >> igt@kms_cursor_crc@cursor-random-512x512: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x512.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> +2 other tests skip >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> +2 other tests skip >> * >> >> igt@kms_cursor_crc@cursor-rapid-movement-32x10: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> * >> >> igt@kms_cursor_crc@cursor-rapid-movement-max-size: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +9 other tests skip >> * >> >> igt@kms_cursor_crc@cursor-sliding-128x42: >> >> o shard-tglu: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html> >> (i915#13566 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) >> +1 other test fail >> * >> >> igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: >> >> o shard-rkl: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html> >> (i915#13566 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) >> +2 other tests fail >> * >> >> igt@kms_cursor_crc@cursor-sliding-32x10: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +3 other tests skip >> * >> >> igt@kms_cursor_crc@cursor-sliding-512x170: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> * >> >> igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> >> (i915#13046 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> >> / i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> +5 other tests skip >> * >> >> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> >> (i915#4103 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> >> / i915#4213 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> >> (i915#4103 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) >> +1 other test skip >> * >> >> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> >> (i915#4103 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> >> (i915#4103 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> >> / i915#4213 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) >> * >> >> igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> >> +1 other test skip >> * >> >> igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> >> (i915#13046 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> >> / i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> * >> >> igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> >> (i915#9067 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) >> * >> >> igt@kms_dirtyfb@drrs-dirtyfb-ioctl: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> >> (i915#9723 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) >> * >> >> igt@kms_dirtyfb@psr-dirtyfb-ioctl: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> >> (i915#9833 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>) >> * >> >> igt@kms_dither@fb-8bpc-vs-panel-6bpc: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#3804 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) >> * >> >> igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> >> (i915#3804 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) >> * >> >> igt@kms_dp_aux_dev: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_dp_aux_dev.html> >> (i915#1257 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_dp_aux_dev.html> >> (i915#1257 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) >> * >> >> igt@kms_dp_link_training@uhbr-mst: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_dp_link_training@uhbr-mst.html> >> (i915#13748 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) >> * >> >> igt@kms_dp_link_training@uhbr-sst: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@kms_dp_link_training@uhbr-sst.html> >> (i915#13748 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) >> * >> >> igt@kms_dp_linktrain_fallback@dp-fallback: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html> >> (i915#13707 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) >> * >> >> igt@kms_dsc@dsc-basic: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dsc@dsc-basic.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_dsc@dsc-basic.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> * >> >> igt@kms_dsc@dsc-fractional-bpp: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> >> / i915#9688 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> +1 other test skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-1/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> >> / i915#9688 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) >> * >> >> igt@kms_dsc@dsc-with-formats: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_dsc@dsc-with-formats.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> * >> >> igt@kms_dsc@dsc-with-output-formats-with-bpc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> >> / i915#9053 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>) >> * >> >> igt@kms_feature_discovery@display-2x: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_feature_discovery@display-2x.html> >> (i915#1839 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) >> * >> >> igt@kms_feature_discovery@psr1: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_feature_discovery@psr1.html> >> (i915#658 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) >> +1 other test skip >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_feature_discovery@psr1.html> >> (i915#658 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) >> +1 other test skip >> * >> >> igt@kms_feature_discovery@psr2: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_feature_discovery@psr2.html> >> (i915#658 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_feature_discovery@psr2.html> >> (i915#658 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) >> * >> >> igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> >> (i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +7 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> >> (i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +1 other test skip >> * >> >> igt@kms_flip@2x-flip-vs-dpms: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html> >> (i915#3637 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> >> / i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +2 other tests skip >> * >> >> igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html> >> (i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +19 other tests skip >> * >> >> igt@kms_flip@2x-flip-vs-fences-interruptible: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html> >> (i915#8381 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html> >> (i915#8381 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) >> * >> >> igt@kms_flip@2x-flip-vs-modeset: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html> >> (i915#3637 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> >> / i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +3 other tests skip >> * >> >> igt@kms_flip@2x-flip-vs-suspend-interruptible: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> >> -> TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> >> (i915#14033 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033> >> / i915#14350 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350>) >> o shard-glk: NOTRUN -> INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> >> (i915#12745 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> >> / i915#4839 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) >> * >> >> igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: >> >> o shard-glk: NOTRUN -> INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html> >> (i915#4839 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) >> * >> >> igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html> >> -> TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html> >> (i915#14033 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033>) >> * >> >> igt@kms_flip@2x-modeset-vs-vblank-race: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip@2x-modeset-vs-vblank-race.html> >> (i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +2 other tests skip >> * >> >> igt@kms_flip@2x-plain-flip-ts-check: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html> >> (i915#11832 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832> >> / i915#13734 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) >> +1 other test fail >> * >> >> igt@kms_flip@2x-wf_vblank-ts-check: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_flip@2x-wf_vblank-ts-check.html> >> (i915#3637 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> >> / i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> * >> >> igt@kms_flip@basic-plain-flip@b-hdmi-a1: >> >> o shard-rkl: NOTRUN -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html> >> (i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> +20 other tests dmesg-warn >> * >> >> igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html> >> (i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> +11 other tests dmesg-warn >> * >> >> igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1: >> >> o shard-tglu: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html> >> (i915#13734 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) >> +1 other test fail >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8810 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810> >> / i915#8813 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html> >> (i915#8810 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810> >> / i915#8813 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> >> (i915#2587 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> >> / i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: >> >> o shard-dg1: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> >> (i915#2587 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> >> / i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> +2 other tests skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> * >> >> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8813 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) >> +3 other tests skip >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +2 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbc-tiling-y: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> >> (i915#10055 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>) >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> >> (i915#10055 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>) >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +6 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> >> +36 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> >> +39 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> +15 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html> >> (i915#1825 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) >> +6 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html> >> +15 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html> >> (i915#8708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) >> +25 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@pipe-fbc-rte: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> >> (i915#9766 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +16 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html> >> (i915#8708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) >> +8 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html> >> (i915#8708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) >> +6 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html> >> (i915#3023 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) >> +45 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> >> (i915#8708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) >> +7 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html> >> (i915#1825 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) >> +63 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> +34 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html> >> +61 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +6 other tests skip >> * >> >> igt@kms_getfb@getfb-reject-ccs: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_getfb@getfb-reject-ccs.html> >> (i915#6118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118>) >> * >> >> igt@kms_hdr@bpc-switch: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_hdr@bpc-switch.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> * >> >> igt@kms_hdr@invalid-metadata-sizes: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> * >> >> igt@kms_hdr@static-swap: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_hdr@static-swap.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> * >> >> igt@kms_hdr@static-toggle-suspend: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> +2 other tests skip >> * >> >> igt@kms_joiner@invalid-modeset-big-joiner: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_joiner@invalid-modeset-big-joiner.html> >> (i915#10656 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) >> * >> >> igt@kms_joiner@invalid-modeset-force-big-joiner: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html> >> (i915#12388 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html> >> (i915#12388 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) >> * >> >> igt@kms_joiner@invalid-modeset-force-ultra-joiner: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> >> (i915#10656 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> >> (i915#12394 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394>) >> * >> >> igt@kms_multipipe_modeset@basic-max-pipe-crc-check: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> >> (i915#4816 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> >> (i915#4816 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) >> * >> >> igt@kms_panel_fitting@atomic-fastset: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html> >> (i915#6301 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) >> * >> >> igt@kms_plane_alpha_blend@alpha-opaque-fb: >> >> o shard-glk: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> >> (i915#10647 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647> >> / i915#12169 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>) >> * >> >> igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: >> >> o shard-glk: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html> >> (i915#10647 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) >> +1 other test fail >> * >> >> igt@kms_plane_cursor@overlay: >> >> o shard-mtlp: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-8/igt@kms_plane_cursor@overlay.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_plane_cursor@overlay.html> >> (i915#14371 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14371>) >> * >> >> igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64: >> >> o shard-mtlp: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-8/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html> >> (i915#13736 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736>) >> * >> >> igt@kms_plane_lowres@tiling-x: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_plane_lowres@tiling-x.html> >> (i915#11614 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614> >> / i915#3582 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>) >> +1 other test skip >> * >> >> igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html> >> (i915#10226 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226> >> / i915#11614 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614> >> / i915#3582 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>) >> +2 other tests skip >> * >> >> igt@kms_plane_multiple@2x-tiling-x: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-x.html> >> (i915#13958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) >> * >> >> igt@kms_plane_multiple@2x-tiling-y: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-y.html> >> (i915#13958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) >> +2 other tests skip >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-y.html> >> (i915#13958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) >> * >> >> igt@kms_plane_multiple@tiling-4: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html> >> (i915#14259 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) >> * >> >> igt@kms_plane_scaling@intel-max-src-size: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html> >> (i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) >> * >> >> igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#9423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) >> +1 other test skip >> * >> >> igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +4 other tests skip >> * >> >> igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +8 other tests skip >> * >> >> igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#9423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) >> * >> >> igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +3 other tests skip >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +15 other tests skip >> * >> >> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> >> / i915#9423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) >> +1 other test skip >> * >> >> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +11 other tests skip >> * >> >> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) >> * >> >> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +8 other tests skip >> * >> >> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) >> * >> >> igt@kms_pm_backlight@bad-brightness: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_pm_backlight@bad-brightness.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> * >> >> igt@kms_pm_backlight@fade-with-dpms: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html> >> (i915#9812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>) >> +1 other test skip >> * >> >> igt@kms_pm_dc@dc3co-vpb-simulation: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html> >> (i915#9685 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) >> * >> >> igt@kms_pm_lpsp@kms-lpsp: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html> >> (i915#9340 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html> >> (i915#3828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) >> * >> >> igt@kms_pm_rpm@modeset-lpsp-stress: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> * >> >> igt@kms_pm_rpm@modeset-non-lpsp-stress: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> * >> >> igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> * >> >> igt@kms_prime@basic-modeset-hybrid: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html> >> (i915#6524 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> >> / i915#6805 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) >> * >> >> igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> >> (i915#12316 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>) >> +1 other test skip >> o shard-snb: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +1 other test skip >> * >> >> igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html> >> (i915#9808 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808>) >> * >> >> igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +3 other tests skip >> * >> >> igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +17 other tests skip >> * >> >> igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: >> >> o shard-glk: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk9/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +10 other tests skip >> * >> >> igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +2 other tests skip >> * >> >> igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +2 other tests skip >> * >> >> igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +7 other tests skip >> * >> >> igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +7 other tests skip >> * >> >> igt@kms_psr2_su@page_flip-p010: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html> >> (i915#9683 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) >> * >> >> igt@kms_psr@fbc-pr-primary-mmap-gtt: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_psr@fbc-pr-primary-mmap-gtt.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +7 other tests skip >> * >> >> igt@kms_psr@fbc-psr-primary-mmap-gtt: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_psr@fbc-psr-primary-mmap-gtt.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +19 other tests skip >> * >> >> igt@kms_psr@pr-cursor-blt: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_psr@pr-cursor-blt.html> >> (i915#9688 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) >> +6 other tests skip >> * >> >> igt@kms_psr@pr-suspend: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@kms_psr@pr-suspend.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +9 other tests skip >> * >> >> igt@kms_psr@psr2-cursor-render: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_psr@psr2-cursor-render.html> >> (i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +13 other tests skip >> * >> >> igt@kms_psr@psr2-sprite-mmap-gtt: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html> >> (i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +10 other tests skip >> * >> >> igt@kms_psr@psr2-suspend: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_psr@psr2-suspend.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +33 other tests skip >> * >> >> igt@kms_psr_stress_test@flip-primary-invalidate-overlay: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> >> (i915#9685 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) >> * >> >> igt@kms_psr_stress_test@invalidate-primary-flip-overlay: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> >> (i915#9685 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) >> * >> >> igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> >> (i915#12755 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> * >> >> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> >> (i915#5289 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) >> +1 other test skip >> * >> >> igt@kms_rotation_crc@sprite-rotation-270: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html> >> (i915#12755 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) >> * >> >> igt@kms_setmode@basic: >> >> o shard-snb: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_setmode@basic.html> >> (i915#5465 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) >> +2 other tests fail >> * >> >> igt@kms_setmode@basic-clone-single-crtc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +2 other tests skip >> * >> >> igt@kms_setmode@clone-exclusive-crtc: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_setmode@clone-exclusive-crtc.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +2 other tests skip >> * >> >> igt@kms_tiled_display@basic-test-pattern-with-chamelium: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> >> (i915#8623 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> >> (i915#8623 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> >> (i915#8623 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) >> * >> >> igt@kms_vrr@max-min: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_vrr@max-min.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> * >> >> igt@kms_vrr@seamless-rr-switch-virtual: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> +1 other test skip >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> +1 other test skip >> * >> >> igt@kms_vrr@seamless-rr-switch-vrr: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> +1 other test skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-vrr.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> +1 other test skip >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-vrr.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-vrr.html> >> (i915#8808 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> >> / i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> * >> >> igt@kms_writeback@writeback-fb-id: >> >> o shard-glk: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk5/igt@kms_writeback@writeback-fb-id.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) >> +3 other tests skip >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_writeback@writeback-fb-id.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_writeback@writeback-fb-id.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) >> +1 other test skip >> * >> >> igt@kms_writeback@writeback-pixel-formats: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> >> / i915#9412 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_writeback@writeback-pixel-formats.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> >> / i915#9412 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) >> * >> >> igt@perf@gen8-unprivileged-single-ctx-counters: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html> >> (i915#2436 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>) >> * >> >> igt@perf@global-sseu-config-invalid: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@perf@global-sseu-config-invalid.html> >> (i915#7387 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387>) >> * >> >> igt@perf@mi-rpc: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@perf@mi-rpc.html> >> (i915#2434 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>) >> * >> >> igt@perf_pmu@busy-idle-check-all@bcs0: >> >> o shard-mtlp: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@bcs0.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@perf_pmu@busy-idle-check-all@bcs0.html> >> (i915#4349 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) >> +5 other tests fail >> * >> >> igt@perf_pmu@rc6@other-idle-gt0: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@perf_pmu@rc6@other-idle-gt0.html> >> (i915#8516 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) >> * >> >> igt@prime_vgem@basic-fence-flip: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html> >> (i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@prime_vgem@basic-fence-flip.html> >> (i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@prime_vgem@basic-fence-read: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@prime_vgem@basic-fence-read.html> >> (i915#3291 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> >> / i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@prime_vgem@basic-read: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@prime_vgem@basic-read.html> >> (i915#3291 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> >> / i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@prime_vgem@fence-flip-hang: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html> >> (i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@prime_vgem@fence-read-hang: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@prime_vgem@fence-read-hang.html> >> (i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@sriov_basic@bind-unbind-vf: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html> >> (i915#9917 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) >> +1 other test skip >> >> >> Possible fixes >> >> * >> >> igt@gem_ccs@suspend-resume: >> >> o shard-dg2: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@gem_ccs@suspend-resume.html> >> (i915#13356 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ccs@suspend-resume.html> >> * >> >> igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: >> >> o shard-dg2: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html> >> (i915#12392 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392> >> / i915#13356 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html> >> * >> >> igt@gem_eio@kms: >> >> o shard-tglu: DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-5/igt@gem_eio@kms.html> >> (i915#13363 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_eio@kms.html> >> * >> >> igt@gem_lmem_swapping@smem-oom@lmem0: >> >> o shard-dg1: TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html> >> (i915#5493 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html> >> +1 other test pass >> * >> >> igt@gem_mmap_offset@partial-remap@smem0: >> >> o shard-rkl: DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-4/igt@gem_mmap_offset@partial-remap@smem0.html> >> (i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_mmap_offset@partial-remap@smem0.html> >> +9 other tests pass >> * >> >> igt@gem_softpin@noreloc-s3: >> >> o shard-rkl: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-3/igt@gem_softpin@noreloc-s3.html> >> (i915#13809 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@gem_softpin@noreloc-s3.html> >> * >> >> igt@i915_pm_freq_api@freq-suspend@gt0: >> >> o shard-dg2: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html> >> (i915#12455 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455> >> / i915#13820 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html> >> +1 other test pass >> * >> >> igt@kms_color@ctm-red-to-blue: >> >> o shard-dg1: DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_color@ctm-red-to-blue.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_color@ctm-red-to-blue.html> >> +1 other test pass >> * >> >> igt@kms_cursor_crc@cursor-random-256x85: >> >> o shard-tglu: FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-5/igt@kms_cursor_crc@cursor-random-256x85.html> >> (i915#13566 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85.html> >> +1 other test pass >> * >> >> igt@kms_cursor_legacy@flip-vs-cursor-atomic: >> >> o shard-snb: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> >> (i915#14345 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14345>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> >> * >> >> igt@kms_dp_link_training@non-uhbr-sst: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-sst.html> >> (i915#13749 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html> >> * >> >> igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: >> >> o shard-snb: FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> >> (i915#13734 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> >> +1 other test pass >> * >> >> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: >> >> o shard-snb: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html> >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html> >> * >> >> igt@kms_hdr@bpc-switch-dpms: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-7/igt@kms_hdr@bpc-switch-dpms.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html> >> * >> >> igt@kms_pm_rpm@modeset-lpsp: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html> >> * >> >> igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: >> >> o shard-rkl: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> >> * >> >> igt@perf_pmu@module-unload: >> >> o shard-mtlp: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-4/igt@perf_pmu@module-unload.html> >> (i915#13520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@perf_pmu@module-unload.html> >> o shard-dg2: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@perf_pmu@module-unload.html> >> (i915#13520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@perf_pmu@module-unload.html> >> >> >> Warnings >> >> * >> >> igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: >> >> o shard-rkl: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html> >> (i915#14098 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> * >> >> igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: >> >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +1 other test skip >> * >> >> igt@kms_content_protection@legacy: >> >> o shard-dg2: FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@kms_content_protection@legacy.html> >> (i915#7173 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_content_protection@legacy.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_cursor_legacy@flip-vs-cursor-varying-size: >> >> o shard-rkl: FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html> >> (i915#2346 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>) >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html> >> (i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> >> (i915#10433 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> >> / i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +1 other test skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: >> >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html> >> (i915#10433 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> >> / i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +1 other test skip >> * >> >> igt@kms_hdr@brightness-with-hdr: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html> >> (i915#12713 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html> >> (i915#13331 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331>) >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html> >> (i915#12713 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html> >> (i915#1187 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> >> / i915#12713 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) >> * >> >> igt@kms_pm_backlight@fade-with-suspend: >> >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-12/igt@kms_pm_backlight@fade-with-suspend.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> >> / i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> * >> >> igt@kms_psr@pr-sprite-plane-move: >> >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_psr@pr-sprite-plane-move.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@kms_psr@pr-sprite-plane-move.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> >> >> Build changes >> >> * CI: CI-20190529 -> None >> * IGT: IGT_8383 -> IGTPW_13206 >> * Piglit: piglit_4509 -> None >> >> CI-20190529: 20190529 >> CI_DRM_16611: bf0749a9930efe943554c3f73454d03c43779d15 @ >> git://anongit.freedesktop.org/gfx-ci/linux >> IGTPW_13206: 0b49229cc7ef6d577ae4afb48a5149a197a8dd43 @ >> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git >> IGT_8383: 8383 >> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ >> git://anongit.freedesktop.org/piglit >> > [-- Attachment #2: Type: text/html, Size: 201307 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) 2025-05-30 17:08 ` Anirban, Sk 2025-05-30 18:10 ` Anirban, Sk @ 2025-05-30 18:11 ` Anirban, Sk 1 sibling, 0 replies; 13+ messages in thread From: Anirban, Sk @ 2025-05-30 18:11 UTC (permalink / raw) To: igt-dev, I915-ci-infra; +Cc: kamil.konieczny [-- Attachment #1: Type: text/plain, Size: 153420 bytes --] On 30-05-2025 22:38, Anirban, Sk wrote: > Hi, > The issues reported here are not related to my changes. > > Thanks, > Anirban > > On 30-05-2025 18:22, Patchwork wrote: >> Project List - Patchwork *Patch Details* >> *Series:* tests/i915/pm_rc6_residency: Use sysfs to achieve peak >> frequency (rev4) >> *URL:* https://patchwork.freedesktop.org/series/148054/ >> *State:* failure >> *Details:* >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/index.html >> >> >> CI Bug Log - changes from CI_DRM_16611_full -> IGTPW_13206_full >> >> >> Summary >> >> *FAILURE* >> >> Serious unknown changes coming with IGTPW_13206_full absolutely need >> to be >> verified manually. >> >> If you think the reported changes have nothing to do with the changes >> introduced in IGTPW_13206_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_13206/index.html >> >> >> Participating hosts (10 -> 10) >> >> No changes in participating hosts >> >> >> Possible new issues >> >> Here are the unknown changes that may have been introduced in >> IGTPW_13206_full: >> >> >> IGT changes >> >> >> Possible regressions >> >> * igt@perf_pmu@module-unload: >> o shard-glk: NOTRUN -> ABORT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@perf_pmu@module-unload.html> >> >> >> New tests >> >> New tests have been introduced between CI_DRM_16611_full and >> IGTPW_13206_full: >> >> >> New IGT tests (3) >> >> * >> >> igt@kms_flip@2x-flip-vs-fences-interruptible@ab-hdmi-a1-hdmi-a2: >> >> o Statuses : 1 pass(s) >> o Exec time: [10.97] s >> * >> >> igt@kms_flip@2x-flip-vs-fences-interruptible@ac-hdmi-a1-hdmi-a2: >> >> o Statuses : 1 pass(s) >> o Exec time: [10.76] s >> * >> >> igt@kms_flip@2x-flip-vs-fences-interruptible@bc-hdmi-a1-hdmi-a2: >> >> o Statuses : 1 pass(s) >> o Exec time: [10.69] s >> >> >> Known issues >> >> Here are the changes found in IGTPW_13206_full that come from known >> issues: >> >> >> IGT changes >> >> >> Issues hit >> >> * >> >> igt@api_intel_bb@crc32: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@api_intel_bb@crc32.html> >> (i915#6230 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@api_intel_bb@crc32.html> >> (i915#6230 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) >> * >> >> igt@api_intel_bb@object-reloc-keep-cache: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html> >> (i915#8411 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) >> +2 other tests skip >> * >> >> igt@gem_basic@multigpu-create-close: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_basic@multigpu-create-close.html> >> (i915#7697 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) >> * >> >> igt@gem_ccs@ctrl-surf-copy: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#9323 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) >> +1 other test skip >> * >> >> igt@gem_ccs@suspend-resume: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_ccs@suspend-resume.html> >> (i915#9323 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) >> +1 other test skip >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@gem_ccs@suspend-resume.html> >> (i915#9323 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) >> +1 other test skip >> * >> >> igt@gem_compute@compute-square: >> >> o shard-dg2: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_compute@compute-square.html> >> (i915#13665 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665>) >> * >> >> igt@gem_create@create-ext-cpu-access-sanity-check: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html> >> (i915#6335 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) >> * >> >> igt@gem_ctx_freq@sysfs: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@gem_ctx_freq@sysfs.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_ctx_freq@sysfs.html> >> (i915#9561 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561>) >> +1 other test fail >> * >> >> igt@gem_ctx_persistence@heartbeat-hang: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html> >> (i915#8555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) >> +2 other tests skip >> * >> >> igt@gem_ctx_persistence@heartbeat-many: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-many.html> >> (i915#8555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) >> * >> >> igt@gem_ctx_persistence@legacy-engines-cleanup: >> >> o shard-snb: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb5/igt@gem_ctx_persistence@legacy-engines-cleanup.html> >> (i915#1099 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) >> +1 other test skip >> * >> >> igt@gem_ctx_sseu@mmap-args: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ctx_sseu@mmap-args.html> >> (i915#280 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html> >> (i915#280 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) >> * >> >> igt@gem_eio@hibernate: >> >> o shard-dg2: NOTRUN -> ABORT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@gem_eio@hibernate.html> >> (i915#10030 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030> >> / i915#7975 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975> >> / i915#8213 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213>) >> * >> >> igt@gem_eio@reset-stress: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@gem_eio@reset-stress.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@gem_eio@reset-stress.html> >> (i915#5784 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>) >> * >> >> igt@gem_exec_balancer@bonded-dual: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html> >> (i915#4771 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) >> * >> >> igt@gem_exec_balancer@bonded-false-hang: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_balancer@bonded-false-hang.html> >> (i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> +1 other test skip >> * >> >> igt@gem_exec_balancer@parallel: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_exec_balancer@parallel.html> >> (i915#4525 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) >> +1 other test skip >> * >> >> igt@gem_exec_balancer@parallel-bb-first: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html> >> (i915#4525 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) >> * >> >> igt@gem_exec_balancer@sliced: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_exec_balancer@sliced.html> >> (i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> +1 other test skip >> * >> >> igt@gem_exec_big@single: >> >> o shard-tglu: NOTRUN -> ABORT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_exec_big@single.html> >> (i915#11713 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713>) >> * >> >> igt@gem_exec_capture@capture-invisible: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@gem_exec_capture@capture-invisible.html> >> (i915#6334 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) >> +2 other tests skip >> * >> >> igt@gem_exec_fence@submit67: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@gem_exec_fence@submit67.html> >> (i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> * >> >> igt@gem_exec_flush@basic-uc-set-default: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html> >> (i915#3539 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>) >> * >> >> igt@gem_exec_flush@basic-wb-ro-before-default: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@gem_exec_flush@basic-wb-ro-before-default.html> >> (i915#3539 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> >> / i915#4852 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) >> +3 other tests skip >> * >> >> igt@gem_exec_flush@basic-wb-ro-default: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_flush@basic-wb-ro-default.html> >> (i915#3539 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> >> / i915#4852 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) >> * >> >> igt@gem_exec_flush@basic-wb-rw-before-default: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-before-default.html> >> (i915#3539 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> >> / i915#4852 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) >> +1 other test skip >> * >> >> igt@gem_exec_gttfill@basic: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@gem_exec_gttfill@basic.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_exec_gttfill@basic.html> >> (i915#12917 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> >> / i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> * >> >> igt@gem_exec_reloc@basic-cpu-noreloc: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-noreloc.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> +1 other test skip >> * >> >> igt@gem_exec_reloc@basic-gtt-read: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-read.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> +4 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-read.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> * >> >> igt@gem_exec_reloc@basic-write-gtt-noreloc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> +2 other tests skip >> * >> >> igt@gem_exec_reloc@basic-write-read: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html> >> (i915#3281 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) >> +16 other tests skip >> * >> >> igt@gem_exec_schedule@preempt-queue: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_exec_schedule@preempt-queue.html> >> (i915#4537 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> >> / i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> * >> >> igt@gem_exec_schedule@preempt-queue-chain: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html> >> (i915#4537 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> >> / i915#4812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) >> * >> >> igt@gem_exec_schedule@semaphore-power: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html> >> (i915#7276 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276>) >> * >> >> igt@gem_exec_schedule@thriceslice: >> >> o shard-snb: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@gem_exec_schedule@thriceslice.html> >> +66 other tests skip >> * >> >> igt@gem_fenced_exec_thrash@2-spare-fences: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@gem_fenced_exec_thrash@2-spare-fences.html> >> (i915#4860 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) >> +1 other test skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@gem_fenced_exec_thrash@2-spare-fences.html> >> (i915#4860 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) >> * >> >> igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html> >> (i915#4860 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) >> * >> >> igt@gem_lmem_evict@dontneed-evict-race: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> >> / i915#7582 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> >> / i915#7582 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) >> * >> >> igt@gem_lmem_swapping@heavy-verify-multi-ccs: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> +2 other tests skip >> * >> >> igt@gem_lmem_swapping@parallel-random-verify: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> +5 other tests skip >> * >> >> igt@gem_lmem_swapping@random: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@gem_lmem_swapping@random.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> * >> >> igt@gem_lmem_swapping@smem-oom@lmem0: >> >> o shard-dg2: NOTRUN -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html> >> (i915#5493 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) >> +1 other test dmesg-warn >> * >> >> igt@gem_lmem_swapping@verify-ccs: >> >> o shard-glk: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> +6 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs.html> >> (i915#12193 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193>) >> * >> >> igt@gem_lmem_swapping@verify-ccs@lmem0: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs@lmem0.html> >> (i915#4565 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>) >> * >> >> igt@gem_lmem_swapping@verify-random: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html> >> (i915#4613 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) >> +1 other test skip >> * >> >> igt@gem_mmap_gtt@basic-small-copy: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy.html> >> (i915#4077 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) >> +4 other tests skip >> * >> >> igt@gem_mmap_gtt@zero-extend: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_mmap_gtt@zero-extend.html> >> (i915#4077 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) >> +3 other tests skip >> * >> >> igt@gem_mmap_wc@copy: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_mmap_wc@copy.html> >> (i915#4083 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) >> +4 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@gem_mmap_wc@copy.html> >> (i915#4083 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) >> +2 other tests skip >> * >> >> igt@gem_mmap_wc@write: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@gem_mmap_wc@write.html> >> (i915#4083 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) >> * >> >> igt@gem_mmap_wc@write-cpu-read-wc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_mmap_wc@write-cpu-read-wc.html> >> (i915#4083 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) >> +4 other tests skip >> * >> >> igt@gem_partial_pwrite_pread@reads-uncached: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> +6 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@gem_partial_pwrite_pread@reads-uncached.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> +2 other tests skip >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@gem_partial_pwrite_pread@reads-uncached.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> +1 other test skip >> * >> >> igt@gem_partial_pwrite_pread@writes-after-reads-uncached: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> +13 other tests skip >> * >> >> igt@gem_pread@bench: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_pread@bench.html> >> (i915#3282 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) >> * >> >> igt@gem_pxp@create-regular-context-1: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html> >> (i915#4270 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) >> * >> >> igt@gem_pxp@hw-rejects-pxp-buffer: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html> >> (i915#13398 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398>) >> * >> >> igt@gem_pxp@protected-encrypted-src-copy-not-readible: >> >> o shard-rkl: NOTRUN -> TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html> >> (i915#12917 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> >> / i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> +4 other tests timeout >> * >> >> igt@gem_pxp@protected-raw-src-copy-not-readible: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html> >> (i915#4270 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) >> +4 other tests skip >> * >> >> igt@gem_pxp@reject-modify-context-protection-off-3: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html> >> -> TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html> >> (i915#12917 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> >> / i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> * >> >> igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> >> (i915#4270 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) >> +1 other test skip >> * >> >> igt@gem_render_copy@y-tiled-to-vebox-y-tiled: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html> >> (i915#8428 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) >> +1 other test skip >> * >> >> igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html> >> (i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> >> / i915#8428 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) >> +7 other tests skip >> * >> >> igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html> >> (i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> >> / i915#8428 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) >> +2 other tests skip >> * >> >> igt@gem_set_tiling_vs_pwrite: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gem_set_tiling_vs_pwrite.html> >> (i915#4079 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) >> +1 other test skip >> * >> >> igt@gem_tiled_partial_pwrite_pread@writes: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@gem_tiled_partial_pwrite_pread@writes.html> >> (i915#4077 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) >> +14 other tests skip >> * >> >> igt@gem_tiling_max_stride: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@gem_tiling_max_stride.html> >> (i915#4077 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) >> +3 other tests skip >> * >> >> igt@gem_userptr_blits@create-destroy-unsync: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) >> +3 other tests skip >> * >> >> igt@gem_userptr_blits@map-fixed-invalidate-busy: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> >> / i915#4880 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>) >> * >> >> igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> >> / i915#4880 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>) >> * >> >> igt@gem_userptr_blits@readonly-pwrite-unsync: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_userptr_blits@readonly-pwrite-unsync.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) >> * >> >> igt@gem_userptr_blits@sd-probe: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> >> / i915#4958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> >> / i915#4958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>) >> * >> >> igt@gem_userptr_blits@unsync-unmap: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap.html> >> (i915#3297 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) >> +2 other tests skip >> * >> >> igt@gem_workarounds@suspend-resume-fd: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html> >> -> INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html> >> (i915#13356 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) >> * >> >> igt@gen7_exec_parse@bitmasks: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html> >> +11 other tests skip >> * >> >> igt@gen9_exec_parse@batch-zero-length: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html> >> (i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gen9_exec_parse@batch-zero-length.html> >> (i915#2527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) >> * >> >> igt@gen9_exec_parse@bb-oversize: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html> >> (i915#2527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) >> +6 other tests skip >> * >> >> igt@gen9_exec_parse@bb-start-out: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html> >> (i915#2527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> >> / i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> * >> >> igt@gen9_exec_parse@cmd-crossing-page: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html> >> (i915#2527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> >> / i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> +3 other tests skip >> * >> >> igt@gen9_exec_parse@secure-batches: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html> >> (i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> * >> >> igt@gen9_exec_parse@shadow-peek: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html> >> (i915#2856 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) >> +3 other tests skip >> * >> >> igt@i915_drm_fdinfo@busy-check-all@vcs1: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@i915_drm_fdinfo@busy-check-all@vcs1.html> >> (i915#11527 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527>) >> +7 other tests skip >> * >> >> igt@i915_drm_fdinfo@most-busy-check-all: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@i915_drm_fdinfo@most-busy-check-all.html> >> (i915#14073 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) >> +5 other tests skip >> * >> >> igt@i915_drm_fdinfo@most-busy-check-all@bcs0: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html> >> (i915#14073 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) >> +6 other tests skip >> * >> >> igt@i915_drm_fdinfo@most-busy-check-all@vecs0: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html> >> (i915#14073 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) >> +7 other tests skip >> * >> >> igt@i915_pm_freq_mult@media-freq@gt0: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html> >> (i915#6590 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>) >> +1 other test skip >> * >> >> igt@i915_pm_rc6_residency@rc6-fence: >> >> o shard-tglu: NOTRUN -> WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html> >> (i915#13790 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790> >> / i915#2681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681>) >> +1 other test warn >> * >> >> igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: >> >> o shard-tglu-1: NOTRUN -> WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> >> (i915#13790 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790> >> / i915#2681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681>) >> +4 other tests warn >> * >> >> igt@i915_pm_rps@min-max-config-idle: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html> >> (i915#11681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> >> / i915#6621 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) >> * >> >> igt@i915_pm_rps@thresholds-idle-park: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park.html> >> (i915#11681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html> >> (i915#11681 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) >> * >> >> igt@i915_pm_sseu@full-enable: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@i915_pm_sseu@full-enable.html> >> (i915#4387 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@i915_pm_sseu@full-enable.html> >> (i915#4387 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) >> * >> >> igt@i915_selftest@live: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@i915_selftest@live.html> >> -> DMESG-FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@i915_selftest@live.html> >> (i915#13550 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550>) >> +1 other test dmesg-fail >> * >> >> igt@i915_selftest@perf: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb2/igt@i915_selftest@perf.html> >> -> ABORT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@i915_selftest@perf.html> >> (i915#11703 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703>) >> +1 other test abort >> * >> >> igt@i915_suspend@basic-s3-without-i915: >> >> o shard-glk: NOTRUN -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@i915_suspend@basic-s3-without-i915.html> >> (i915#13736 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736>) >> * >> >> igt@i915_suspend@forcewake: >> >> o shard-glk: NOTRUN -> INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk1/igt@i915_suspend@forcewake.html> >> (i915#4817 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) >> +1 other test incomplete >> * >> >> igt@intel_hwmon@hwmon-write: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@intel_hwmon@hwmon-write.html> >> (i915#7707 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) >> +1 other test skip >> * >> >> igt@kms_addfb_basic@addfb25-x-tiled-legacy: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> >> (i915#4212 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) >> +1 other test skip >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> >> (i915#4212 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) >> * >> >> igt@kms_addfb_basic@framebuffer-vs-set-tiling: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html> >> (i915#4212 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html> >> (i915#4212 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) >> +1 other test skip >> * >> >> igt@kms_addfb_basic@invalid-smem-bo-on-discrete: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> >> (i915#12454 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> >> / i915#12712 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) >> * >> >> igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc.html> >> (i915#8709 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) >> +7 other tests skip >> * >> >> igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc.html> >> (i915#8709 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) >> +1 other test skip >> * >> >> igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> >> (i915#1769 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> * >> >> igt@kms_big_fb@4-tiled-16bpp-rotate-270: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html> >> +5 other tests skip >> * >> >> igt@kms_big_fb@4-tiled-32bpp-rotate-90: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html> >> (i915#5286 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) >> +5 other tests skip >> * >> >> igt@kms_big_fb@4-tiled-64bpp-rotate-0: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html> >> (i915#4538 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> >> / i915#5286 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) >> +2 other tests skip >> * >> >> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> >> (i915#5286 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) >> +9 other tests skip >> * >> >> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> >> (i915#5286 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) >> +2 other tests skip >> * >> >> igt@kms_big_fb@linear-32bpp-rotate-270: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_big_fb@linear-32bpp-rotate-270.html> >> +6 other tests skip >> * >> >> igt@kms_big_fb@y-tiled-64bpp-rotate-0: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html> >> (i915#4538 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> +8 other tests skip >> * >> >> igt@kms_big_fb@y-tiled-8bpp-rotate-90: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> >> (i915#3638 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) >> +4 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> >> (i915#3638 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) >> +1 other test skip >> * >> >> igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> >> (i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> +3 other tests skip >> * >> >> igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html> >> (i915#4538 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> +4 other tests skip >> * >> >> igt@kms_big_fb@yf-tiled-64bpp-rotate-270: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html> >> (i915#4538 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) >> +2 other tests skip >> * >> >> igt@kms_big_fb@yf-tiled-addfb: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb.html> >> (i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> * >> >> igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html> >> (i915#10307 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +172 other tests skip >> * >> >> igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html> >> (i915#10307 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +24 other tests skip >> * >> >> igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: >> >> o shard-glk: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html> >> +444 other tests skip >> * >> >> igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html> >> (i915#10307 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> >> / i915#10434 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> * >> >> igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> >> (i915#12313 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) >> * >> >> igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> >> (i915#12313 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) >> +1 other test skip >> * >> >> igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +59 other tests skip >> * >> >> igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> >> (i915#14098 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +55 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +39 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +34 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +37 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +21 other tests skip >> * >> >> igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +4 other tests skip >> * >> >> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> >> (i915#12313 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) >> +3 other tests skip >> * >> >> igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +142 other tests skip >> * >> >> igt@kms_cdclk@mode-transition: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_cdclk@mode-transition.html> >> (i915#3742 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_cdclk@mode-transition.html> >> (i915#3742 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) >> * >> >> igt@kms_cdclk@mode-transition-all-outputs: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_cdclk@mode-transition-all-outputs.html> >> (i915#13784 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784>) >> * >> >> igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> >> (i915#13781 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781>) >> +4 other tests skip >> * >> >> igt@kms_cdclk@plane-scaling: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cdclk@plane-scaling.html> >> (i915#3742 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) >> * >> >> igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +5 other tests skip >> * >> >> igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +6 other tests skip >> * >> >> igt@kms_chamelium_frames@hdmi-crc-multiple: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_chamelium_frames@hdmi-crc-multiple.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +2 other tests skip >> * >> >> igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +15 other tests skip >> * >> >> igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +2 other tests skip >> * >> >> igt@kms_chamelium_hpd@vga-hpd-after-suspend: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +6 other tests skip >> * >> >> igt@kms_chamelium_hpd@vga-hpd-fast: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html> >> (i915#11151 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> >> / i915#7828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) >> +3 other tests skip >> * >> >> igt@kms_content_protection@atomic: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_content_protection@atomic.html> >> (i915#6944 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> >> / i915#7116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> >> / i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_content_protection@atomic.html> >> (i915#7116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_content_protection@atomic.html> >> (i915#6944 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_content_protection@atomic.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_content_protection@content-type-change: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_content_protection@content-type-change.html> >> (i915#6944 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_content_protection@dp-mst-lic-type-1: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-1.html> >> (i915#3299 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) >> * >> >> igt@kms_content_protection@dp-mst-type-0: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html> >> (i915#3116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) >> * >> >> igt@kms_content_protection@legacy: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_content_protection@legacy.html> >> (i915#6944 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> >> / i915#7116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> >> / i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_content_protection@mei-interface: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_content_protection@mei-interface.html> >> (i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_content_protection@srm: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_content_protection@srm.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_content_protection@srm.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_content_protection@srm.html> >> (i915#7116 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116>) >> * >> >> igt@kms_content_protection@uevent: >> >> o shard-dg2: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_content_protection@uevent.html> >> (i915#1339 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339> >> / i915#7173 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) >> +1 other test fail >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_content_protection@uevent.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_cursor_crc@cursor-offscreen-512x512: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> * >> >> igt@kms_cursor_crc@cursor-onscreen-128x42: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html> >> (i915#8814 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>) >> +1 other test skip >> * >> >> igt@kms_cursor_crc@cursor-onscreen-32x32: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +2 other tests skip >> * >> >> igt@kms_cursor_crc@cursor-random-512x512: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x512.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> +2 other tests skip >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> +2 other tests skip >> * >> >> igt@kms_cursor_crc@cursor-rapid-movement-32x10: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> * >> >> igt@kms_cursor_crc@cursor-rapid-movement-max-size: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +9 other tests skip >> * >> >> igt@kms_cursor_crc@cursor-sliding-128x42: >> >> o shard-tglu: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html> >> (i915#13566 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) >> +1 other test fail >> * >> >> igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: >> >> o shard-rkl: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html> >> (i915#13566 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) >> +2 other tests fail >> * >> >> igt@kms_cursor_crc@cursor-sliding-32x10: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +3 other tests skip >> * >> >> igt@kms_cursor_crc@cursor-sliding-512x170: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html> >> (i915#13049 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) >> * >> >> igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> >> (i915#13046 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> >> / i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> +5 other tests skip >> * >> >> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> >> (i915#4103 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> >> / i915#4213 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> >> (i915#4103 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) >> +1 other test skip >> * >> >> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> >> (i915#4103 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> >> (i915#4103 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> >> / i915#4213 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) >> * >> >> igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> >> +1 other test skip >> * >> >> igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> >> (i915#13046 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> >> / i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> * >> >> igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> >> (i915#9067 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) >> * >> >> igt@kms_dirtyfb@drrs-dirtyfb-ioctl: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> >> (i915#9723 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) >> * >> >> igt@kms_dirtyfb@psr-dirtyfb-ioctl: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> >> (i915#9833 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>) >> * >> >> igt@kms_dither@fb-8bpc-vs-panel-6bpc: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#3804 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) >> * >> >> igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> >> (i915#3804 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) >> * >> >> igt@kms_dp_aux_dev: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_dp_aux_dev.html> >> (i915#1257 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_dp_aux_dev.html> >> (i915#1257 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) >> * >> >> igt@kms_dp_link_training@uhbr-mst: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_dp_link_training@uhbr-mst.html> >> (i915#13748 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) >> * >> >> igt@kms_dp_link_training@uhbr-sst: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@kms_dp_link_training@uhbr-sst.html> >> (i915#13748 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) >> * >> >> igt@kms_dp_linktrain_fallback@dp-fallback: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html> >> (i915#13707 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) >> * >> >> igt@kms_dsc@dsc-basic: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dsc@dsc-basic.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_dsc@dsc-basic.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> * >> >> igt@kms_dsc@dsc-fractional-bpp: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> >> / i915#9688 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> +1 other test skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-1/igt@kms_dsc@dsc-fractional-bpp.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> >> / i915#9688 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) >> * >> >> igt@kms_dsc@dsc-with-formats: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_dsc@dsc-with-formats.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) >> * >> >> igt@kms_dsc@dsc-with-output-formats-with-bpc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> >> (i915#3840 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> >> / i915#9053 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>) >> * >> >> igt@kms_feature_discovery@display-2x: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_feature_discovery@display-2x.html> >> (i915#1839 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) >> * >> >> igt@kms_feature_discovery@psr1: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_feature_discovery@psr1.html> >> (i915#658 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) >> +1 other test skip >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_feature_discovery@psr1.html> >> (i915#658 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) >> +1 other test skip >> * >> >> igt@kms_feature_discovery@psr2: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_feature_discovery@psr2.html> >> (i915#658 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_feature_discovery@psr2.html> >> (i915#658 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) >> * >> >> igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> >> (i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +7 other tests skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-19/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> >> (i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +1 other test skip >> * >> >> igt@kms_flip@2x-flip-vs-dpms: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html> >> (i915#3637 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> >> / i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +2 other tests skip >> * >> >> igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html> >> (i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +19 other tests skip >> * >> >> igt@kms_flip@2x-flip-vs-fences-interruptible: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html> >> (i915#8381 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html> >> (i915#8381 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) >> * >> >> igt@kms_flip@2x-flip-vs-modeset: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html> >> (i915#3637 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> >> / i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +3 other tests skip >> * >> >> igt@kms_flip@2x-flip-vs-suspend-interruptible: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> >> -> TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> >> (i915#14033 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033> >> / i915#14350 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350>) >> o shard-glk: NOTRUN -> INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> >> (i915#12745 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> >> / i915#4839 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) >> * >> >> igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: >> >> o shard-glk: NOTRUN -> INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html> >> (i915#4839 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) >> * >> >> igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html> >> -> TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html> >> (i915#14033 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033>) >> * >> >> igt@kms_flip@2x-modeset-vs-vblank-race: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip@2x-modeset-vs-vblank-race.html> >> (i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> +2 other tests skip >> * >> >> igt@kms_flip@2x-plain-flip-ts-check: >> >> o shard-snb: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html> >> (i915#11832 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832> >> / i915#13734 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) >> +1 other test fail >> * >> >> igt@kms_flip@2x-wf_vblank-ts-check: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_flip@2x-wf_vblank-ts-check.html> >> (i915#3637 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> >> / i915#9934 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) >> * >> >> igt@kms_flip@basic-plain-flip@b-hdmi-a1: >> >> o shard-rkl: NOTRUN -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html> >> (i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> +20 other tests dmesg-warn >> * >> >> igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1: >> >> o shard-rkl: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html> >> (i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> +11 other tests dmesg-warn >> * >> >> igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1: >> >> o shard-tglu: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html> >> (i915#13734 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) >> +1 other test fail >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8810 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810> >> / i915#8813 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html> >> (i915#8810 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810> >> / i915#8813 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> >> (i915#2587 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> >> / i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: >> >> o shard-dg1: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> >> (i915#2587 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> >> / i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> +2 other tests skip >> * >> >> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> * >> >> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) >> +1 other test skip >> * >> >> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8813 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) >> +3 other tests skip >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> >> (i915#2672 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> >> / i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +2 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbc-tiling-y: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> >> (i915#10055 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>) >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> >> (i915#10055 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>) >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +6 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> >> +36 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> >> +39 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> +15 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html> >> (i915#1825 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) >> +6 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html> >> +15 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html> >> (i915#8708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) >> +25 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@pipe-fbc-rte: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> >> (i915#9766 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +16 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html> >> (i915#8708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) >> +8 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html> >> (i915#8708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) >> +6 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html> >> (i915#3023 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) >> +45 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> >> (i915#8708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) >> +7 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html> >> (i915#1825 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) >> +63 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> +34 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html> >> +61 other tests skip >> * >> >> igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +6 other tests skip >> * >> >> igt@kms_getfb@getfb-reject-ccs: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_getfb@getfb-reject-ccs.html> >> (i915#6118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118>) >> * >> >> igt@kms_hdr@bpc-switch: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_hdr@bpc-switch.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> * >> >> igt@kms_hdr@invalid-metadata-sizes: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> * >> >> igt@kms_hdr@static-swap: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_hdr@static-swap.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> * >> >> igt@kms_hdr@static-toggle-suspend: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> +2 other tests skip >> * >> >> igt@kms_joiner@invalid-modeset-big-joiner: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_joiner@invalid-modeset-big-joiner.html> >> (i915#10656 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) >> * >> >> igt@kms_joiner@invalid-modeset-force-big-joiner: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html> >> (i915#12388 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html> >> (i915#12388 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) >> * >> >> igt@kms_joiner@invalid-modeset-force-ultra-joiner: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> >> (i915#10656 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> >> (i915#12394 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394>) >> * >> >> igt@kms_multipipe_modeset@basic-max-pipe-crc-check: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> >> (i915#4816 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> >> (i915#4816 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) >> * >> >> igt@kms_panel_fitting@atomic-fastset: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html> >> (i915#6301 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) >> * >> >> igt@kms_plane_alpha_blend@alpha-opaque-fb: >> >> o shard-glk: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> >> (i915#10647 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647> >> / i915#12169 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>) >> * >> >> igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: >> >> o shard-glk: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html> >> (i915#10647 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) >> +1 other test fail >> * >> >> igt@kms_plane_cursor@overlay: >> >> o shard-mtlp: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-8/igt@kms_plane_cursor@overlay.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_plane_cursor@overlay.html> >> (i915#14371 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14371>) >> * >> >> igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64: >> >> o shard-mtlp: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-8/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html> >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html> >> (i915#13736 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736>) >> * >> >> igt@kms_plane_lowres@tiling-x: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_plane_lowres@tiling-x.html> >> (i915#11614 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614> >> / i915#3582 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>) >> +1 other test skip >> * >> >> igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html> >> (i915#10226 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226> >> / i915#11614 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614> >> / i915#3582 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>) >> +2 other tests skip >> * >> >> igt@kms_plane_multiple@2x-tiling-x: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-x.html> >> (i915#13958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) >> * >> >> igt@kms_plane_multiple@2x-tiling-y: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-y.html> >> (i915#13958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) >> +2 other tests skip >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-y.html> >> (i915#13958 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) >> * >> >> igt@kms_plane_multiple@tiling-4: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html> >> (i915#14259 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) >> * >> >> igt@kms_plane_scaling@intel-max-src-size: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html> >> (i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) >> * >> >> igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#9423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) >> +1 other test skip >> * >> >> igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +4 other tests skip >> * >> >> igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +8 other tests skip >> * >> >> igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#9423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) >> * >> >> igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +3 other tests skip >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +15 other tests skip >> * >> >> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> >> / i915#9423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) >> +1 other test skip >> * >> >> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +11 other tests skip >> * >> >> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) >> * >> >> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) >> +8 other tests skip >> * >> >> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> >> (i915#12247 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> >> / i915#6953 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) >> * >> >> igt@kms_pm_backlight@bad-brightness: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_pm_backlight@bad-brightness.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> * >> >> igt@kms_pm_backlight@fade-with-dpms: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html> >> (i915#9812 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>) >> +1 other test skip >> * >> >> igt@kms_pm_dc@dc3co-vpb-simulation: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html> >> (i915#9685 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) >> * >> >> igt@kms_pm_lpsp@kms-lpsp: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html> >> (i915#9340 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html> >> (i915#3828 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) >> * >> >> igt@kms_pm_rpm@modeset-lpsp-stress: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> * >> >> igt@kms_pm_rpm@modeset-non-lpsp-stress: >> >> o shard-dg2: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> * >> >> igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> * >> >> igt@kms_prime@basic-modeset-hybrid: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html> >> (i915#6524 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> >> / i915#6805 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) >> * >> >> igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> >> (i915#12316 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>) >> +1 other test skip >> o shard-snb: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +1 other test skip >> * >> >> igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html> >> (i915#9808 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808>) >> * >> >> igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-16/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +3 other tests skip >> * >> >> igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +17 other tests skip >> * >> >> igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: >> >> o shard-glk: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk9/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +10 other tests skip >> * >> >> igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +2 other tests skip >> * >> >> igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +2 other tests skip >> * >> >> igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +7 other tests skip >> * >> >> igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> >> (i915#11520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) >> +7 other tests skip >> * >> >> igt@kms_psr2_su@page_flip-p010: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html> >> (i915#9683 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) >> * >> >> igt@kms_psr@fbc-pr-primary-mmap-gtt: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_psr@fbc-pr-primary-mmap-gtt.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +7 other tests skip >> * >> >> igt@kms_psr@fbc-psr-primary-mmap-gtt: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_psr@fbc-psr-primary-mmap-gtt.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +19 other tests skip >> * >> >> igt@kms_psr@pr-cursor-blt: >> >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@kms_psr@pr-cursor-blt.html> >> (i915#9688 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) >> +6 other tests skip >> * >> >> igt@kms_psr@pr-suspend: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-14/igt@kms_psr@pr-suspend.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +9 other tests skip >> * >> >> igt@kms_psr@psr2-cursor-render: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_psr@psr2-cursor-render.html> >> (i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +13 other tests skip >> * >> >> igt@kms_psr@psr2-sprite-mmap-gtt: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html> >> (i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +10 other tests skip >> * >> >> igt@kms_psr@psr2-suspend: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_psr@psr2-suspend.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> +33 other tests skip >> * >> >> igt@kms_psr_stress_test@flip-primary-invalidate-overlay: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> >> (i915#9685 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) >> * >> >> igt@kms_psr_stress_test@invalidate-primary-flip-overlay: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> >> (i915#9685 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) >> * >> >> igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> >> (i915#12755 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> >> / i915#5190 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) >> * >> >> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> >> (i915#5289 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) >> +1 other test skip >> * >> >> igt@kms_rotation_crc@sprite-rotation-270: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html> >> (i915#12755 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) >> * >> >> igt@kms_setmode@basic: >> >> o shard-snb: NOTRUN -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_setmode@basic.html> >> (i915#5465 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) >> +2 other tests fail >> * >> >> igt@kms_setmode@basic-clone-single-crtc: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +2 other tests skip >> * >> >> igt@kms_setmode@clone-exclusive-crtc: >> >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@kms_setmode@clone-exclusive-crtc.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) >> +2 other tests skip >> * >> >> igt@kms_tiled_display@basic-test-pattern-with-chamelium: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> >> (i915#8623 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> >> (i915#8623 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> >> (i915#8623 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) >> * >> >> igt@kms_vrr@max-min: >> >> o shard-tglu-1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-1/igt@kms_vrr@max-min.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> * >> >> igt@kms_vrr@seamless-rr-switch-virtual: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> +1 other test skip >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> +1 other test skip >> * >> >> igt@kms_vrr@seamless-rr-switch-vrr: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> +1 other test skip >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-vrr.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> +1 other test skip >> o shard-tglu: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-vrr.html> >> (i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> o shard-mtlp: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-vrr.html> >> (i915#8808 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> >> / i915#9906 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) >> * >> >> igt@kms_writeback@writeback-fb-id: >> >> o shard-glk: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-glk5/igt@kms_writeback@writeback-fb-id.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) >> +3 other tests skip >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@kms_writeback@writeback-fb-id.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@kms_writeback@writeback-fb-id.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) >> +1 other test skip >> * >> >> igt@kms_writeback@writeback-pixel-formats: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> >> / i915#9412 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_writeback@writeback-pixel-formats.html> >> (i915#2437 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> >> / i915#9412 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) >> * >> >> igt@perf@gen8-unprivileged-single-ctx-counters: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html> >> (i915#2436 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>) >> * >> >> igt@perf@global-sseu-config-invalid: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-1/igt@perf@global-sseu-config-invalid.html> >> (i915#7387 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387>) >> * >> >> igt@perf@mi-rpc: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@perf@mi-rpc.html> >> (i915#2434 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>) >> * >> >> igt@perf_pmu@busy-idle-check-all@bcs0: >> >> o shard-mtlp: PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@bcs0.html> >> -> FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-6/igt@perf_pmu@busy-idle-check-all@bcs0.html> >> (i915#4349 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) >> +5 other tests fail >> * >> >> igt@perf_pmu@rc6@other-idle-gt0: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@perf_pmu@rc6@other-idle-gt0.html> >> (i915#8516 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) >> * >> >> igt@prime_vgem@basic-fence-flip: >> >> o shard-dg1: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html> >> (i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@prime_vgem@basic-fence-flip.html> >> (i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@prime_vgem@basic-fence-read: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@prime_vgem@basic-fence-read.html> >> (i915#3291 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> >> / i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@prime_vgem@basic-read: >> >> o shard-dg2: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-3/igt@prime_vgem@basic-read.html> >> (i915#3291 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> >> / i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@prime_vgem@fence-flip-hang: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html> >> (i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@prime_vgem@fence-read-hang: >> >> o shard-dg2-9: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-9/igt@prime_vgem@fence-read-hang.html> >> (i915#3708 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) >> * >> >> igt@sriov_basic@bind-unbind-vf: >> >> o shard-rkl: NOTRUN -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html> >> (i915#9917 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) >> +1 other test skip >> >> >> Possible fixes >> >> * >> >> igt@gem_ccs@suspend-resume: >> >> o shard-dg2: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@gem_ccs@suspend-resume.html> >> (i915#13356 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ccs@suspend-resume.html> >> * >> >> igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: >> >> o shard-dg2: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html> >> (i915#12392 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392> >> / i915#13356 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html> >> * >> >> igt@gem_eio@kms: >> >> o shard-tglu: DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-5/igt@gem_eio@kms.html> >> (i915#13363 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-7/igt@gem_eio@kms.html> >> * >> >> igt@gem_lmem_swapping@smem-oom@lmem0: >> >> o shard-dg1: TIMEOUT >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html> >> (i915#5493 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html> >> +1 other test pass >> * >> >> igt@gem_mmap_offset@partial-remap@smem0: >> >> o shard-rkl: DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-4/igt@gem_mmap_offset@partial-remap@smem0.html> >> (i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@gem_mmap_offset@partial-remap@smem0.html> >> +9 other tests pass >> * >> >> igt@gem_softpin@noreloc-s3: >> >> o shard-rkl: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-3/igt@gem_softpin@noreloc-s3.html> >> (i915#13809 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-8/igt@gem_softpin@noreloc-s3.html> >> * >> >> igt@i915_pm_freq_api@freq-suspend@gt0: >> >> o shard-dg2: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html> >> (i915#12455 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455> >> / i915#13820 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html> >> +1 other test pass >> * >> >> igt@kms_color@ctm-red-to-blue: >> >> o shard-dg1: DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_color@ctm-red-to-blue.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-15/igt@kms_color@ctm-red-to-blue.html> >> +1 other test pass >> * >> >> igt@kms_cursor_crc@cursor-random-256x85: >> >> o shard-tglu: FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-tglu-5/igt@kms_cursor_crc@cursor-random-256x85.html> >> (i915#13566 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85.html> >> +1 other test pass >> * >> >> igt@kms_cursor_legacy@flip-vs-cursor-atomic: >> >> o shard-snb: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> >> (i915#14345 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14345>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> >> * >> >> igt@kms_dp_link_training@non-uhbr-sst: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-sst.html> >> (i915#13749 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html> >> * >> >> igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: >> >> o shard-snb: FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> >> (i915#13734 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> >> +1 other test pass >> * >> >> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: >> >> o shard-snb: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html> >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html> >> * >> >> igt@kms_hdr@bpc-switch-dpms: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-7/igt@kms_hdr@bpc-switch-dpms.html> >> (i915#3555 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> >> / i915#8228 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html> >> * >> >> igt@kms_pm_rpm@modeset-lpsp: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html> >> * >> >> igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: >> >> o shard-rkl: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> >> (i915#9519 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> >> * >> >> igt@perf_pmu@module-unload: >> >> o shard-mtlp: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-mtlp-4/igt@perf_pmu@module-unload.html> >> (i915#13520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-mtlp-7/igt@perf_pmu@module-unload.html> >> o shard-dg2: INCOMPLETE >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-6/igt@perf_pmu@module-unload.html> >> (i915#13520 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520>) >> -> PASS >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@perf_pmu@module-unload.html> >> >> >> Warnings >> >> * >> >> igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: >> >> o shard-rkl: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html> >> (i915#14098 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> * >> >> igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: >> >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> >> / i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html> >> (i915#6095 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) >> +1 other test skip >> * >> >> igt@kms_content_protection@legacy: >> >> o shard-dg2: FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@kms_content_protection@legacy.html> >> (i915#7173 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-2/igt@kms_content_protection@legacy.html> >> (i915#7118 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> >> / i915#9424 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) >> * >> >> igt@kms_cursor_legacy@flip-vs-cursor-varying-size: >> >> o shard-rkl: FAIL >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html> >> (i915#2346 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>) >> -> DMESG-WARN >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html> >> (i915#12964 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> >> (i915#10433 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> >> / i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +1 other test skip >> * >> >> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: >> >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html> >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) >> * >> >> igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html> >> (i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html> >> (i915#10433 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> >> / i915#3458 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) >> +1 other test skip >> * >> >> igt@kms_hdr@brightness-with-hdr: >> >> o shard-dg2: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html> >> (i915#12713 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html> >> (i915#13331 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331>) >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html> >> (i915#12713 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html> >> (i915#1187 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> >> / i915#12713 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) >> * >> >> igt@kms_pm_backlight@fade-with-suspend: >> >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-12/igt@kms_pm_backlight@fade-with-suspend.html> >> (i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html> >> (i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> >> / i915#5354 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) >> * >> >> igt@kms_psr@pr-sprite-plane-move: >> >> o shard-dg1: SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16611/shard-dg1-16/igt@kms_psr@pr-sprite-plane-move.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#4423 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> -> SKIP >> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13206/shard-dg1-18/igt@kms_psr@pr-sprite-plane-move.html> >> (i915#1072 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> >> / i915#9732 >> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) >> >> >> Build changes >> >> * CI: CI-20190529 -> None >> * IGT: IGT_8383 -> IGTPW_13206 >> * Piglit: piglit_4509 -> None >> >> CI-20190529: 20190529 >> CI_DRM_16611: bf0749a9930efe943554c3f73454d03c43779d15 @ >> git://anongit.freedesktop.org/gfx-ci/linux >> IGTPW_13206: 0b49229cc7ef6d577ae4afb48a5149a197a8dd43 @ >> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git >> IGT_8383: 8383 >> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ >> git://anongit.freedesktop.org/piglit >> > [-- Attachment #2: Type: text/html, Size: 201307 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-06-02 10:17 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-05-29 9:08 [i-g-t, v7, 0/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban 2025-05-29 9:08 ` [PATCH v7 1/2] " Sk Anirban 2025-05-30 19:43 ` Kamil Konieczny 2025-06-02 10:16 ` Anirban, Sk 2025-05-29 9:08 ` [PATCH v7 2/2] HAX: Add rc6-idle tests to fast feedback list Sk Anirban 2025-05-29 10:24 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency (rev4) Patchwork 2025-05-29 10:25 ` ✗ i915.CI.BAT: failure " Patchwork 2025-05-29 17:23 ` ✓ Xe.CI.Full: success " Patchwork 2025-05-30 11:23 ` ✓ i915.CI.BAT: " Patchwork 2025-05-30 12:52 ` ✗ i915.CI.Full: failure " Patchwork 2025-05-30 17:08 ` Anirban, Sk 2025-05-30 18:10 ` Anirban, Sk 2025-05-30 18:11 ` Anirban, Sk
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox