* [igt-dev] [PATCH v6 i-g-t 0/2] add create-big-vram subtest
@ 2023-12-06 17:01 Marcin Bernatowicz
2023-12-06 17:01 ` [igt-dev] [PATCH v6 i-g-t 1/2] lib/xe/xe_query: xe_visible_available_vram_size helper Marcin Bernatowicz
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Marcin Bernatowicz @ 2023-12-06 17:01 UTC (permalink / raw)
To: igt-dev; +Cc: adam.miszczak, matthew.auld, jakub1.kolakowski
Validate the creation of significant Buffer Object (BO) within VRAM,
considering the entire available CPU-visible VRAM size.
Marcin Bernatowicz (2):
lib/xe/xe_query: xe_visible_available_vram_size helper
tests/intel/xe_create: create-big-vram subtest
lib/xe/xe_query.c | 58 ++++++++++++++++++-------
lib/xe/xe_query.h | 3 +-
tests/intel/xe_create.c | 86 +++++++++++++++++++++++++++++++++++++-
tests/intel/xe_evict_ccs.c | 2 +-
4 files changed, 132 insertions(+), 17 deletions(-)
--
2.31.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH v6 i-g-t 1/2] lib/xe/xe_query: xe_visible_available_vram_size helper 2023-12-06 17:01 [igt-dev] [PATCH v6 i-g-t 0/2] add create-big-vram subtest Marcin Bernatowicz @ 2023-12-06 17:01 ` Marcin Bernatowicz 2023-12-06 17:51 ` Kamil Konieczny 2023-12-06 17:01 ` [igt-dev] [PATCH v6 i-g-t 2/2] tests/intel/xe_create: create-big-vram subtest Marcin Bernatowicz ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Marcin Bernatowicz @ 2023-12-06 17:01 UTC (permalink / raw) To: igt-dev; +Cc: adam.miszczak, matthew.auld, jakub1.kolakowski Added 'xe_visible_available_vram_size' helper function to query the available CPU-visible VRAM size. Also, renamed 'xe_vram_available' to 'xe_available_vram_size' for consistency with other function names. v2: adjustments to uAPI changes Cc: Francois Dugast <francois.dugast@intel.com> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Lukasz Laguna <lukasz.laguna@intel.com> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@intel.com> --- lib/xe/xe_query.c | 58 +++++++++++++++++++++++++++++--------- lib/xe/xe_query.h | 3 +- tests/intel/xe_evict_ccs.c | 2 +- 3 files changed, 47 insertions(+), 16 deletions(-) diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c index 3ebce8361..d2dad317e 100644 --- a/lib/xe/xe_query.c +++ b/lib/xe/xe_query.c @@ -578,20 +578,20 @@ uint64_t xe_visible_vram_size(int fd, int gt) return visible_size; } -/** - * xe_vram_available: - * @fd: xe device fd - * @gt: gt - * - * Returns available vram of xe device @fd and @gt. - */ -uint64_t xe_vram_available(int fd, int gt) + +struct __available_vram { + uint64_t total_available; + uint64_t cpu_visible_available; +}; + +static void __available_vram_size_snapshot(int fd, int gt, struct __available_vram *vram) { struct xe_device *xe_dev; int region_idx; struct drm_xe_mem_region *mem_region; struct drm_xe_query_mem_regions *mem_regions; + igt_assert(vram); xe_dev = find_in_cache(fd); igt_assert(xe_dev); @@ -599,19 +599,49 @@ uint64_t xe_vram_available(int fd, int gt) mem_region = &xe_dev->mem_regions->mem_regions[region_idx]; if (XE_IS_CLASS_VRAM(mem_region)) { - uint64_t available_vram; - mem_regions = xe_query_mem_regions_new(fd); pthread_mutex_lock(&cache.cache_mutex); mem_region->used = mem_regions->mem_regions[region_idx].used; - available_vram = mem_region->total_size - mem_region->used; + mem_region->cpu_visible_used = + mem_regions->mem_regions[region_idx].cpu_visible_used; + vram->total_available = mem_region->total_size - mem_region->used; + vram->cpu_visible_available = + mem_region->cpu_visible_size - mem_region->cpu_visible_used; pthread_mutex_unlock(&cache.cache_mutex); free(mem_regions); - - return available_vram; } +} - return 0; +/** + * xe_available_vram_size: + * @fd: xe device fd + * @gt: gt + * + * Returns size of available vram of xe device @fd and @gt. + */ +uint64_t xe_available_vram_size(int fd, int gt) +{ + struct __available_vram vram = {}; + + __available_vram_size_snapshot(fd, gt, &vram); + + return vram.total_available; +} + +/** + * xe_visible_available_vram_size: + * @fd: xe device fd + * @gt: gt + * + * Returns size of visible available vram of xe device @fd and @gt. + */ +uint64_t xe_visible_available_vram_size(int fd, int gt) +{ + struct __available_vram vram = {}; + + __available_vram_size_snapshot(fd, gt, &vram); + + return vram.cpu_visible_available; } /** diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h index a91677ad1..1e3a7bdb9 100644 --- a/lib/xe/xe_query.h +++ b/lib/xe/xe_query.h @@ -89,7 +89,8 @@ unsigned int xe_number_engines(int fd); bool xe_has_vram(int fd); uint64_t xe_vram_size(int fd, int gt); uint64_t xe_visible_vram_size(int fd, int gt); -uint64_t xe_vram_available(int fd, int gt); +uint64_t xe_available_vram_size(int fd, int gt); +uint64_t xe_visible_available_vram_size(int fd, int gt); uint32_t xe_get_default_alignment(int fd); uint32_t xe_va_bits(int fd); uint16_t xe_dev_id(int fd); diff --git a/tests/intel/xe_evict_ccs.c b/tests/intel/xe_evict_ccs.c index 0c775e5f4..674c8537e 100644 --- a/tests/intel/xe_evict_ccs.c +++ b/tests/intel/xe_evict_ccs.c @@ -326,7 +326,7 @@ static void set_config(int fd, uint32_t flags, const struct param *param, config->param = param; config->flags = flags; config->free_mb = xe_visible_vram_size(fd, 0) / SZ_1M; - config->total_mb = xe_vram_available(fd, 0) / SZ_1M; + config->total_mb = xe_available_vram_size(fd, 0) / SZ_1M; config->test_mb = min_t(int, config->free_mb * config->param->vram_percent / 100, config->total_mb * config->param->vram_percent / 100); -- 2.31.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH v6 i-g-t 1/2] lib/xe/xe_query: xe_visible_available_vram_size helper 2023-12-06 17:01 ` [igt-dev] [PATCH v6 i-g-t 1/2] lib/xe/xe_query: xe_visible_available_vram_size helper Marcin Bernatowicz @ 2023-12-06 17:51 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2023-12-06 17:51 UTC (permalink / raw) To: igt-dev; +Cc: adam.miszczak, matthew.auld, Marcin Bernatowicz, jakub1.kolakowski Hi Marcin, On 2023-12-06 at 18:01:55 +0100, Marcin Bernatowicz wrote: > Added 'xe_visible_available_vram_size' helper function > to query the available CPU-visible VRAM size. > > Also, renamed 'xe_vram_available' to 'xe_available_vram_size' > for consistency with other function names. > > v2: adjustments to uAPI changes > > Cc: Francois Dugast <francois.dugast@intel.com> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Lukasz Laguna <lukasz.laguna@intel.com> > Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/xe/xe_query.c | 58 +++++++++++++++++++++++++++++--------- > lib/xe/xe_query.h | 3 +- > tests/intel/xe_evict_ccs.c | 2 +- > 3 files changed, 47 insertions(+), 16 deletions(-) > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index 3ebce8361..d2dad317e 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -578,20 +578,20 @@ uint64_t xe_visible_vram_size(int fd, int gt) > > return visible_size; > } > -/** > - * xe_vram_available: > - * @fd: xe device fd > - * @gt: gt > - * > - * Returns available vram of xe device @fd and @gt. > - */ > -uint64_t xe_vram_available(int fd, int gt) > + > +struct __available_vram { > + uint64_t total_available; > + uint64_t cpu_visible_available; > +}; > + > +static void __available_vram_size_snapshot(int fd, int gt, struct __available_vram *vram) > { > struct xe_device *xe_dev; > int region_idx; > struct drm_xe_mem_region *mem_region; > struct drm_xe_query_mem_regions *mem_regions; > > + igt_assert(vram); > xe_dev = find_in_cache(fd); > igt_assert(xe_dev); > > @@ -599,19 +599,49 @@ uint64_t xe_vram_available(int fd, int gt) > mem_region = &xe_dev->mem_regions->mem_regions[region_idx]; > > if (XE_IS_CLASS_VRAM(mem_region)) { > - uint64_t available_vram; > - > mem_regions = xe_query_mem_regions_new(fd); > pthread_mutex_lock(&cache.cache_mutex); > mem_region->used = mem_regions->mem_regions[region_idx].used; > - available_vram = mem_region->total_size - mem_region->used; > + mem_region->cpu_visible_used = > + mem_regions->mem_regions[region_idx].cpu_visible_used; > + vram->total_available = mem_region->total_size - mem_region->used; > + vram->cpu_visible_available = > + mem_region->cpu_visible_size - mem_region->cpu_visible_used; > pthread_mutex_unlock(&cache.cache_mutex); > free(mem_regions); > - > - return available_vram; > } > +} > > - return 0; > +/** > + * xe_available_vram_size: > + * @fd: xe device fd > + * @gt: gt > + * > + * Returns size of available vram of xe device @fd and @gt. > + */ > +uint64_t xe_available_vram_size(int fd, int gt) > +{ > + struct __available_vram vram = {}; > + > + __available_vram_size_snapshot(fd, gt, &vram); > + > + return vram.total_available; > +} > + > +/** > + * xe_visible_available_vram_size: > + * @fd: xe device fd > + * @gt: gt > + * > + * Returns size of visible available vram of xe device @fd and @gt. > + */ > +uint64_t xe_visible_available_vram_size(int fd, int gt) > +{ > + struct __available_vram vram = {}; > + > + __available_vram_size_snapshot(fd, gt, &vram); > + > + return vram.cpu_visible_available; > } > > /** > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h > index a91677ad1..1e3a7bdb9 100644 > --- a/lib/xe/xe_query.h > +++ b/lib/xe/xe_query.h > @@ -89,7 +89,8 @@ unsigned int xe_number_engines(int fd); > bool xe_has_vram(int fd); > uint64_t xe_vram_size(int fd, int gt); > uint64_t xe_visible_vram_size(int fd, int gt); > -uint64_t xe_vram_available(int fd, int gt); > +uint64_t xe_available_vram_size(int fd, int gt); > +uint64_t xe_visible_available_vram_size(int fd, int gt); > uint32_t xe_get_default_alignment(int fd); > uint32_t xe_va_bits(int fd); > uint16_t xe_dev_id(int fd); > diff --git a/tests/intel/xe_evict_ccs.c b/tests/intel/xe_evict_ccs.c > index 0c775e5f4..674c8537e 100644 > --- a/tests/intel/xe_evict_ccs.c > +++ b/tests/intel/xe_evict_ccs.c > @@ -326,7 +326,7 @@ static void set_config(int fd, uint32_t flags, const struct param *param, > config->param = param; > config->flags = flags; > config->free_mb = xe_visible_vram_size(fd, 0) / SZ_1M; > - config->total_mb = xe_vram_available(fd, 0) / SZ_1M; > + config->total_mb = xe_available_vram_size(fd, 0) / SZ_1M; > config->test_mb = min_t(int, config->free_mb * config->param->vram_percent / 100, > config->total_mb * config->param->vram_percent / 100); > > -- > 2.31.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH v6 i-g-t 2/2] tests/intel/xe_create: create-big-vram subtest 2023-12-06 17:01 [igt-dev] [PATCH v6 i-g-t 0/2] add create-big-vram subtest Marcin Bernatowicz 2023-12-06 17:01 ` [igt-dev] [PATCH v6 i-g-t 1/2] lib/xe/xe_query: xe_visible_available_vram_size helper Marcin Bernatowicz @ 2023-12-06 17:01 ` Marcin Bernatowicz 2023-12-06 17:57 ` Kamil Konieczny 2023-12-06 18:03 ` [igt-dev] ✓ Fi.CI.BAT: success for add create-big-vram subtest (rev3) Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Marcin Bernatowicz @ 2023-12-06 17:01 UTC (permalink / raw) To: igt-dev; +Cc: adam.miszczak, matthew.auld, jakub1.kolakowski Validates the creation of significant Buffer Object (BO) within VRAM, considering the entire available CPU-visible VRAM size. The size of the created BO can be adjusted using command line parameters, with '-S' representing BO size in MB, and '-p' representing BO size as a percentage of the VRAM size. v2: rebased, updated to uAPI changes (DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT), after review corrections: 1024UL -> 1024ULL, int -> unsigned int (Kamil) v3: provided a flag to allocate the memory within the CPU-visible portion of VRAM (Matt) __create_bo replaced with xe_bo_create_flags (Lukasz) removed the percent command line parameter (Lukasz) renamed size_MB to size_mb (Lukasz) added helper function to query available CPU-visible VRAM size, renamed 'xe_vram_available' to 'xe_available_vram_size' for consistency with other function names v4: split lib and test changes into separate patches (Lukasz, Kamil) added prefixes to titles (Kamil) restored percent command line parameter (Kamil) whitespace correction (Kamil) v5: skip the test if there is no available visible VRAM (Kamil) split to per gt subtests simplified bo_size assignment v6: adjustments to uAPI changes Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Lukasz Laguna <lukasz.laguna@intel.com> Cc: Matthew Auld <matthew.auld@intel.com> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@intel.com> --- tests/intel/xe_create.c | 86 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 85 insertions(+), 1 deletion(-) diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c index bbdddc7c9..6a1fe5750 100644 --- a/tests/intel/xe_create.c +++ b/tests/intel/xe_create.c @@ -18,6 +18,14 @@ #define PAGE_SIZE 0x1000 +static struct param { + unsigned int size_mb; + unsigned int vram_percent; +} params = { + .size_mb = 0, + .vram_percent = 100, +}; + static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t placement, uint32_t *handlep) { @@ -216,7 +224,74 @@ static void create_massive_size(int fd) } } -igt_main +/** + * SUBTEST: create-big-vram + * Functionality: BO creation + * Test category: functionality test + * Description: Verifies the creation of substantial BO within VRAM, + * constituting all available CPU-visible VRAM. + */ +static void create_big_vram(int fd, int gt) +{ + uint64_t bo_size, size, visible_avail_size, alignment; + uint32_t bo_handle; + char *bo_ptr = NULL; + uint64_t vm = 0; + + alignment = xe_get_default_alignment(fd); + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0); + + visible_avail_size = xe_visible_available_vram_size(fd, gt); + igt_require(visible_avail_size); + + bo_size = params.size_mb ? params.size_mb * 1024ULL * 1024ULL + : ALIGN_DOWN(visible_avail_size * params.vram_percent / 100, alignment); + igt_require(bo_size); + igt_info("gt%u bo_size=%lu visible_available_vram_size=%lu\n", + gt, bo_size, visible_avail_size); + + bo_handle = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, gt), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + bo_ptr = xe_bo_map(fd, bo_handle, bo_size); + + size = bo_size - 1; + while (size > SZ_64K) { + igt_assert_eq(0, READ_ONCE(bo_ptr[size])); + WRITE_ONCE(bo_ptr[size], 'A'); + igt_assert_eq('A', READ_ONCE(bo_ptr[size])); + size >>= 1; + } + igt_assert_eq(0, bo_ptr[0]); + + munmap(bo_ptr, bo_size); + gem_close(fd, bo_handle); + xe_vm_destroy(fd, vm); +} + +static int opt_handler(int opt, int opt_index, void *data) +{ + switch (opt) { + case 'S': + params.size_mb = atoi(optarg); + igt_debug("Size MB: %d\n", params.size_mb); + break; + case 'p': + params.vram_percent = atoi(optarg); + igt_debug("Percent of VRAM: %d\n", params.vram_percent); + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +const char *help_str = + " -S\tBO size in MB\n" + " -p\tPercent of VRAM for BO\n" + ; + +igt_main_args("S:p:", NULL, help_str, opt_handler, NULL) { int xe; @@ -255,6 +330,15 @@ igt_main igt_waitchildren(); } + igt_subtest_with_dynamic("create-big-vram") { + int gt; + + igt_require(xe_has_vram(xe)); + + xe_for_each_gt(xe, gt) + igt_dynamic_f("gt%u", gt) + create_big_vram(xe, gt); + } igt_fixture drm_close_driver(xe); -- 2.31.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH v6 i-g-t 2/2] tests/intel/xe_create: create-big-vram subtest 2023-12-06 17:01 ` [igt-dev] [PATCH v6 i-g-t 2/2] tests/intel/xe_create: create-big-vram subtest Marcin Bernatowicz @ 2023-12-06 17:57 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2023-12-06 17:57 UTC (permalink / raw) To: igt-dev; +Cc: adam.miszczak, matthew.auld, Marcin Bernatowicz, jakub1.kolakowski Hi Marcin, On 2023-12-06 at 18:01:56 +0100, Marcin Bernatowicz wrote: > Validates the creation of significant Buffer Object (BO) within VRAM, > considering the entire available CPU-visible VRAM size. > The size of the created BO can be adjusted using command line > parameters, with '-S' representing BO size in MB, > and '-p' representing BO size as a percentage of the VRAM size. > > v2: rebased, updated to uAPI changes (DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT), > after review corrections: 1024UL -> 1024ULL, > int -> unsigned int (Kamil) > > v3: provided a flag to allocate the memory within the CPU-visible > portion of VRAM (Matt) > __create_bo replaced with xe_bo_create_flags (Lukasz) > removed the percent command line parameter (Lukasz) > renamed size_MB to size_mb (Lukasz) > added helper function to query available CPU-visible VRAM size, > renamed 'xe_vram_available' to 'xe_available_vram_size' for > consistency with other function names > > v4: split lib and test changes into separate patches (Lukasz, Kamil) > added prefixes to titles (Kamil) > restored percent command line parameter (Kamil) > whitespace correction (Kamil) > > v5: skip the test if there is no available visible VRAM (Kamil) > split to per gt subtests > simplified bo_size assignment > > v6: adjustments to uAPI changes > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Cc: Lukasz Laguna <lukasz.laguna@intel.com> > Cc: Matthew Auld <matthew.auld@intel.com> > Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@intel.com> > --- > tests/intel/xe_create.c | 86 ++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 85 insertions(+), 1 deletion(-) > > diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c > index bbdddc7c9..6a1fe5750 100644 > --- a/tests/intel/xe_create.c > +++ b/tests/intel/xe_create.c > @@ -18,6 +18,14 @@ > > #define PAGE_SIZE 0x1000 > > +static struct param { > + unsigned int size_mb; > + unsigned int vram_percent; > +} params = { > + .size_mb = 0, > + .vram_percent = 100, > +}; > + > static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t placement, > uint32_t *handlep) > { > @@ -216,7 +224,74 @@ static void create_massive_size(int fd) > } > } > > -igt_main > +/** > + * SUBTEST: create-big-vram > + * Functionality: BO creation > + * Test category: functionality test > + * Description: Verifies the creation of substantial BO within VRAM, > + * constituting all available CPU-visible VRAM. > + */ > +static void create_big_vram(int fd, int gt) > +{ > + uint64_t bo_size, size, visible_avail_size, alignment; > + uint32_t bo_handle; > + char *bo_ptr = NULL; > + uint64_t vm = 0; > + > + alignment = xe_get_default_alignment(fd); > + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0); > + > + visible_avail_size = xe_visible_available_vram_size(fd, gt); > + igt_require(visible_avail_size); > + > + bo_size = params.size_mb ? params.size_mb * 1024ULL * 1024ULL > + : ALIGN_DOWN(visible_avail_size * params.vram_percent / 100, alignment); > + igt_require(bo_size); > + igt_info("gt%u bo_size=%lu visible_available_vram_size=%lu\n", > + gt, bo_size, visible_avail_size); > + > + bo_handle = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, gt), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + bo_ptr = xe_bo_map(fd, bo_handle, bo_size); > + > + size = bo_size - 1; > + while (size > SZ_64K) { > + igt_assert_eq(0, READ_ONCE(bo_ptr[size])); > + WRITE_ONCE(bo_ptr[size], 'A'); > + igt_assert_eq('A', READ_ONCE(bo_ptr[size])); > + size >>= 1; > + } > + igt_assert_eq(0, bo_ptr[0]); > + > + munmap(bo_ptr, bo_size); > + gem_close(fd, bo_handle); > + xe_vm_destroy(fd, vm); > +} > + > +static int opt_handler(int opt, int opt_index, void *data) > +{ > + switch (opt) { > + case 'S': > + params.size_mb = atoi(optarg); > + igt_debug("Size MB: %d\n", params.size_mb); > + break; > + case 'p': > + params.vram_percent = atoi(optarg); > + igt_debug("Percent of VRAM: %d\n", params.vram_percent); > + break; > + default: > + return IGT_OPT_HANDLER_ERROR; > + } > + > + return IGT_OPT_HANDLER_SUCCESS; > +} > + > +const char *help_str = > + " -S\tBO size in MB\n" > + " -p\tPercent of VRAM for BO\n" > + ; > + > +igt_main_args("S:p:", NULL, help_str, opt_handler, NULL) > { > int xe; > > @@ -255,6 +330,15 @@ igt_main > igt_waitchildren(); > } > > + igt_subtest_with_dynamic("create-big-vram") { > + int gt; > + > + igt_require(xe_has_vram(xe)); > + > + xe_for_each_gt(xe, gt) > + igt_dynamic_f("gt%u", gt) > + create_big_vram(xe, gt); > + } Could you move this before multigpu subtest? With this, Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil > > igt_fixture > drm_close_driver(xe); > -- > 2.31.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for add create-big-vram subtest (rev3) 2023-12-06 17:01 [igt-dev] [PATCH v6 i-g-t 0/2] add create-big-vram subtest Marcin Bernatowicz 2023-12-06 17:01 ` [igt-dev] [PATCH v6 i-g-t 1/2] lib/xe/xe_query: xe_visible_available_vram_size helper Marcin Bernatowicz 2023-12-06 17:01 ` [igt-dev] [PATCH v6 i-g-t 2/2] tests/intel/xe_create: create-big-vram subtest Marcin Bernatowicz @ 2023-12-06 18:03 ` Patchwork 2023-12-06 19:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-06 19:55 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-06 18:03 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2665 bytes --] == Series Details == Series: add create-big-vram subtest (rev3) URL : https://patchwork.freedesktop.org/series/126831/ State : success == Summary == CI Bug Log - changes from CI_DRM_13988 -> IGTPW_10355 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/index.html Participating hosts (37 -> 33) ------------------------------ Missing (4): bat-mtlp-8 bat-adlp-11 bat-jsl-1 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10355 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][1] -> [ABORT][2] ([i915#8668]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html #### Warnings #### * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-mtlp-6: [SKIP][3] -> [SKIP][4] ([i915#9792]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/bat-mtlp-6/igt@kms_pipe_crc_basic@nonblocking-crc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/bat-mtlp-6/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@prime_vgem@basic-fence-flip: - bat-mtlp-6: [SKIP][5] ([i915#3708]) -> [SKIP][6] ([i915#3708] / [i915#9792]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9792]: https://gitlab.freedesktop.org/drm/intel/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7625 -> IGTPW_10355 CI-20190529: 20190529 CI_DRM_13988: 6ae23377ae459d8506ecdd2f538bfee2f52652f6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10355: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/index.html IGT_7625: f40c67d84e142095ac6215be154e1f3710f26cba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_create@create-big-vram +igt@xe_waitfence@invalid-engine -igt@xe_waitfence@invalid-exec_queue-wait == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/index.html [-- Attachment #2: Type: text/html, Size: 3454 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for add create-big-vram subtest (rev3) 2023-12-06 17:01 [igt-dev] [PATCH v6 i-g-t 0/2] add create-big-vram subtest Marcin Bernatowicz ` (2 preceding siblings ...) 2023-12-06 18:03 ` [igt-dev] ✓ Fi.CI.BAT: success for add create-big-vram subtest (rev3) Patchwork @ 2023-12-06 19:42 ` Patchwork 2023-12-06 19:55 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-06 19:42 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100254 bytes --] == Series Details == Series: add create-big-vram subtest (rev3) URL : https://patchwork.freedesktop.org/series/126831/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13988_full -> IGTPW_10355_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10355_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10355_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_10355/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10355_full: ### IGT changes ### #### Possible regressions #### * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg1: NOTRUN -> [ABORT][1] +4 other tests abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-17/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: NOTRUN -> [ABORT][2] +5 other tests abort [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-3/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: NOTRUN -> [ABORT][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@perf@engine_cs: - shard-rkl: NOTRUN -> [ABORT][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-2/igt@i915_selftest@perf@engine_cs.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][7] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html #### Warnings #### * igt@i915_module_load@reload-no-display: - shard-snb: [INCOMPLETE][8] ([i915#4528]) -> [INCOMPLETE][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-snb4/igt@i915_module_load@reload-no-display.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-snb6/igt@i915_module_load@reload-no-display.html Known issues ------------ Here are the changes found in IGTPW_10355_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#8411]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-17/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8411]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@api_intel_bb@object-reloc-purge-cache.html * igt@core_hotunplug@unbind-rebind: - shard-dg2: NOTRUN -> [ABORT][15] ([i915#8213]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@core_hotunplug@unbind-rebind.html - shard-dg1: NOTRUN -> [ABORT][16] ([i915#8213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@core_hotunplug@unbind-rebind.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9318]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@debugfs_test@basic-hwmon.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9318]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#9318]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-2/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#7701]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][21] ([i915#7701]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8414]) +10 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8414]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-2/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8414]) +30 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-3/igt@drm_fdinfo@busy-hang@bcs0.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#9323]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#9323]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#9323]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#9323]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-13/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][31] ([i915#7297]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: NOTRUN -> [FAIL][32] ([i915#6268]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: NOTRUN -> [FAIL][33] ([i915#9561]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][34] ([fdo#109314]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-17/igt@gem_ctx_param@set-priority-not-supported.html - shard-dg2: NOTRUN -> [SKIP][35] ([fdo#109314]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-5/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#8555]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#8555]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#8555]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#1099]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-snb6/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#5882]) +9 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#280]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-2/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#280]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#280]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-dg2: [PASS][44] -> [FAIL][45] ([i915#5784]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-dg2-2/igt@gem_eio@kms.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][46] ([i915#8898]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-snb6/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4771]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4771]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@gem_exec_balancer@bonded-true-hang.html - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4812]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4525]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#6334]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html - shard-dg1: NOTRUN -> [SKIP][53] ([i915#6334]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-mtlp: NOTRUN -> [FAIL][54] ([i915#9606]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-none: - shard-snb: NOTRUN -> [SKIP][55] ([fdo#109271]) +311 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-snb7/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][56] ([i915#2842]) +4 other tests fail [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-glk7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][57] ([i915#2842]) +7 other tests fail [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglu: NOTRUN -> [FAIL][58] ([i915#2842]) +11 other tests fail [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-6/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-sync: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3539]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3539]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@gem_exec_fair@basic-throttle.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4473] / [i915#4771]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-6/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4812]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][63] ([fdo#109313]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3539] / [i915#4852]) +9 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3539] / [i915#4852]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_params@secure-non-root: - shard-mtlp: NOTRUN -> [SKIP][66] ([fdo#112283]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3281]) +11 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3281]) +14 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3281]) +10 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3281]) +15 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-5/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4537]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-2/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4537] / [i915#4812]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4537] / [i915#4812]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-6/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#7276]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4860]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-6/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#4613]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-glk4/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4613]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#4613]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#4613]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-4/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-4/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#284]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4077]) +16 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4077]) +12 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4077]) +11 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4083]) +8 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4083]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-read: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4083]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-6/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3282]) +9 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][90] ([i915#2658]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-glk1/igt@gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][91] ([i915#2658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-snb4/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][92] ([i915#2658]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-10/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3282]) +11 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4270]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-1/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4270]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-2/igt@gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4270]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#4270]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-tglu: NOTRUN -> [SKIP][98] ([i915#4270]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-10/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3282]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-2/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#8428]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-6/igt@gem_render_copy@y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4079]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4879]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@gem_unfence_active_buffers.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4879]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3297]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3297]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#3297]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#3297]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-8/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3297] / [i915#4880]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3297] / [i915#4880]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][111] ([i915#3318]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@gem_userptr_blits@vma-merge.html - shard-dg1: NOTRUN -> [FAIL][112] ([i915#3318]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#109289]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@gen3_render_tiledy_blits.html - shard-rkl: NOTRUN -> [SKIP][114] ([fdo#109289]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][115] ([fdo#109289]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][116] -> [INCOMPLETE][117] ([i915#5566]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-glk6/igt@gen9_exec_parse@allowed-single.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-glk2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#2856]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#2527]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#2856]) +7 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-2/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#2527]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#2527] / [i915#2856]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-9/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4881]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@i915_fb_tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#9200]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][125] ([i915#8668]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#6412]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6412]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-8/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#8399]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#6621]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds@gt0: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#8925]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#3555] / [i915#8925]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][132] ([i915#8346]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@i915_pm_rps@waitboost.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#6245]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-unsupported: - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#109302]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-3/igt@i915_query@query-topology-unsupported.html - shard-tglu: NOTRUN -> [SKIP][135] ([fdo#109302]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-3/igt@i915_query@query-topology-unsupported.html - shard-mtlp: NOTRUN -> [SKIP][136] ([fdo#109302]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@i915_query@query-topology-unsupported.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#7707]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][138] ([i915#7707]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-9/igt@intel_hwmon@hwmon-read.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7707]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4212]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#4212]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#4212] / [i915#5608]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#8709]) +7 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#8709]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#6228]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#5286]) +9 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html - shard-tglu: NOTRUN -> [SKIP][147] ([i915#5286]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5286]) +9 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#111615] / [i915#5286]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#111614]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3638]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][152] ([fdo#111614] / [i915#3638]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html - shard-tglu: NOTRUN -> [SKIP][153] ([fdo#111614]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-3/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#111614]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [FAIL][155] ([i915#3743]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#5190]) +20 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6187]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][158] ([fdo#111615]) +13 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][159] ([fdo#110723]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][160] ([fdo#111615]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5190]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#4538]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#2705]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#2705]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-3/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#2705]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#5354] / [i915#6095]) +51 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-9/igt@kms_ccs@pipe-a-crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#5354] / [i915#6095]) +30 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-1/igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5354]) +124 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#5354] / [i915#6095]) +57 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#5354] / [i915#6095]) +74 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#5354]) +40 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-3/igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4087] / [i915#7213]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][173] ([fdo#111827]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@kms_chamelium_color@ctm-0-25.html - shard-dg1: NOTRUN -> [SKIP][174] ([fdo#111827]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@kms_chamelium_color@ctm-0-25.html - shard-tglu: NOTRUN -> [SKIP][175] ([fdo#111827]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-10/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-max: - shard-mtlp: NOTRUN -> [SKIP][176] ([fdo#111827]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#7828]) +15 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#7828]) +12 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#7828]) +7 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-4/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#7828]) +10 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#7828]) +12 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#7118]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][183] ([i915#7118]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html - shard-tglu: NOTRUN -> [SKIP][184] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#9424]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3299]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3116]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3299]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3116] / [i915#3299]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3299]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#7116]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-17/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#9424]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@kms_content_protection@mei-interface.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#9424]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#6944]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][195] ([fdo#109279] / [i915#3359]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][196] ([fdo#109279] / [i915#3359]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3359]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#3359]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555]) +11 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3555]) +12 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3359]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3359]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555]) +10 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3359]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8814]) +6 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][206] ([fdo#109274]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4103] / [i915#4213] / [i915#5608]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#4103] / [i915#4213]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9809]) +10 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-snb: [PASS][210] -> [SKIP][211] ([fdo#109271]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][212] ([fdo#109274] / [i915#5354]) +6 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#9067]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#9067]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#4103] / [i915#4213]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][216] ([i915#4103]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#4103]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#4213]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9227]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9723]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#9723]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#1257]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8812]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#8812]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@kms_dsc@dsc-basic.html - shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@kms_dsc@dsc-basic.html - shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-9/igt@kms_dsc@dsc-basic.html - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#3840] / [i915#9159]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3840] / [i915#9688]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3840]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#3840]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3840] / [i915#9053]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3840] / [i915#9053]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#1839]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-2/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#1839]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#1839]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-1/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][238] ([i915#1839]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-2/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#1839]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#9337]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#4881]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][242] ([fdo#109274] / [fdo#111767]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-dg1: NOTRUN -> [SKIP][243] ([fdo#111767] / [fdo#111825]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][244] ([fdo#111825]) +22 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html - shard-tglu: NOTRUN -> [SKIP][245] ([fdo#109274] / [i915#3637]) +9 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#8381]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3637]) +11 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-3/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-dg2: NOTRUN -> [SKIP][248] ([fdo#109274]) +10 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-2/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#2672]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +9 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#8810]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#2672]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8810]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#2672]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg1: NOTRUN -> [SKIP][257] ([fdo#109285]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-17/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#8708]) +14 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][259] ([i915#6880]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#8708]) +34 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][261] ([fdo#111825]) +62 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#5460]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#5460]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][264] ([fdo#111825] / [i915#1825]) +57 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#3458]) +32 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#3023]) +28 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html - shard-tglu: NOTRUN -> [SKIP][267] ([fdo#110189]) +15 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#9653]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-rkl: NOTRUN -> [SKIP][269] ([i915#9653]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#9653]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#8708]) +32 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#3458]) +33 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][273] ([fdo#109280]) +37 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#1825]) +43 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-9/igt@kms_hdr@static-toggle-suspend.html - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#9457]) +3 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#4816]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#6301]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg1: NOTRUN -> [SKIP][284] ([fdo#109289]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-tglu: NOTRUN -> [SKIP][285] ([fdo#109289]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-5/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8821]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8821]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8806]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8806]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#9423]) +9 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][291] ([fdo#109271]) +241 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-glk8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#9423]) +11 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#9423]) +7 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#9423]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#5176]) +7 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#5176] / [i915#9423]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#5235]) +2 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#5235]) +8 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#5235]) +3 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#5235]) +7 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#5235]) +11 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#5354]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#9685]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#5978]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][305] ([i915#3361]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#9685]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#8430]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][308] -> [SKIP][309] ([i915#9519]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#9519]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9519]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#9519]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9519]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-rkl: [PASS][314] -> [SKIP][315] ([i915#9519]) +2 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-mtlp: NOTRUN -> [SKIP][316] ([fdo#109293]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#6524] / [i915#6805]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#6524]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#9683]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#9683]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][321] ([fdo#111068] / [i915#9683]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-5/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#9683]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][323] ([fdo#111068] / [i915#9683]) +3 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][324] ([fdo#111068] / [i915#9683]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-13/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][325] ([fdo#109642] / [fdo#111068] / [i915#9683]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-9/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#4348]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#9685]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#4235]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][329] ([fdo#111615] / [i915#5289]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#4235] / [i915#5190]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#4235]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#3555]) +8 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#8823]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#8623]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#8808]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-7/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#2437] / [i915#9412]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#2437]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][338] ([i915#2437]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#7387]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@rcs0: - shard-dg1: NOTRUN -> [FAIL][340] ([i915#4349]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][341] ([i915#4349]) +3 other tests fail [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][342] ([fdo#112283]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-5/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#8440]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-1/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#5608] / [i915#8516]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][345] ([i915#8516]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#8516]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#8516]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-16/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-rkl: NOTRUN -> [SKIP][348] ([fdo#109291]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@prime_udl.html - shard-tglu: NOTRUN -> [SKIP][349] ([fdo#109291]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-8/igt@prime_udl.html - shard-mtlp: NOTRUN -> [SKIP][350] ([fdo#109291]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@prime_udl.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#3708]) +3 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#3291] / [i915#3708]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#3708] / [i915#4077]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-3/igt@prime_vgem@basic-gtt.html - shard-dg1: NOTRUN -> [SKIP][354] ([i915#3708] / [i915#4077]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-13/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#3708]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-1/igt@prime_vgem@fence-write-hang.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-mtlp: NOTRUN -> [FAIL][356] ([i915#9779]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#4818]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][358] ([fdo#109307] / [i915#4818]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#2575]) +19 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-1/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#2575]) +22 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-19/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-tglu: NOTRUN -> [SKIP][361] ([fdo#109315] / [i915#2575]) +13 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-3/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_csd@bad-multisync-extension: - shard-rkl: NOTRUN -> [SKIP][362] ([fdo#109315]) +16 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@v3d/v3d_submit_csd@bad-multisync-extension.html * igt@v3d/v3d_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#2575]) +21 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@v3d/v3d_wait_bo@used-bo.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-dg1: NOTRUN -> [SKIP][364] ([i915#7711]) +15 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg1-17/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#7711]) +15 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-5/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#7711]) +15 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-3/igt@vc4/vc4_tiling@get-bad-handle.html - shard-rkl: NOTRUN -> [SKIP][367] ([i915#7711]) +12 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@vc4/vc4_tiling@get-bad-handle.html - shard-tglu: NOTRUN -> [SKIP][368] ([i915#2575]) +10 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-5/igt@vc4/vc4_tiling@get-bad-handle.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][369] ([i915#7975] / [i915#8213]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_whisper@basic-fds-priority-all: - shard-rkl: [INCOMPLETE][371] -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-rkl-4/igt@gem_exec_whisper@basic-fds-priority-all.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-2/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][373] ([i915#5138]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][375] ([i915#3743]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [FAIL][377] ([i915#6880]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-snb: [SKIP][379] ([fdo#109271]) -> [PASS][380] +3 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][381] ([i915#9519]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html #### Warnings #### * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [FAIL][383] ([i915#8247]) -> [DMESG-FAIL][384] ([i915#8561]) +2 other tests dmesg-fail [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-mtlp-7/igt@kms_async_flips@crc@pipe-b-edp-1.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-mtlp-8/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][385] ([i915#4816]) -> [SKIP][386] ([i915#4070] / [i915#4816]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13988/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8623]: https://gitlab.freedesktop.org/drm/int == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/index.html [-- Attachment #2: Type: text/html, Size: 124996 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for add create-big-vram subtest (rev3) 2023-12-06 17:01 [igt-dev] [PATCH v6 i-g-t 0/2] add create-big-vram subtest Marcin Bernatowicz ` (3 preceding siblings ...) 2023-12-06 19:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-06 19:55 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-06 19:55 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2480 bytes --] == Series Details == Series: add create-big-vram subtest (rev3) URL : https://patchwork.freedesktop.org/series/126831/ State : success == Summary == CI Bug Log - changes from XEIGT_7625_BAT -> XEIGTPW_10355_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10355_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp3: - bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7625/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10355/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp3.html * igt@xe_create@create-execqueues-noleak: - bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#524]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7625/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10355/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [FAIL][5] ([Intel XE#480]) -> [PASS][6] +2 other tests pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7625/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10355/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7625 -> IGTPW_10355 * Linux: xe-554-9d76164e08c68a3d5d081ff7b07c15a2cadf741a -> xe-555-42c08951a31c679822795d72ada017e004d89102 IGTPW_10355: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10355/index.html IGT_7625: f40c67d84e142095ac6215be154e1f3710f26cba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-554-9d76164e08c68a3d5d081ff7b07c15a2cadf741a: 9d76164e08c68a3d5d081ff7b07c15a2cadf741a xe-555-42c08951a31c679822795d72ada017e004d89102: 42c08951a31c679822795d72ada017e004d89102 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10355/index.html [-- Attachment #2: Type: text/html, Size: 3189 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-12-06 19:55 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-06 17:01 [igt-dev] [PATCH v6 i-g-t 0/2] add create-big-vram subtest Marcin Bernatowicz 2023-12-06 17:01 ` [igt-dev] [PATCH v6 i-g-t 1/2] lib/xe/xe_query: xe_visible_available_vram_size helper Marcin Bernatowicz 2023-12-06 17:51 ` Kamil Konieczny 2023-12-06 17:01 ` [igt-dev] [PATCH v6 i-g-t 2/2] tests/intel/xe_create: create-big-vram subtest Marcin Bernatowicz 2023-12-06 17:57 ` Kamil Konieczny 2023-12-06 18:03 ` [igt-dev] ✓ Fi.CI.BAT: success for add create-big-vram subtest (rev3) Patchwork 2023-12-06 19:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-06 19:55 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox