* [PATCH i-g-t 0/2] Fix perf_pmu@unload
@ 2024-10-23 5:05 Lucas De Marchi
2024-10-23 5:05 ` [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi
` (5 more replies)
0 siblings, 6 replies; 14+ messages in thread
From: Lucas De Marchi @ 2024-10-23 5:05 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi
This is now passing for me on DG2 since it now uses the unbind + unload
logic. Besides, this should not explode in the kernel anymore when used
together with the patch mentioned below.
I have other changes on top to make the unbind+unload logic for all i915
tests (just like it is for xe), but I don't want possible noises in the
tests, so I will leave these for later.
Test-with: 20241023042909.3038309-2-lucas.demarchi@intel.com
Lucas De Marchi (2):
lib/igt_kmod: Export igt_kmod_unbind()
tests/intel/perf_pmu: Migrate to unbind + unload
lib/igt_kmod.c | 6 +++---
lib/igt_kmod.h | 2 ++
tests/intel/perf_pmu.c | 22 ++++++++++++----------
3 files changed, 17 insertions(+), 13 deletions(-)
--
2.47.0
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() 2024-10-23 5:05 [PATCH i-g-t 0/2] Fix perf_pmu@unload Lucas De Marchi @ 2024-10-23 5:05 ` Lucas De Marchi 2024-10-30 0:08 ` Umesh Nerlige Ramappa 2024-11-04 19:24 ` Umesh Nerlige Ramappa 2024-10-23 5:05 ` [PATCH i-g-t 2/2] tests/intel/perf_pmu: Migrate to unbind + unload Lucas De Marchi ` (4 subsequent siblings) 5 siblings, 2 replies; 14+ messages in thread From: Lucas De Marchi @ 2024-10-23 5:05 UTC (permalink / raw) To: igt-dev; +Cc: Lucas De Marchi So it can be used directly by tests and other libs. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 6 +++--- lib/igt_kmod.h | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 75a0d057c..039309328 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -663,7 +663,7 @@ int __igt_intel_driver_unload(char **who, const char *driver) /* * Unbind driver from devices. Currently supports only PCI bus */ -static int unbind(const char *driver) +int igt_kmod_unbind(const char *mod_name) { char path[PATH_MAX]; struct dirent *de; @@ -671,7 +671,7 @@ static int unbind(const char *driver) DIR *dir; dirlen = snprintf(path, sizeof(path), "/sys/module/%s/drivers/pci:%s/", - driver, driver); + mod_name, mod_name); igt_assert(dirlen < sizeof(path)); dir = opendir(path); @@ -744,7 +744,7 @@ igt_intel_driver_unload(const char *driver) int igt_xe_driver_unload(void) { - unbind("xe"); + igt_kmod_unbind("xe"); igt_kmod_unload("xe"); if (igt_kmod_is_loaded("xe")) diff --git a/lib/igt_kmod.h b/lib/igt_kmod.h index ee1719a8f..193b95627 100644 --- a/lib/igt_kmod.h +++ b/lib/igt_kmod.h @@ -36,6 +36,8 @@ bool igt_kmod_has_param(const char *mod_name, const char *param); int igt_kmod_load(const char *mod_name, const char *opts); int igt_kmod_unload(const char *mod_name); +int igt_kmod_unbind(const char *mod_name); + int igt_audio_driver_unload(char **whom); int igt_intel_driver_load(const char *opts, const char *driver); -- 2.47.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() 2024-10-23 5:05 ` [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi @ 2024-10-30 0:08 ` Umesh Nerlige Ramappa 2024-10-30 14:11 ` Lucas De Marchi 2024-11-04 19:24 ` Umesh Nerlige Ramappa 1 sibling, 1 reply; 14+ messages in thread From: Umesh Nerlige Ramappa @ 2024-10-30 0:08 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev On Tue, Oct 22, 2024 at 10:05:01PM -0700, Lucas De Marchi wrote: >So it can be used directly by tests and other libs. > >Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >--- > lib/igt_kmod.c | 6 +++--- > lib/igt_kmod.h | 2 ++ > 2 files changed, 5 insertions(+), 3 deletions(-) > >diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >index 75a0d057c..039309328 100644 >--- a/lib/igt_kmod.c >+++ b/lib/igt_kmod.c >@@ -663,7 +663,7 @@ int __igt_intel_driver_unload(char **who, const char *driver) > /* > * Unbind driver from devices. Currently supports only PCI bus > */ >-static int unbind(const char *driver) >+int igt_kmod_unbind(const char *mod_name) > { > char path[PATH_MAX]; > struct dirent *de; >@@ -671,7 +671,7 @@ static int unbind(const char *driver) > DIR *dir; > > dirlen = snprintf(path, sizeof(path), "/sys/module/%s/drivers/pci:%s/", >- driver, driver); >+ mod_name, mod_name); > igt_assert(dirlen < sizeof(path)); > > dir = opendir(path); Maybe unrelated, but another issue I am seeing in this path is that power/control attribute is not present in some kernel configs. Can we add a check in igt_kmod_unbind that would check if the attribute exists and only then set it? If I do that, then unbind does go through and the test passes as expected (with this series). Thanks, Umesh >@@ -744,7 +744,7 @@ igt_intel_driver_unload(const char *driver) > > int igt_xe_driver_unload(void) > { >- unbind("xe"); >+ igt_kmod_unbind("xe"); > > igt_kmod_unload("xe"); > if (igt_kmod_is_loaded("xe")) >diff --git a/lib/igt_kmod.h b/lib/igt_kmod.h >index ee1719a8f..193b95627 100644 >--- a/lib/igt_kmod.h >+++ b/lib/igt_kmod.h >@@ -36,6 +36,8 @@ bool igt_kmod_has_param(const char *mod_name, const char *param); > int igt_kmod_load(const char *mod_name, const char *opts); > int igt_kmod_unload(const char *mod_name); > >+int igt_kmod_unbind(const char *mod_name); >+ > int igt_audio_driver_unload(char **whom); > > int igt_intel_driver_load(const char *opts, const char *driver); >-- >2.47.0 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() 2024-10-30 0:08 ` Umesh Nerlige Ramappa @ 2024-10-30 14:11 ` Lucas De Marchi 0 siblings, 0 replies; 14+ messages in thread From: Lucas De Marchi @ 2024-10-30 14:11 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: igt-dev On Tue, Oct 29, 2024 at 05:08:07PM -0700, Umesh Nerlige Ramappa wrote: >On Tue, Oct 22, 2024 at 10:05:01PM -0700, Lucas De Marchi wrote: >>So it can be used directly by tests and other libs. >> >>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >>--- >>lib/igt_kmod.c | 6 +++--- >>lib/igt_kmod.h | 2 ++ >>2 files changed, 5 insertions(+), 3 deletions(-) >> >>diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >>index 75a0d057c..039309328 100644 >>--- a/lib/igt_kmod.c >>+++ b/lib/igt_kmod.c >>@@ -663,7 +663,7 @@ int __igt_intel_driver_unload(char **who, const char *driver) >>/* >> * Unbind driver from devices. Currently supports only PCI bus >> */ >>-static int unbind(const char *driver) >>+int igt_kmod_unbind(const char *mod_name) >>{ >> char path[PATH_MAX]; >> struct dirent *de; >>@@ -671,7 +671,7 @@ static int unbind(const char *driver) >> DIR *dir; >> >> dirlen = snprintf(path, sizeof(path), "/sys/module/%s/drivers/pci:%s/", >>- driver, driver); >>+ mod_name, mod_name); >> igt_assert(dirlen < sizeof(path)); >> >> dir = opendir(path); > >Maybe unrelated, but another issue I am seeing in this path is that >power/control attribute is not present in some kernel configs. Can we humn... I think that would only happen with !CONFIG_PM - is this really your case? Also, do we actually have this running anywhere in CI? I'd expect a bunch of other tests failing in this case. Maybe we can just remove writing to this file since we are writing "auto" (the default) and I don't expect anyone to be writing "on" for our gpu. Even if it was "on", unbinding the driver would still work AFAIR but the device would be left in D0. Lucas De Marchi >add a check in igt_kmod_unbind that would check if the attribute >exists and only then set it? If I do that, then unbind does go through >and the test passes as expected (with this series). > >Thanks, >Umesh >>@@ -744,7 +744,7 @@ igt_intel_driver_unload(const char *driver) >> >>int igt_xe_driver_unload(void) >>{ >>- unbind("xe"); >>+ igt_kmod_unbind("xe"); >> >> igt_kmod_unload("xe"); >> if (igt_kmod_is_loaded("xe")) >>diff --git a/lib/igt_kmod.h b/lib/igt_kmod.h >>index ee1719a8f..193b95627 100644 >>--- a/lib/igt_kmod.h >>+++ b/lib/igt_kmod.h >>@@ -36,6 +36,8 @@ bool igt_kmod_has_param(const char *mod_name, const char *param); >>int igt_kmod_load(const char *mod_name, const char *opts); >>int igt_kmod_unload(const char *mod_name); >> >>+int igt_kmod_unbind(const char *mod_name); >>+ >>int igt_audio_driver_unload(char **whom); >> >>int igt_intel_driver_load(const char *opts, const char *driver); >>-- >>2.47.0 >> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() 2024-10-23 5:05 ` [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi 2024-10-30 0:08 ` Umesh Nerlige Ramappa @ 2024-11-04 19:24 ` Umesh Nerlige Ramappa 2024-11-04 20:51 ` Lucas De Marchi 1 sibling, 1 reply; 14+ messages in thread From: Umesh Nerlige Ramappa @ 2024-11-04 19:24 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev On Tue, Oct 22, 2024 at 10:05:01PM -0700, Lucas De Marchi wrote: >So it can be used directly by tests and other libs. > >Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Tried it with Peter's patches and seems to work fine. Ran into the CONFIG_PM case, but you have addressed that in another patch, so this is Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Thanks, Umesh >--- > lib/igt_kmod.c | 6 +++--- > lib/igt_kmod.h | 2 ++ > 2 files changed, 5 insertions(+), 3 deletions(-) > >diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >index 75a0d057c..039309328 100644 >--- a/lib/igt_kmod.c >+++ b/lib/igt_kmod.c >@@ -663,7 +663,7 @@ int __igt_intel_driver_unload(char **who, const char *driver) > /* > * Unbind driver from devices. Currently supports only PCI bus > */ >-static int unbind(const char *driver) >+int igt_kmod_unbind(const char *mod_name) > { > char path[PATH_MAX]; > struct dirent *de; >@@ -671,7 +671,7 @@ static int unbind(const char *driver) > DIR *dir; > > dirlen = snprintf(path, sizeof(path), "/sys/module/%s/drivers/pci:%s/", >- driver, driver); >+ mod_name, mod_name); > igt_assert(dirlen < sizeof(path)); > > dir = opendir(path); >@@ -744,7 +744,7 @@ igt_intel_driver_unload(const char *driver) > > int igt_xe_driver_unload(void) > { >- unbind("xe"); >+ igt_kmod_unbind("xe"); > > igt_kmod_unload("xe"); > if (igt_kmod_is_loaded("xe")) >diff --git a/lib/igt_kmod.h b/lib/igt_kmod.h >index ee1719a8f..193b95627 100644 >--- a/lib/igt_kmod.h >+++ b/lib/igt_kmod.h >@@ -36,6 +36,8 @@ bool igt_kmod_has_param(const char *mod_name, const char *param); > int igt_kmod_load(const char *mod_name, const char *opts); > int igt_kmod_unload(const char *mod_name); > >+int igt_kmod_unbind(const char *mod_name); >+ > int igt_audio_driver_unload(char **whom); > > int igt_intel_driver_load(const char *opts, const char *driver); >-- >2.47.0 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() 2024-11-04 19:24 ` Umesh Nerlige Ramappa @ 2024-11-04 20:51 ` Lucas De Marchi 0 siblings, 0 replies; 14+ messages in thread From: Lucas De Marchi @ 2024-11-04 20:51 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: igt-dev On Mon, Nov 04, 2024 at 11:24:43AM -0800, Umesh Nerlige Ramappa wrote: >On Tue, Oct 22, 2024 at 10:05:01PM -0700, Lucas De Marchi wrote: >>So it can be used directly by tests and other libs. >> >>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > >Tried it with Peter's patches and seems to work fine. Ran into the >CONFIG_PM case, but you have addressed that in another patch, so this >is > >Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> applied this first patch. Second patch will have to wait. Lucas De Marchi ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/perf_pmu: Migrate to unbind + unload 2024-10-23 5:05 [PATCH i-g-t 0/2] Fix perf_pmu@unload Lucas De Marchi 2024-10-23 5:05 ` [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi @ 2024-10-23 5:05 ` Lucas De Marchi 2024-11-04 19:25 ` Umesh Nerlige Ramappa 2024-10-23 6:16 ` ✓ Fi.CI.BAT: success for Fix perf_pmu@unload Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 14+ messages in thread From: Lucas De Marchi @ 2024-10-23 5:05 UTC (permalink / raw) To: igt-dev; +Cc: Lucas De Marchi There isn't much point in testing we can't remove the module directly after removing *some* known dependencies. The point in this test is to make sure that if the HW vanishes, driver still behaves. That is currently not true, as it will cause perf to explode. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- tests/intel/perf_pmu.c | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c index bfa2d501a..6eb4f09d1 100644 --- a/tests/intel/perf_pmu.c +++ b/tests/intel/perf_pmu.c @@ -2282,7 +2282,6 @@ static void test_unload(unsigned int num_engines) int fd[4 + num_engines * 3], i; uint64_t *buf; int count = 0, ret; - char *who = NULL; int i915; i915 = __drm_open_driver(DRIVER_INTEL); @@ -2337,23 +2336,26 @@ static void test_unload(unsigned int num_engines) igt_debug("Read %d events from perf and trial unload\n", count); pmu_read_multi(fd[0], count, buf); - ret = __igt_i915_driver_unload(&who); - igt_debug("__igt_i915_driver_unload: ret %d who %s\n", ret, who); - igt_assert(ret != 0 && !strcmp(who, "i915")); - free(who); - pmu_read_multi(fd[0], count, buf); - igt_debug("Close perf\n"); + /* + * We can't unload the module with perf event registered, but + * we can make the HW go away by unbinding it from the driver. + */ + ret = igt_kmod_unbind("i915"); + igt_assert_eq(ret, 0); + igt_debug("Close perf\n"); for (i = 0; i < count; i++) close(fd[i]); + igt_debug("Final unload\n"); + /* After perf is closed, we should be able to remove the module */ + ret = igt_i915_driver_unload(); + igt_assert_eq(ret, 0); + free(buf); } igt_waitchildren(); - - igt_debug("Final unload\n"); - igt_assert_eq(__igt_i915_driver_unload(NULL), 0); } static void pmu_read(int i915) -- 2.47.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/perf_pmu: Migrate to unbind + unload 2024-10-23 5:05 ` [PATCH i-g-t 2/2] tests/intel/perf_pmu: Migrate to unbind + unload Lucas De Marchi @ 2024-11-04 19:25 ` Umesh Nerlige Ramappa 2024-11-04 20:49 ` Lucas De Marchi 0 siblings, 1 reply; 14+ messages in thread From: Umesh Nerlige Ramappa @ 2024-11-04 19:25 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev On Tue, Oct 22, 2024 at 10:05:02PM -0700, Lucas De Marchi wrote: >There isn't much point in testing we can't remove the module directly >after removing *some* known dependencies. The point in this test is to >make sure that if the HW vanishes, driver still behaves. That is >currently not true, as it will cause perf to explode. > >Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> LGTM, Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Thanks, Umesh >--- > tests/intel/perf_pmu.c | 22 ++++++++++++---------- > 1 file changed, 12 insertions(+), 10 deletions(-) > >diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c >index bfa2d501a..6eb4f09d1 100644 >--- a/tests/intel/perf_pmu.c >+++ b/tests/intel/perf_pmu.c >@@ -2282,7 +2282,6 @@ static void test_unload(unsigned int num_engines) > int fd[4 + num_engines * 3], i; > uint64_t *buf; > int count = 0, ret; >- char *who = NULL; > int i915; > > i915 = __drm_open_driver(DRIVER_INTEL); >@@ -2337,23 +2336,26 @@ static void test_unload(unsigned int num_engines) > > igt_debug("Read %d events from perf and trial unload\n", count); > pmu_read_multi(fd[0], count, buf); >- ret = __igt_i915_driver_unload(&who); >- igt_debug("__igt_i915_driver_unload: ret %d who %s\n", ret, who); >- igt_assert(ret != 0 && !strcmp(who, "i915")); >- free(who); >- pmu_read_multi(fd[0], count, buf); > >- igt_debug("Close perf\n"); >+ /* >+ * We can't unload the module with perf event registered, but >+ * we can make the HW go away by unbinding it from the driver. >+ */ >+ ret = igt_kmod_unbind("i915"); >+ igt_assert_eq(ret, 0); > >+ igt_debug("Close perf\n"); > for (i = 0; i < count; i++) > close(fd[i]); > >+ igt_debug("Final unload\n"); >+ /* After perf is closed, we should be able to remove the module */ >+ ret = igt_i915_driver_unload(); >+ igt_assert_eq(ret, 0); >+ > free(buf); > } > igt_waitchildren(); >- >- igt_debug("Final unload\n"); >- igt_assert_eq(__igt_i915_driver_unload(NULL), 0); > } > > static void pmu_read(int i915) >-- >2.47.0 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/perf_pmu: Migrate to unbind + unload 2024-11-04 19:25 ` Umesh Nerlige Ramappa @ 2024-11-04 20:49 ` Lucas De Marchi 2024-11-04 22:03 ` Umesh Nerlige Ramappa 0 siblings, 1 reply; 14+ messages in thread From: Lucas De Marchi @ 2024-11-04 20:49 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: igt-dev On Mon, Nov 04, 2024 at 11:25:06AM -0800, Umesh Nerlige Ramappa wrote: >On Tue, Oct 22, 2024 at 10:05:02PM -0700, Lucas De Marchi wrote: >>There isn't much point in testing we can't remove the module directly >>after removing *some* known dependencies. The point in this test is to >>make sure that if the HW vanishes, driver still behaves. That is >>currently not true, as it will cause perf to explode. >> >>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > >LGTM, > >Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> I'm actually thinking about splitting this patch. See below. > >Thanks, >Umesh >>--- >>tests/intel/perf_pmu.c | 22 ++++++++++++---------- >>1 file changed, 12 insertions(+), 10 deletions(-) >> >>diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c >>index bfa2d501a..6eb4f09d1 100644 >>--- a/tests/intel/perf_pmu.c >>+++ b/tests/intel/perf_pmu.c >>@@ -2282,7 +2282,6 @@ static void test_unload(unsigned int num_engines) >> int fd[4 + num_engines * 3], i; >> uint64_t *buf; >> int count = 0, ret; >>- char *who = NULL; >> int i915; >> >> i915 = __drm_open_driver(DRIVER_INTEL); >>@@ -2337,23 +2336,26 @@ static void test_unload(unsigned int num_engines) >> >> igt_debug("Read %d events from perf and trial unload\n", count); >> pmu_read_multi(fd[0], count, buf); >>- ret = __igt_i915_driver_unload(&who); I think I will drop this part first, so I can remove the __igt_i915_driver_unload() and finish migrating i915 to unbind + unload. Then when the kernel is fixed (which will probably happen on 6.13 or 6.14) we can think about adding back the additions below for unbind while perf is open. Thoughts? Lucas De Marchi ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/perf_pmu: Migrate to unbind + unload 2024-11-04 20:49 ` Lucas De Marchi @ 2024-11-04 22:03 ` Umesh Nerlige Ramappa 0 siblings, 0 replies; 14+ messages in thread From: Umesh Nerlige Ramappa @ 2024-11-04 22:03 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev On Mon, Nov 04, 2024 at 02:49:42PM -0600, Lucas De Marchi wrote: >On Mon, Nov 04, 2024 at 11:25:06AM -0800, Umesh Nerlige Ramappa wrote: >>On Tue, Oct 22, 2024 at 10:05:02PM -0700, Lucas De Marchi wrote: >>>There isn't much point in testing we can't remove the module directly >>>after removing *some* known dependencies. The point in this test is to >>>make sure that if the HW vanishes, driver still behaves. That is >>>currently not true, as it will cause perf to explode. >>> >>>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >> >>LGTM, >> >>Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> > >I'm actually thinking about splitting this patch. See below. > >> >>Thanks, >>Umesh >>>--- >>>tests/intel/perf_pmu.c | 22 ++++++++++++---------- >>>1 file changed, 12 insertions(+), 10 deletions(-) >>> >>>diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c >>>index bfa2d501a..6eb4f09d1 100644 >>>--- a/tests/intel/perf_pmu.c >>>+++ b/tests/intel/perf_pmu.c >>>@@ -2282,7 +2282,6 @@ static void test_unload(unsigned int num_engines) >>> int fd[4 + num_engines * 3], i; >>> uint64_t *buf; >>> int count = 0, ret; >>>- char *who = NULL; >>> int i915; >>> >>> i915 = __drm_open_driver(DRIVER_INTEL); >>>@@ -2337,23 +2336,26 @@ static void test_unload(unsigned int num_engines) >>> >>> igt_debug("Read %d events from perf and trial unload\n", count); >>> pmu_read_multi(fd[0], count, buf); >>>- ret = __igt_i915_driver_unload(&who); > >I think I will drop this part first, so I can remove the >__igt_i915_driver_unload() and finish migrating i915 to unbind + unload. > >Then when the kernel is fixed (which will probably happen on 6.13 or >6.14) we can think about adding back the additions below for unbind >while perf is open. Thoughts? Agree. I just assumed that you will merge this series only after the kernel changes land, but I am okay with the above. Thanks, Umesh > >Lucas De Marchi ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Fi.CI.BAT: success for Fix perf_pmu@unload 2024-10-23 5:05 [PATCH i-g-t 0/2] Fix perf_pmu@unload Lucas De Marchi 2024-10-23 5:05 ` [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi 2024-10-23 5:05 ` [PATCH i-g-t 2/2] tests/intel/perf_pmu: Migrate to unbind + unload Lucas De Marchi @ 2024-10-23 6:16 ` Patchwork 2024-10-23 6:17 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-10-23 6:16 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3802 bytes --] == Series Details == Series: Fix perf_pmu@unload URL : https://patchwork.freedesktop.org/series/140355/ State : success == Summary == CI Bug Log - changes from IGT_8082 -> IGTPW_11963 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11963 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-dg2-11: [PASS][1] -> [ABORT][2] ([i915#12133]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-11/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/bat-dg2-11/igt@i915_selftest@live.html * igt@i915_selftest@live@active: - bat-dg2-11: [PASS][3] -> [ABORT][4] ([i915#12305]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-11/igt@i915_selftest@live@active.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/bat-dg2-11/igt@i915_selftest@live@active.html #### Possible fixes #### * igt@i915_selftest@live: - bat-twl-1: [INCOMPLETE][5] ([i915#12133] / [i915#9413]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/bat-twl-1/igt@i915_selftest@live.html - bat-dg2-9: [ABORT][7] ([i915#12133]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/bat-dg2-9/igt@i915_selftest@live.html * igt@i915_selftest@live@client: - bat-dg2-9: [ABORT][9] ([i915#12305]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live@client.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/bat-dg2-9/igt@i915_selftest@live@client.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: [INCOMPLETE][11] ([i915#9413]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live@gt_lrc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/bat-twl-1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][13] ([i915#11621]) -> [PASS][14] +132 other tests pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8082 -> IGTPW_11963 * Linux: CI_DRM_15576 -> CI_DRM_15581 CI-20190529: 20190529 CI_DRM_15576: d5bac12430b0d4a980c0498b3c946772950e70ee @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15581: 8a7ac0227c7c3fe2fcb01a933df5b9c49c7f2832 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11963: 10df38b2c4c8b8abc03fd5c082afa9a6517df278 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/index.html [-- Attachment #2: Type: text/html, Size: 4859 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.xeBAT: success for Fix perf_pmu@unload 2024-10-23 5:05 [PATCH i-g-t 0/2] Fix perf_pmu@unload Lucas De Marchi ` (2 preceding siblings ...) 2024-10-23 6:16 ` ✓ Fi.CI.BAT: success for Fix perf_pmu@unload Patchwork @ 2024-10-23 6:17 ` Patchwork 2024-10-23 9:10 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-23 10:09 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-10-23 6:17 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3207 bytes --] == Series Details == Series: Fix perf_pmu@unload URL : https://patchwork.freedesktop.org/series/140355/ State : success == Summary == CI Bug Log - changes from XEIGT_8082_BAT -> XEIGTPW_11963_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11963_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#2871]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-adlp-7: [PASS][3] -> [DMESG-FAIL][4] ([Intel XE#2871]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-dg2-oem2: [PASS][5] -> [INCOMPLETE][6] ([Intel XE#2874]) +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html #### Possible fixes #### * igt@kms_addfb_basic@bad-pitch-0: - bat-adlp-7: [DMESG-WARN][7] ([Intel XE#2496]) -> [PASS][8] +31 other tests pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-bmg-2: [INCOMPLETE][9] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#2496]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2496 [Intel XE#2871]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2871 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 Build changes ------------- * IGT: IGT_8082 -> IGTPW_11963 IGTPW_11963: 10df38b2c4c8b8abc03fd5c082afa9a6517df278 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/index.html [-- Attachment #2: Type: text/html, Size: 4027 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.IGT: failure for Fix perf_pmu@unload 2024-10-23 5:05 [PATCH i-g-t 0/2] Fix perf_pmu@unload Lucas De Marchi ` (3 preceding siblings ...) 2024-10-23 6:17 ` ✓ CI.xeBAT: " Patchwork @ 2024-10-23 9:10 ` Patchwork 2024-10-23 10:09 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-10-23 9:10 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100239 bytes --] == Series Details == Series: Fix perf_pmu@unload URL : https://patchwork.freedesktop.org/series/140355/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15581_full -> IGTPW_11963_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11963_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11963_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_11963/index.html Participating hosts (9 -> 8) ------------------------------ Additional (1): shard-tglu-1 Missing (2): pig-kbl-iris shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11963_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_whisper@basic-contexts-all: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@gem_exec_whisper@basic-contexts-all.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-6/igt@gem_exec_whisper@basic-contexts-all.html New tests --------- New tests have been introduced between CI_DRM_15581_full and IGTPW_11963_full: ### New IGT tests (2) ### * igt@kms_vblank@ts-continuation-modeset@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.34] s * igt@kms_vblank@ts-continuation-modeset@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.24] s Known issues ------------ Here are the changes found in IGTPW_11963_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][3] ([i915#9318]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-14/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-4/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +7 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@drm_fdinfo@busy-idle@bcs0.html - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +7 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-2/igt@drm_fdinfo@busy-idle@bcs0.html * igt@fbdev@read: - shard-dg2: [PASS][9] -> [SKIP][10] ([i915#2582]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@fbdev@read.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@fbdev@read.html * igt@gem_busy@close-race: - shard-dg2: NOTRUN -> [FAIL][11] ([i915#12297]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@gem_busy@close-race.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8562]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#8562]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_engines@invalid-engines: - shard-tglu: [PASS][19] -> [FAIL][20] ([i915#12031]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-7/igt@gem_ctx_engines@invalid-engines.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-8/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@hang: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-14/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@hostile: - shard-tglu: [PASS][22] -> [FAIL][23] ([i915#11980]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-9/igt@gem_ctx_persistence@hostile.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-3/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-14/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-4/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][27] -> [FAIL][28] ([i915#5784]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@gem_eio@reset-stress.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-throttle: - shard-tglu-1: NOTRUN -> [FAIL][33] ([i915#2842]) +3 other tests fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-16/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#5107]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +6 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@gem_exec_reloc@basic-wc-read-active.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-7/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@gem_exec_reloc@basic-write-wc-noreloc.html - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-3/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-8/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-6/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#284]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-7/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#284]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-2/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-wc: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +11 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@gem_mmap_gtt@basic-wc.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +12 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@gem_mmap_gtt@medium-copy-xy.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-7/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-1/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3282]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads-display.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3282]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pwrite@basic-self: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@gem_pwrite@basic-self.html * igt@gem_pxp@display-protected-crc: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-7/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#4270]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-2/igt@gem_render_copy@y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4079]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-4/igt@gem_set_tiling_vs_gtt.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-9/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4880]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-4/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#2856]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@gen9_exec_parse@bb-start-param.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#2527]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-16/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-7/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][82] -> [ABORT][83] ([i915#9820]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [PASS][84] -> [ABORT][85] ([i915#9820]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][86] ([i915#2681]) +1 other test warn [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#11681]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#11681]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4387]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#6245]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4212]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-17/igt@kms_addfb_basic@clobberred-modifier.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4212]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-1/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4212]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#12454]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#12454]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#9531]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#9531]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#9531]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#1769] / [i915#3555]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][100] -> [FAIL][101] ([i915#11808]) +3 other tests fail [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][102] +11 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538] / [i915#5286]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-16/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#5286]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#5286]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#5286]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#5286]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3638]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][109] +14 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3638]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#5190] / [i915#9197]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6187]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5190]) +9 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-18/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-snb: NOTRUN -> [SKIP][116] +50 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-snb7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#6095]) +129 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#10434] / [i915#6095]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#12313]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#6095]) +64 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#6095]) +29 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#12313]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#12313]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#6095]) +168 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6095]) +24 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-6/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6095]) +34 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#11616] / [i915#7213]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_cdclk@mode-transition.html - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#3742]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7213]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#7828]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-7/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#7828]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#7828]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#7828]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-tglu: NOTRUN -> [SKIP][134] ([i915#7828]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#7828]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#9424]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6944] / [i915#9424]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_content_protection@lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][139] ([i915#9424]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-16/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#9197]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#6944] / [i915#7116] / [i915#7118]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#8814]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#8814]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#11453] / [i915#3359]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][145] ([i915#11453] / [i915#3359]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][146] ([i915#11453] / [i915#3359]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#3555]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#3555]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][149] +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#9809]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4103] / [i915#4213]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu: NOTRUN -> [SKIP][152] ([i915#4103]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#4213]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#8588]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3555]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-16/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#12402]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3840]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-14/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#1839]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_feature_discovery@display-3x.html - shard-rkl: NOTRUN -> [SKIP][161] ([i915#1839]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-5/igt@kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#1839]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-15/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#1839]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-10/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#9337]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#658]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][166] ([i915#658]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3637]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3637]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#8381]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8381]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#9934]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-15/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#5354]) +39 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#3637]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1: - shard-snb: [PASS][174] -> [FAIL][175] ([i915#2122]) +5 other tests fail [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg1: [PASS][176] -> [DMESG-WARN][177] ([i915#4423]) +1 other test dmesg-warn [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-18/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-dg2: [PASS][178] -> [FAIL][179] ([i915#2122]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1: - shard-rkl: [PASS][180] -> [FAIL][181] ([i915#2122]) +3 other tests fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][182] ([i915#2122]) +3 other tests fail [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-7/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][183] ([i915#11961]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#2672] / [i915#3555]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#2672] / [i915#3555] / [i915#8813]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#2672] / [i915#8813]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#2672]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672] / [i915#3555]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-dg2: [PASS][196] -> [SKIP][197] ([i915#3555]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#2672]) +7 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [PASS][201] -> [SKIP][202] ([i915#5354]) +7 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8708]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][204] +38 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1825]) +7 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#5439]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#8708]) +14 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3023]) +5 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#1825]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3458]) +16 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8708]) +16 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3458]) +11 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][213] +62 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][214] -> [SKIP][215] ([i915#433]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-4/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [PASS][218] -> [SKIP][219] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#12339]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_joiner@basic-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#12339]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][222] ([i915#12339]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#12388]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][224] ([i915#12388]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#12394]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-tglu: NOTRUN -> [SKIP][226] +39 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-2/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane@planar-pixel-format-settings: - shard-dg2: [PASS][227] -> [SKIP][228] ([i915#9581]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_plane@planar-pixel-format-settings.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#5354] / [i915#9423]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][230] -> [FAIL][231] ([i915#8292]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][232] ([i915#8292]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#12247] / [i915#9423]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - shard-dg2: [PASS][234] -> [SKIP][235] ([i915#12247] / [i915#8152] / [i915#9423]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d: - shard-dg2: [PASS][236] -> [SKIP][237] ([i915#12247] / [i915#8152]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#12247]) +12 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - shard-dg2: [PASS][239] -> [SKIP][240] ([i915#8152] / [i915#9423]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#12247] / [i915#8152] / [i915#9423]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#12247] / [i915#8152]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#12247] / [i915#6953]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#12247] / [i915#6953]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#12247]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8152] / [i915#9423]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#12247]) +13 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20: - shard-dg2: [PASS][248] -> [SKIP][249] ([i915#6953] / [i915#8152] / [i915#9423]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#12247] / [i915#3555] / [i915#9423]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#12247] / [i915#3555]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20@pipe-d: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#8152]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-dg2: [PASS][254] -> [SKIP][255] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-dg2: [PASS][256] -> [SKIP][257] ([i915#12247]) +11 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#5354]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-17/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#9812]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#9685]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][261] -> [FAIL][262] ([i915#9295]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#9340]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#3828]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#9340]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: [PASS][266] -> [SKIP][267] ([i915#1849]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_pm_rpm@cursor-dpms.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#9519]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#9519]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#12316]) +4 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#11520]) +8 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][272] ([i915#11520]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#9808]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#11520]) +7 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-16/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-tglu: NOTRUN -> [SKIP][275] ([i915#11520]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-9/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][276] ([i915#11520]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-snb7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#11520]) +5 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#9688]) +13 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-6/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr-basic: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#1072] / [i915#9732]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-3/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#9732]) +24 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-basic: - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#9732]) +15 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +15 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#9732]) +6 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-8/igt@kms_psr@pr-dpms.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#5289]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#11131] / [i915#4235] / [i915#5190]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#5289]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#11131] / [i915#4235]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#8623]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-dg2: [PASS][289] -> [SKIP][290] ([i915#9197]) +31 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_vblank@ts-continuation-dpms-suspend.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vrr@flip-basic: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#3555]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-3/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9906]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#11920]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#9906]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu: NOTRUN -> [SKIP][295] ([i915#9906]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#8808] / [i915#9906]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#2437]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#2437]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-7/igt@kms_writeback@writeback-fb-id.html * igt@perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#2434]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-12/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#2433]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][301] -> [FAIL][302] ([i915#4349]) +4 other tests fail [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-rkl: [PASS][303] -> [ABORT][304] ([i915#9853]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-4/igt@perf_pmu@module-unload.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-5/igt@perf_pmu@module-unload.html - shard-snb: [PASS][305] -> [INCOMPLETE][306] ([i915#9853]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb7/igt@perf_pmu@module-unload.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-snb4/igt@perf_pmu@module-unload.html - shard-tglu: NOTRUN -> [ABORT][307] ([i915#9853]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-8/igt@perf_pmu@module-unload.html - shard-mtlp: [PASS][308] -> [ABORT][309] ([i915#9853]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-5/igt@perf_pmu@module-unload.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-5/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#8516]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3708] / [i915#4077]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-4/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][312] ([i915#3708] / [i915#4077]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#3708] / [i915#4077]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#3291] / [i915#3708]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][315] ([i915#3291] / [i915#3708]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#3708]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#3708]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-15/igt@prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#3708]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-6/igt@prime_vgem@fence-flip-hang.html #### Possible fixes #### * igt@fbdev@pan: - shard-dg2: [SKIP][319] ([i915#2582]) -> [PASS][320] +1 other test pass [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@fbdev@pan.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@fbdev@pan.html * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: [FAIL][321] ([i915#12031]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][323] ([i915#5784]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-18/igt@gem_eio@reset-stress.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][325] ([i915#2842]) -> [PASS][326] +3 other tests pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][327] ([i915#2876]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][329] ([i915#9697] / [i915#9820]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-snb: [INCOMPLETE][331] -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-snb4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_freq_api@freq-suspend: - shard-dg1: [INCOMPLETE][333] -> [PASS][334] +1 other test pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@i915_pm_freq_api@freq-suspend.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-19/igt@i915_pm_freq_api@freq-suspend.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][335] ([i915#11808]) -> [PASS][336] +1 other test pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][337] ([i915#3555]) -> [PASS][338] +2 other tests pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_color@deep-color.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_color@deep-color.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [SKIP][339] ([i915#1849]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-rmfb-interruptible: - shard-mtlp: [INCOMPLETE][341] ([i915#6113]) -> [PASS][342] +1 other test pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@flip-vs-rmfb-interruptible.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-1/igt@kms_flip@flip-vs-rmfb-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg1: [DMESG-WARN][343] ([i915#4423]) -> [PASS][344] +2 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-14/igt@kms_flip@flip-vs-suspend.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-13/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-fb-recreate: - shard-rkl: [FAIL][345] ([i915#2122]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-1/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-mtlp: [FAIL][347] ([i915#2122]) -> [PASS][348] +3 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate@a-vga1: - shard-snb: [FAIL][349] ([i915#2122]) -> [PASS][350] +9 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-snb1/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][351] ([i915#11989] / [i915#2122]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check-interruptible.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1: - shard-tglu: [FAIL][353] ([i915#2122]) -> [PASS][354] +3 other tests pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-8/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-dg2: [SKIP][355] ([i915#5354]) -> [PASS][356] +13 other tests pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: [FAIL][357] ([i915#6880]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-snb: [SKIP][359] -> [PASS][360] +4 other tests pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_hdr@static-swap: - shard-dg2: [SKIP][361] ([i915#3555] / [i915#8228]) -> [PASS][362] +1 other test pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_hdr@static-swap.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_hdr@static-swap.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2: [SKIP][363] ([i915#8825]) -> [PASS][364] +1 other test pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane@pixel-format-source-clamping.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2: [SKIP][365] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d: - shard-dg2: [SKIP][367] ([i915#12247] / [i915#8152]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [SKIP][369] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-dg2: [SKIP][371] ([i915#8152] / [i915#9423]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - shard-dg2: [SKIP][373] ([i915#12247]) -> [PASS][374] +14 other tests pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2: [SKIP][375] ([i915#8152]) -> [PASS][376] +2 other tests pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-dg2: [SKIP][377] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][379] ([i915#9519]) -> [PASS][380] +2 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_pm_rpm@dpms-lpsp.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: [SKIP][381] ([i915#9519]) -> [PASS][382] +3 other tests pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][383] ([i915#5465]) -> [PASS][384] +2 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-6/igt@kms_setmode@basic.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-tglu-8/igt@kms_setmode@basic.html * igt@kms_universal_plane@universal-plane-pageflip-windowed: - shard-dg2: [SKIP][385] ([i915#9197]) -> [PASS][386] +36 other tests pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_universal_plane@universal-plane-pageflip-windowed.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_universal_plane@universal-plane-pageflip-windowed.html * igt@perf@blocking: - shard-dg2: [FAIL][387] ([i915#10538]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@perf@blocking.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@perf@blocking.html * igt@perf_pmu@busy-double-start: - shard-mtlp: [FAIL][389] ([i915#4349]) -> [PASS][390] +2 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-5/igt@perf_pmu@busy-double-start.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-2/igt@perf_pmu@busy-double-start.html #### Warnings #### * igt@gem_exec_fair@basic-pace: - shard-rkl: [FAIL][391] ([i915#12467] / [i915#2842]) -> [FAIL][392] ([i915#2842]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@gem_exec_fair@basic-pace.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-rkl-7/igt@gem_exec_fair@basic-pace.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][393] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][394] ([i915#10131] / [i915#9820]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2: [FAIL][395] ([i915#5956]) -> [SKIP][396] ([i915#9197]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][397] ([i915#9197]) -> [SKIP][398] +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2: [SKIP][399] -> [SKIP][400] ([i915#9197]) +1 other test skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_big_fb@linear-32bpp-rotate-270.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: [SKIP][401] ([i915#4538] / [i915#5190]) -> [SKIP][402] ([i915#5190] / [i915#9197]) +4 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][403] ([i915#5190] / [i915#9197]) -> [SKIP][404] ([i915#4538] / [i915#5190]) +9 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: [SKIP][405] ([i915#5190]) -> [SKIP][406] ([i915#5190] / [i915#9197]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_big_fb@yf-tiled-addfb.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: [SKIP][407] ([i915#9197]) -> [SKIP][408] ([i915#12313]) +3 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][409] ([i915#9197]) -> [SKIP][410] ([i915#10307] / [i915#6095]) +4 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-5/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg2: [SKIP][411] ([i915#10307] / [i915#6095]) -> [SKIP][412] ([i915#9197]) +8 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: [SKIP][413] ([i915#3299]) -> [SKIP][414] ([i915#9197]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [SKIP][415] ([i915#9424]) -> [SKIP][416] ([i915#9197]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_content_protection@lic-type-0.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-snb: [SKIP][417] -> [INCOMPLETE][418] ([i915#8816]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb4/igt@kms_content_protection@lic-type-1.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-snb4/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][419] ([i915#9433]) -> [SKIP][420] ([i915#9424]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-17/igt@kms_content_protection@mei-interface.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg1-18/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-dg2: [SKIP][421] ([i915#9197]) -> [SKIP][422] ([i915#7118] / [i915#9424]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_content_protection@uevent.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: [SKIP][423] ([i915#11453] / [i915#3359]) -> [SKIP][424] ([i915#9197]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: [SKIP][425] ([i915#3555]) -> [SKIP][426] ([i915#9197]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-4/igt@kms_cursor_crc@cursor-sliding-32x10.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-dg2: [SKIP][427] ([i915#9197]) -> [SKIP][428] ([i915#5354]) +3 other tests skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg2: [SKIP][429] ([i915#5354]) -> [SKIP][430] ([i915#9197]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: [SKIP][431] ([i915#9833]) -> [SKIP][432] ([i915#9197]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: [SKIP][433] ([i915#8812]) -> [SKIP][434] ([i915#9197]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-gtt.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: [SKIP][435] ([i915#9197]) -> [SKIP][436] ([i915#8812]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: [SKIP][437] ([i915#9197]) -> [SKIP][438] ([i915#3555] / [i915#3840]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2: [SKIP][439] ([i915#2672] / [i915#3555]) -> [SKIP][440] ([i915#3555]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: [SKIP][441] ([i915#3555]) -> [SKIP][442] ([i915#2672] / [i915#3555]) +3 other tests skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: [SKIP][443] ([i915#3555] / [i915#5190]) -> [SKIP][444] ([i915#2672] / [i915#3555] / [i915#5190]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: [SKIP][445] ([i915#5354]) -> [SKIP][446] ([i915#8708]) +6 other tests skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-dg2: [SKIP][447] ([i915#8708]) -> [SKIP][448] ([i915#5354]) +9 other tests skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-dg2: [SKIP][449] ([i915#5354]) -> [SKIP][450] ([i915#3458]) +10 other tests skip [449]: https://intel-gfx-ci. == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11963/index.html [-- Attachment #2: Type: text/html, Size: 108680 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.xeFULL: failure for Fix perf_pmu@unload 2024-10-23 5:05 [PATCH i-g-t 0/2] Fix perf_pmu@unload Lucas De Marchi ` (4 preceding siblings ...) 2024-10-23 9:10 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-10-23 10:09 ` Patchwork 5 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-10-23 10:09 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 88165 bytes --] == Series Details == Series: Fix perf_pmu@unload URL : https://patchwork.freedesktop.org/series/140355/ State : failure == Summary == CI Bug Log - changes from XEIGT_8082_full -> XEIGTPW_11963_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11963_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11963_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11963_full: ### IGT changes ### #### Possible regressions #### * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-lnl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_cursor_legacy@single-bo@pipe-a: - shard-bmg: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-2/igt@kms_cursor_legacy@single-bo@pipe-a.html * igt@testdisplay: - shard-dg2-set2: [PASS][4] -> [DMESG-FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@testdisplay.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@testdisplay.html #### Warnings #### * igt@kms_cursor_legacy@single-bo: - shard-bmg: [SKIP][6] ([Intel XE#3007]) -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_cursor_legacy@single-bo.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-2/igt@kms_cursor_legacy@single-bo.html Known issues ------------ Here are the changes found in XEIGTPW_11963_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#1885]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@core_hotunplug@hotreplug-lateclose.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_atomic_interruptible@universal-setplane-cursor: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#3007]) +15 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_atomic_interruptible@universal-setplane-cursor.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_atomic_interruptible@universal-setplane-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [PASS][12] -> [FAIL][13] ([Intel XE#1426]) +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2: - shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#1426]) +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2351] / [Intel XE#2890]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2890]) +7 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2191]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2669]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2907]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][30] ([Intel XE#616]) +9 other tests fail [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +34 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][32] ([Intel XE#3113]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#1195]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#1195] / [Intel XE#1727]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#3113]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1195]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_chamelium_color@ctm-0-50: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-3/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#373]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#2423] / [i915#2575]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1424]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#308]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#2423] / [i915#2575]) +17 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#2791] / [Intel XE#877]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#701]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1135]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][53] -> [FAIL][54] ([Intel XE#2882]) +2 other tests fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-dp2-hdmi-a3.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][55] -> [FAIL][56] ([Intel XE#301]) +3 other tests fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1421]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1: - shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#886]) +1 other test fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-lnl: NOTRUN -> [FAIL][60] ([Intel XE#2422] / [Intel XE#886]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1: - shard-lnl: NOTRUN -> [FAIL][61] ([Intel XE#2422]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-lnl: NOTRUN -> [FAIL][62] ([Intel XE#886]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#2890]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2231]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1401]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([i915#5274]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#656]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#651]) +12 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [PASS][71] -> [SKIP][72] ([Intel XE#2351] / [Intel XE#2890]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#651]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#653]) +16 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2927]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#356]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [PASS][77] -> [SKIP][78] ([i915#2575]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_plane@plane-panning-bottom-right-suspend.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#309]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2763]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#2763]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1129]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#1430]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@cursor: - shard-lnl: [PASS][86] -> [DMESG-WARN][87] ([Intel XE#3184]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-8/igt@kms_pm_rpm@cursor.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-3/igt@kms_pm_rpm@cursor.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#2893]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1489]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1128]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-436/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr-sprite-plane-move: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#2808]) +1 other test fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@kms_psr@psr-sprite-plane-move.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-3/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-primary-render: - shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#1649]) +1 other test fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_psr@psr2-primary-render.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-7/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1437]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#899]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vrr@max-min: - shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#2443]) +1 other test fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_vrr@max-min.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-6/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#756]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2905]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2905]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1130]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#688]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-2/igt@xe_evict@evict-cm-threads-small.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][107] ([Intel XE#1473]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][108] -> [TIMEOUT][109] ([Intel XE#1473]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-no-exec-null-rebind: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1392]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html * igt@xe_exec_compute_mode@twice-userptr-invalidate-race: - shard-lnl: [PASS][111] -> [FAIL][112] ([Intel XE#1630]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-8/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-4/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#288]) +14 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch: - shard-bmg: [PASS][114] -> [SKIP][115] ([Intel XE#1130]) +34 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch.html * igt@xe_exec_reset@parallel-gt-reset: - shard-bmg: [PASS][116] -> [INCOMPLETE][117] ([Intel XE#2105]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-3/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: NOTRUN -> [DMESG-WARN][118] ([Intel XE#3184]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-4/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_oa@invalid-remove-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2541]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1420] / [Intel XE#2838]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#958]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#944]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-gt-list: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#944]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-2/igt@xe_query@multigpu-query-gt-list.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][126] -> [SKIP][127] ([Intel XE#1130]) +35 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [SKIP][128] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@intel_hwmon@hwmon-write.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-4/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic@atomic-invalid-params: - shard-dg2-set2: [SKIP][130] ([Intel XE#2423] / [i915#2575]) -> [PASS][131] +12 other tests pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_atomic@atomic-invalid-params.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-436/igt@kms_atomic@atomic-invalid-params.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][132] ([Intel XE#2231]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [FAIL][134] ([Intel XE#1659]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: [INCOMPLETE][136] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_cursor_edge_walk@128x128-right-edge: - shard-lnl: [DMESG-WARN][138] ([Intel XE#2055]) -> [PASS][139] +1 other test pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-right-edge.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-right-edge.html * igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - shard-lnl: [FAIL][140] ([Intel XE#1541]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-5/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][142] ([Intel XE#301]) -> [PASS][143] +1 other test pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1: - shard-lnl: [FAIL][144] ([Intel XE#3036]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][146] ([Intel XE#301] / [Intel XE#3149] / [Intel XE#886]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][148] ([Intel XE#301]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][150] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][152] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@b-dp4: - shard-dg2-set2: [INCOMPLETE][154] ([Intel XE#1195]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend@b-dp4.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_flip@flip-vs-suspend@b-dp4.html * igt@kms_flip@nonexisting-fb: - shard-bmg: [SKIP][156] ([Intel XE#3007]) -> [PASS][157] +13 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@nonexisting-fb.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_flip@nonexisting-fb.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][158] ([Intel XE#886]) -> [PASS][159] +7 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][160] ([Intel XE#2890]) -> [PASS][161] +2 other tests pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [FAIL][162] ([Intel XE#3217]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][164] ([Intel XE#718]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-lnl: [FAIL][166] ([Intel XE#2948]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_psr@psr2-cursor-plane-onoff.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-2/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][168] ([Intel XE#899]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [FAIL][170] ([Intel XE#2443]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@kms_vrr@flip-basic-fastset.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html * igt@xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][172] ([Intel XE#1000]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-1/igt@xe_evict@evict-beng-threads-large.html * igt@xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][174] ([Intel XE#1130]) -> [PASS][175] +21 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@many-bindexecqueue-rebind.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-3/igt@xe_exec_basic@many-bindexecqueue-rebind.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][176] ([Intel XE#2754]) -> [PASS][177] +1 other test pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-7/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_compute_mode@many-execqueues-basic: - shard-dg2-set2: [SKIP][178] ([Intel XE#1130]) -> [PASS][179] +18 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_compute_mode@many-execqueues-basic.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-436/igt@xe_exec_compute_mode@many-execqueues-basic.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][180] ([Intel XE#1794]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-8/igt@xe_pm@s4-vm-bind-unbind-all.html #### Warnings #### * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][182] ([Intel XE#2327]) -> [SKIP][183] ([Intel XE#2231] / [Intel XE#2890]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][184] ([Intel XE#1124]) -> [SKIP][185] ([Intel XE#2231] / [Intel XE#2890]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][186] ([Intel XE#2231]) -> [SKIP][187] ([Intel XE#1124]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-6/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][188] ([Intel XE#1124]) -> [SKIP][189] ([Intel XE#2231]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][190] ([Intel XE#1124]) -> [SKIP][191] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][192] ([Intel XE#2231]) -> [SKIP][193] ([Intel XE#2328]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html - shard-dg2-set2: [SKIP][194] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][195] ([Intel XE#619]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2-set2: [SKIP][196] ([Intel XE#1124]) -> [SKIP][197] ([Intel XE#2890]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][198] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][199] ([Intel XE#3007]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-dg2-set2: [SKIP][200] ([Intel XE#2191]) -> [SKIP][201] ([Intel XE#2423] / [i915#2575]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][202] ([Intel XE#3007]) -> [SKIP][203] ([Intel XE#367]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][204] ([Intel XE#2423] / [i915#2575]) -> [SKIP][205] ([Intel XE#367]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][206] ([Intel XE#2887]) -> [SKIP][207] ([Intel XE#2231]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][208] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][209] ([Intel XE#2351] / [Intel XE#2890]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][210] ([Intel XE#2887]) -> [SKIP][211] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-bmg: [SKIP][212] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][213] ([Intel XE#2887]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][214] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][215] ([Intel XE#455] / [Intel XE#787]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][216] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][217] ([Intel XE#2890]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_color@degamma: - shard-bmg: [SKIP][218] ([Intel XE#2325]) -> [SKIP][219] ([Intel XE#3007]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_chamelium_color@degamma.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_chamelium_color@degamma.html - shard-dg2-set2: [SKIP][220] ([Intel XE#306]) -> [SKIP][221] ([Intel XE#2423] / [i915#2575]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_chamelium_color@degamma.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][222] ([Intel XE#3007]) -> [SKIP][223] ([Intel XE#2252]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-dg2-set2: [SKIP][224] ([Intel XE#2423] / [i915#2575]) -> [SKIP][225] ([Intel XE#373]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@dp-hpd: - shard-bmg: [SKIP][226] ([Intel XE#2252]) -> [SKIP][227] ([Intel XE#3007]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][228] ([Intel XE#373]) -> [SKIP][229] ([i915#2575]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [FAIL][230] ([Intel XE#1178]) -> [SKIP][231] ([i915#2575]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_content_protection@legacy.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: [SKIP][232] ([Intel XE#2423] / [i915#2575]) -> [SKIP][233] ([Intel XE#455]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_content_protection@lic-type-1.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_content_protection@lic-type-1.html - shard-bmg: [SKIP][234] ([Intel XE#3007]) -> [SKIP][235] ([Intel XE#2341]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_content_protection@lic-type-1.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-3/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-bmg: [SKIP][236] ([Intel XE#2320]) -> [SKIP][237] ([Intel XE#3007]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][238] ([Intel XE#323]) -> [SKIP][239] ([Intel XE#2423] / [i915#2575]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-bmg: [SKIP][240] ([Intel XE#2286]) -> [SKIP][241] ([Intel XE#3007]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-bo: - shard-dg2-set2: [SKIP][242] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][243] ([Intel XE#1195]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_cursor_legacy@single-bo.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_cursor_legacy@single-bo.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][244] ([Intel XE#1508]) -> [SKIP][245] ([Intel XE#2231] / [Intel XE#2890]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg2-set2: [SKIP][246] ([Intel XE#455]) -> [SKIP][247] ([Intel XE#2351] / [Intel XE#2890]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][248] ([Intel XE#2890]) -> [SKIP][249] ([Intel XE#455]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][250] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][251] ([Intel XE#2244]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: [TIMEOUT][252] ([Intel XE#1504]) -> [INCOMPLETE][253] ([Intel XE#1504]) +1 other test incomplete [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-lnl-7/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2-set2: [SKIP][254] ([Intel XE#455]) -> [SKIP][255] ([Intel XE#2890]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][256] ([Intel XE#2311]) -> [SKIP][257] ([Intel XE#2231]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][258] ([Intel XE#651]) -> [SKIP][259] ([Intel XE#2890]) +7 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][260] ([Intel XE#2311]) -> [SKIP][261] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][262] ([Intel XE#2231]) -> [SKIP][263] ([Intel XE#2311]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][264] ([Intel XE#2231]) -> [FAIL][265] ([Intel XE#2333]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-bmg: [FAIL][266] ([Intel XE#2333]) -> [SKIP][267] ([Intel XE#2231]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-suspend.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw: - shard-dg2-set2: [SKIP][268] ([Intel XE#2890]) -> [SKIP][269] ([Intel XE#651]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][270] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][271] ([Intel XE#2311]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][272] ([Intel XE#2313]) -> [SKIP][273] ([Intel XE#2231] / [Intel XE#2890]) +5 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][274] ([Intel XE#2313]) -> [SKIP][275] ([Intel XE#2231]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html - shard-dg2-set2: [SKIP][276] ([Intel XE#653]) -> [SKIP][277] ([Intel XE#2890]) +5 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][278] ([Intel XE#2231]) -> [SKIP][279] ([Intel XE#2313]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][280] ([Intel XE#2890]) -> [SKIP][281] ([Intel XE#653]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][282] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][283] ([Intel XE#653]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][284] ([Intel XE#653]) -> [SKIP][285] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-bmg: [SKIP][286] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][287] ([Intel XE#2313]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][288] ([Intel XE#3007]) -> [SKIP][289] ([Intel XE#2340]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][290] ([Intel XE#2934]) -> [SKIP][291] ([Intel XE#2231]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][292] ([Intel XE#2925]) -> [SKIP][293] ([Intel XE#2890]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][294] ([Intel XE#2231]) -> [SKIP][295] ([Intel XE#346]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: [SKIP][296] ([Intel XE#2890]) -> [SKIP][297] ([Intel XE#346]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-dg2-set2: [SKIP][298] ([Intel XE#455]) -> [SKIP][299] ([i915#2575]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_panel_fitting@legacy.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@kms_panel_fitting@legacy.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [SKIP][300] ([Intel XE#2423] / [i915#2575]) -> [FAIL][301] ([Intel XE#616]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_plane_cursor@viewport.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_plane_cursor@viewport.html * igt@kms_plane_lowres@tiling-y: - shard-dg2-set2: [SKIP][302] ([Intel XE#455]) -> [SKIP][303] ([Intel XE#2423] / [i915#2575]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_plane_lowres@tiling-y.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_plane_lowres@tiling-y.html - shard-bmg: [SKIP][304] ([Intel XE#2393]) -> [SKIP][305] ([Intel XE#3007]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_plane_lowres@tiling-y.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-bmg: [DMESG-WARN][306] ([Intel XE#3177]) -> [SKIP][307] ([Intel XE#3007]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][308] ([Intel XE#2938]) -> [SKIP][309] ([Intel XE#2231]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg2-set2: [SKIP][310] ([Intel XE#2938]) -> [SKIP][311] ([Intel XE#2890]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: [SKIP][312] ([Intel XE#2505]) -> [SKIP][313] ([Intel XE#2231]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_pm_dc@deep-pkgc.html - shard-dg2-set2: [SKIP][314] ([Intel XE#908]) -> [SKIP][315] ([Intel XE#2890]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][316] ([Intel XE#2890]) -> [SKIP][317] ([Intel XE#1489]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: [SKIP][318] ([Intel XE#1489]) -> [SKIP][319] ([Intel XE#2231]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-dg2-set2: [SKIP][320] ([Intel XE#1489]) -> [SKIP][321] ([Intel XE#2890]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-bmg: [SKIP][322] ([Intel XE#2231]) -> [SKIP][323] ([Intel XE#1489]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][324] ([Intel XE#1122]) -> [SKIP][325] ([Intel XE#2890]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html - shard-bmg: [SKIP][326] ([Intel XE#2387]) -> [SKIP][327] ([Intel XE#2231] / [Intel XE#2890]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-primary-render: - shard-bmg: [SKIP][328] ([Intel XE#2231]) -> [SKIP][329] ([Intel XE#2234] / [Intel XE#2850]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@fbc-pr-primary-render.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-3/igt@kms_psr@fbc-pr-primary-render.html - shard-dg2-set2: [SKIP][330] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][331] ([Intel XE#2850] / [Intel XE#929]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-466/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-bmg: [SKIP][332] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][333] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_psr@fbc-psr2-sprite-blt.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@pr-no-drrs: - shard-bmg: [SKIP][334] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][335] ([Intel XE#2234] / [Intel XE#2850]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@pr-no-drrs.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-6/igt@kms_psr@pr-no-drrs.html - shard-dg2-set2: [SKIP][336] ([Intel XE#2890]) -> [SKIP][337] ([Intel XE#2850] / [Intel XE#929]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@pr-no-drrs.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-sprite-blt: - shard-dg2-set2: [SKIP][338] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][339] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_psr@psr-sprite-blt.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_psr@psr-sprite-blt.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][340] ([Intel XE#2426]) -> [SKIP][341] ([Intel XE#3007]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [FAIL][342] ([Intel XE#1729]) -> [SKIP][343] ([Intel XE#2423] / [i915#2575]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][344] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][345] ([Intel XE#3007]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-dg2-set2: [SKIP][346] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][347] ([Intel XE#2423] / [i915#2575]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_eudebug@discovery-race-vmbind: - shard-bmg: [SKIP][348] ([Intel XE#2905]) -> [SKIP][349] ([Intel XE#1130]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_eudebug@discovery-race-vmbind.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@xe_eudebug@discovery-race-vmbind.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: [SKIP][350] ([Intel XE#2905]) -> [SKIP][351] ([Intel XE#1130]) +2 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_eudebug_online@resume-dss.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@xe_eudebug_online@resume-dss.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: [SKIP][352] ([Intel XE#1130]) -> [SKIP][353] ([Intel XE#2905]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-464/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html - shard-bmg: [SKIP][354] ([Intel XE#1130]) -> [SKIP][355] ([Intel XE#2905]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-6/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-bmg: [SKIP][356] ([Intel XE#2322]) -> [SKIP][357] ([Intel XE#1130]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-userptr-rebind: - shard-bmg: [SKIP][358] ([Intel XE#1130]) -> [SKIP][359] ([Intel XE#2322]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html * igt@xe_exec_fault_mode@many-userptr-imm: - shard-dg2-set2: [SKIP][360] ([Intel XE#1130]) -> [SKIP][361] ([Intel XE#288]) +3 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr-imm.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-435/igt@xe_exec_fault_mode@many-userptr-imm.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch: - shard-dg2-set2: [SKIP][362] ([Intel XE#288]) -> [SKIP][363] ([Intel XE#1130]) +6 other tests skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html * igt@xe_oa@non-sampling-read-error: - shard-dg2-set2: [SKIP][364] ([Intel XE#2541]) -> [SKIP][365] ([Intel XE#1130]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@xe_oa@non-sampling-read-error.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-433/igt@xe_oa@non-sampling-read-error.html * igt@xe_pm@d3cold-mocs: - shard-bmg: [SKIP][366] ([Intel XE#1130]) -> [SKIP][367] ([Intel XE#2284]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pm@d3cold-mocs.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-4/igt@xe_pm@d3cold-mocs.html - shard-dg2-set2: [SKIP][368] ([Intel XE#1130]) -> [SKIP][369] ([Intel XE#2284]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_pm@d3cold-mocs.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-434/igt@xe_pm@d3cold-mocs.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][370] ([Intel XE#944]) -> [SKIP][371] ([Intel XE#1130]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_query@multigpu-query-engines.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-463/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][372] ([Intel XE#1130]) -> [SKIP][373] ([Intel XE#944]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-guc.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html - shard-bmg: [SKIP][374] ([Intel XE#1130]) -> [SKIP][375] ([Intel XE#944]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-guc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541 [Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2422 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [Intel XE#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3036]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3036 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3217]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3217 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8082 -> IGTPW_11963 IGTPW_11963: 10df38b2c4c8b8abc03fd5c082afa9a6517df278 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11963/index.html [-- Attachment #2: Type: text/html, Size: 110776 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-11-04 22:03 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-23 5:05 [PATCH i-g-t 0/2] Fix perf_pmu@unload Lucas De Marchi 2024-10-23 5:05 ` [PATCH i-g-t 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi 2024-10-30 0:08 ` Umesh Nerlige Ramappa 2024-10-30 14:11 ` Lucas De Marchi 2024-11-04 19:24 ` Umesh Nerlige Ramappa 2024-11-04 20:51 ` Lucas De Marchi 2024-10-23 5:05 ` [PATCH i-g-t 2/2] tests/intel/perf_pmu: Migrate to unbind + unload Lucas De Marchi 2024-11-04 19:25 ` Umesh Nerlige Ramappa 2024-11-04 20:49 ` Lucas De Marchi 2024-11-04 22:03 ` Umesh Nerlige Ramappa 2024-10-23 6:16 ` ✓ Fi.CI.BAT: success for Fix perf_pmu@unload Patchwork 2024-10-23 6:17 ` ✓ CI.xeBAT: " Patchwork 2024-10-23 9:10 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-23 10:09 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox