* [PATCH i-g-t v14 1/5] lib/igt_device_scan: Introduce filtering out non-PCI devices
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
@ 2024-03-20 15:56 ` Kamil Konieczny
2024-03-20 19:47 ` Janusz Krzysztofik
2024-03-20 15:56 ` [PATCH i-g-t v14 2/5] lib/drmtest: Introduced drm_open_driver_another Kamil Konieczny
` (8 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Kamil Konieczny @ 2024-03-20 15:56 UTC (permalink / raw)
To: igt-dev
Cc: Dominik Karol Piątkowski, Chris Wilson, Janusz Krzysztofik,
Kamil Konieczny, Zbigniew Kempczyński
From: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
Introduced igt_device_filter_pci function that filters out non-PCI
devices from IGT devices. This will help with checking multi-GPU
tests after they skip due to detected only one GPU, in that case
one can verify it after printing what GPUs are really on PCI bus.
Such errors can happen when using wrong env IGT_DEVICE filter.
v6: extending description
v9: fix memory leak in loop (Zbigniew)
Cc: Chris Wilson <chris.p.wilson@linux.intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
lib/igt_device_scan.c | 23 +++++++++++++++++++++++
lib/igt_device_scan.h | 2 ++
2 files changed, 25 insertions(+)
diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
index fbf3fa482..9a2da3d62 100644
--- a/lib/igt_device_scan.c
+++ b/lib/igt_device_scan.c
@@ -1908,6 +1908,29 @@ const char *igt_device_filter_get(int num)
return NULL;
}
+/**
+ * igt_device_filter_pci
+ *
+ * Filter devices to PCI only.
+ *
+ * Returns PCI devices count.
+ */
+int igt_device_filter_pci(void)
+{
+ int count = 0;
+ struct igt_device *dev, *tmp;
+
+ igt_list_for_each_entry_safe(dev, tmp, &igt_devs.filtered, link)
+ if (strcmp(dev->subsystem, "pci") != 0) {
+ igt_list_del(&dev->link);
+ free(dev);
+ } else {
+ count++;
+ }
+
+ return count;
+}
+
static bool igt_device_filter_apply(const char *fstr)
{
struct igt_device *dev, *tmp;
diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
index 48690e236..908733745 100644
--- a/lib/igt_device_scan.h
+++ b/lib/igt_device_scan.h
@@ -81,6 +81,8 @@ int igt_device_filter_add(const char *filter);
void igt_device_filter_free_all(void);
const char *igt_device_filter_get(int num);
+int igt_device_filter_pci(void);
+
/* Use filter to match the device and fill card structure */
bool igt_device_card_match(const char *filter, struct igt_device_card *card);
bool igt_device_card_match_pci(const char *filter,
--
2.42.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH i-g-t v14 1/5] lib/igt_device_scan: Introduce filtering out non-PCI devices
2024-03-20 15:56 ` [PATCH i-g-t v14 1/5] lib/igt_device_scan: Introduce filtering out non-PCI devices Kamil Konieczny
@ 2024-03-20 19:47 ` Janusz Krzysztofik
0 siblings, 0 replies; 19+ messages in thread
From: Janusz Krzysztofik @ 2024-03-20 19:47 UTC (permalink / raw)
To: igt-dev, Kamil Konieczny
Cc: Dominik Karol Piątkowski, Chris Wilson, Kamil Konieczny,
Zbigniew Kempczyński
On Wednesday, 20 March 2024 16:56:55 CET Kamil Konieczny wrote:
> From: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
>
> Introduced igt_device_filter_pci function that filters out non-PCI
> devices from IGT devices. This will help with checking multi-GPU
> tests after they skip due to detected only one GPU, in that case
> one can verify it after printing what GPUs are really on PCI bus.
> Such errors can happen when using wrong env IGT_DEVICE filter.
>
> v6: extending description
> v9: fix memory leak in loop (Zbigniew)
>
> Cc: Chris Wilson <chris.p.wilson@linux.intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> ---
> lib/igt_device_scan.c | 23 +++++++++++++++++++++++
> lib/igt_device_scan.h | 2 ++
> 2 files changed, 25 insertions(+)
>
> diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> index fbf3fa482..9a2da3d62 100644
> --- a/lib/igt_device_scan.c
> +++ b/lib/igt_device_scan.c
> @@ -1908,6 +1908,29 @@ const char *igt_device_filter_get(int num)
> return NULL;
> }
>
> +/**
> + * igt_device_filter_pci
> + *
> + * Filter devices to PCI only.
> + *
> + * Returns PCI devices count.
> + */
> +int igt_device_filter_pci(void)
> +{
> + int count = 0;
> + struct igt_device *dev, *tmp;
NIT: Code style: Taking into account the general IGT rule of following kernel
rules where applicable, don't we want to use reverse Christmas tree ordering
of local variable declarations, which is recognized as making the code easier
to read, if there are no reasons to order them in a different way?
Anyway,
Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> +
> + igt_list_for_each_entry_safe(dev, tmp, &igt_devs.filtered, link)
> + if (strcmp(dev->subsystem, "pci") != 0) {
> + igt_list_del(&dev->link);
> + free(dev);
> + } else {
> + count++;
> + }
> +
> + return count;
> +}
> +
> static bool igt_device_filter_apply(const char *fstr)
> {
> struct igt_device *dev, *tmp;
> diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
> index 48690e236..908733745 100644
> --- a/lib/igt_device_scan.h
> +++ b/lib/igt_device_scan.h
> @@ -81,6 +81,8 @@ int igt_device_filter_add(const char *filter);
> void igt_device_filter_free_all(void);
> const char *igt_device_filter_get(int num);
>
> +int igt_device_filter_pci(void);
> +
> /* Use filter to match the device and fill card structure */
> bool igt_device_card_match(const char *filter, struct igt_device_card *card);
> bool igt_device_card_match_pci(const char *filter,
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t v14 2/5] lib/drmtest: Introduced drm_open_driver_another
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
2024-03-20 15:56 ` [PATCH i-g-t v14 1/5] lib/igt_device_scan: Introduce filtering out non-PCI devices Kamil Konieczny
@ 2024-03-20 15:56 ` Kamil Konieczny
2024-03-20 19:49 ` Janusz Krzysztofik
2024-03-20 15:56 ` [PATCH i-g-t v14 3/5] lib/igt_multigpu: Introduce library for multi-GPU scenarios Kamil Konieczny
` (7 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Kamil Konieczny @ 2024-03-20 15:56 UTC (permalink / raw)
To: igt-dev
Cc: Dominik Karol Piątkowski, Janusz Krzysztofik,
Zbigniew Kempczyński, Kamil Konieczny
From: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
For user convenience, introduce drm_open_driver_another as
a wrapper for __drm_open_driver_another with skip on fail.
Also add counterpart to open: __drm_close_driver() with
no warning for non-opened fd.
v2: rebased (Kamil)
v6: reword description (Janusz)
v10: change assert into skip, add TODO note about atomic reset
before tests starts for i915 and on exit path (Janusz)
add __drm_close_driver() (Kamil)
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Signed-off-by: "Dominik Karol Piątkowski" <dominik.karol.piatkowski@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/drmtest.c | 109 ++++++++++++++++++++++++++++++++++----------------
lib/drmtest.h | 2 +
2 files changed, 76 insertions(+), 35 deletions(-)
diff --git a/lib/drmtest.c b/lib/drmtest.c
index 52b5a2020..f8810da43 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -241,6 +241,35 @@ static void modulename_to_chipset(const char *name, unsigned int *chip)
}
}
+static const char *chipset_to_str(int chipset)
+{
+ switch (chipset) {
+ case DRIVER_INTEL:
+ return "intel";
+ case DRIVER_V3D:
+ return "v3d";
+ case DRIVER_VC4:
+ return "vc4";
+ case DRIVER_VGEM:
+ return "vgem";
+ case DRIVER_AMDGPU:
+ return "amdgpu";
+ case DRIVER_PANFROST:
+ return "panfrost";
+ case DRIVER_MSM:
+ return "msm";
+ case DRIVER_XE:
+ return "xe";
+ case DRIVER_VMWGFX:
+ return "vmwgfx";
+ case DRIVER_ANY:
+ return "any";
+ default:
+ return "other";
+ }
+}
+
+
/*
* Logs path of opened device. Device path opened for the first time is logged at info level,
* subsequent opens (if any) are logged at debug level.
@@ -563,6 +592,27 @@ int __drm_open_driver_another(int idx, int chipset)
return fd;
}
+/**
+ * drm_open_driver_another:
+ * @idx: index of the device you are opening
+ * @chipset: OR'd flags for each chipset to search, eg. #DRIVER_INTEL
+ *
+ * A wrapper for __drm_open_driver with skip on fail.
+ *
+ * Returns:
+ * An open DRM fd or skips
+ */
+int drm_open_driver_another(int idx, int chipset)
+{
+ int fd = __drm_open_driver_another(idx, chipset);
+
+ igt_skip_on_f(fd < 0, "No known gpu found for chipset flags %d (%s)\n",
+ chipset, chipset_to_str(chipset));
+
+ /* TODO: for i915 and idx > 0 add atomic reset before test */
+ return fd;
+}
+
/**
* __drm_open_driver:
* @chipset: OR'd flags for each chipset to search, eg. #DRIVER_INTEL
@@ -643,34 +693,6 @@ static void cancel_work_at_exit_render(int sig)
at_exit_drm_render_fd = -1;
}
-static const char *chipset_to_str(int chipset)
-{
- switch (chipset) {
- case DRIVER_INTEL:
- return "intel";
- case DRIVER_V3D:
- return "v3d";
- case DRIVER_VC4:
- return "vc4";
- case DRIVER_VGEM:
- return "vgem";
- case DRIVER_AMDGPU:
- return "amdgpu";
- case DRIVER_PANFROST:
- return "panfrost";
- case DRIVER_MSM:
- return "msm";
- case DRIVER_XE:
- return "xe";
- case DRIVER_VMWGFX:
- return "vmwgfx";
- case DRIVER_ANY:
- return "any";
- default:
- return "other";
- }
-}
-
static const char *chipset_to_vendor_str(int chipset)
{
return chipset == DRIVER_XE ? chipset_to_str(DRIVER_INTEL) : chipset_to_str(chipset);
@@ -733,12 +755,33 @@ static bool is_valid_fd(int fd)
return false;
}
+/**
+ * __drm_close_driver:
+ * @fd: a drm file descriptor
+ *
+ * Check the given drm file descriptor @fd is valid and if not,
+ * return -1. For valid fd close it and make cleanups.
+ *
+ * Returns: 0 on success or -1 on error.
+ */
+int __drm_close_driver(int fd)
+{
+ if (!is_valid_fd(fd))
+ return -1;
+
+ /* Remove xe_device from cache. */
+ if (is_xe_device(fd))
+ xe_device_put(fd);
+
+ return close(fd);
+}
+
/**
* drm_close_driver:
* @fd: a drm file descriptor
*
- * Check the given drm file descriptor @fd is valid & Close if it is
- * an valid drm fd.
+ * Check the given drm file descriptor @fd is valid and if not issue warning.
+ * For valid fd close it and make cleanups.
*
* Returns: 0 on success or -1 on error.
*/
@@ -750,11 +793,7 @@ int drm_close_driver(int fd)
return -1;
}
- /* Remove xe_device from cache. */
- if (is_xe_device(fd))
- xe_device_put(fd);
-
- return close(fd);
+ return __drm_close_driver(fd);
}
/**
diff --git a/lib/drmtest.h b/lib/drmtest.h
index 588d7da17..bbe5f252f 100644
--- a/lib/drmtest.h
+++ b/lib/drmtest.h
@@ -110,12 +110,14 @@ void __set_forced_driver(const char *name);
int __drm_open_device(const char *name, unsigned int chipset);
void drm_load_module(unsigned int chipset);
+int drm_open_driver_another(int idx, int chipset);
int drm_open_driver(int chipset);
int drm_open_driver_master(int chipset);
int drm_open_driver_render(int chipset);
int __drm_open_driver_another(int idx, int chipset);
int __drm_open_driver(int chipset);
int __drm_open_driver_render(int chipset);
+int __drm_close_driver(int fd);
int drm_close_driver(int fd);
int drm_reopen_driver(int fd);
--
2.42.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH i-g-t v14 2/5] lib/drmtest: Introduced drm_open_driver_another
2024-03-20 15:56 ` [PATCH i-g-t v14 2/5] lib/drmtest: Introduced drm_open_driver_another Kamil Konieczny
@ 2024-03-20 19:49 ` Janusz Krzysztofik
0 siblings, 0 replies; 19+ messages in thread
From: Janusz Krzysztofik @ 2024-03-20 19:49 UTC (permalink / raw)
To: igt-dev, Kamil Konieczny
Cc: Dominik Karol Piątkowski, Zbigniew Kempczyński,
Kamil Konieczny
Hi Kamil,
On Wednesday, 20 March 2024 16:56:56 CET Kamil Konieczny wrote:
> From: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
>
> For user convenience, introduce drm_open_driver_another as
> a wrapper for __drm_open_driver_another with skip on fail.
> Also add counterpart to open: __drm_close_driver() with
> no warning for non-opened fd.
>
> v2: rebased (Kamil)
> v6: reword description (Janusz)
> v10: change assert into skip, add TODO note about atomic reset
> before tests starts for i915 and on exit path (Janusz)
> add __drm_close_driver() (Kamil)
>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
> Signed-off-by: "Dominik Karol Piątkowski" <dominik.karol.piatkowski@intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/drmtest.c | 109 ++++++++++++++++++++++++++++++++++----------------
> lib/drmtest.h | 2 +
> 2 files changed, 76 insertions(+), 35 deletions(-)
>
> diff --git a/lib/drmtest.c b/lib/drmtest.c
> index 52b5a2020..f8810da43 100644
> --- a/lib/drmtest.c
> +++ b/lib/drmtest.c
> @@ -241,6 +241,35 @@ static void modulename_to_chipset(const char *name, unsigned int *chip)
> }
> }
>
> +static const char *chipset_to_str(int chipset)
> +{
> + switch (chipset) {
> + case DRIVER_INTEL:
> + return "intel";
> + case DRIVER_V3D:
> + return "v3d";
> + case DRIVER_VC4:
> + return "vc4";
> + case DRIVER_VGEM:
> + return "vgem";
> + case DRIVER_AMDGPU:
> + return "amdgpu";
> + case DRIVER_PANFROST:
> + return "panfrost";
> + case DRIVER_MSM:
> + return "msm";
> + case DRIVER_XE:
> + return "xe";
> + case DRIVER_VMWGFX:
> + return "vmwgfx";
> + case DRIVER_ANY:
> + return "any";
> + default:
> + return "other";
> + }
> +}
> +
> +
> /*
> * Logs path of opened device. Device path opened for the first time is logged at info level,
> * subsequent opens (if any) are logged at debug level.
> @@ -563,6 +592,27 @@ int __drm_open_driver_another(int idx, int chipset)
> return fd;
> }
>
> +/**
> + * drm_open_driver_another:
> + * @idx: index of the device you are opening
> + * @chipset: OR'd flags for each chipset to search, eg. #DRIVER_INTEL
> + *
> + * A wrapper for __drm_open_driver with skip on fail.
> + *
> + * Returns:
> + * An open DRM fd or skips
> + */
> +int drm_open_driver_another(int idx, int chipset)
> +{
> + int fd = __drm_open_driver_another(idx, chipset);
> +
> + igt_skip_on_f(fd < 0, "No known gpu found for chipset flags %d (%s)\n",
> + chipset, chipset_to_str(chipset));
> +
> + /* TODO: for i915 and idx > 0 add atomic reset before test */
NIT: ... and after test via exit handler, like drm_open does.
BTW, why idx > 0?
Anyway,
Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> + return fd;
> +}
> +
> /**
> * __drm_open_driver:
> * @chipset: OR'd flags for each chipset to search, eg. #DRIVER_INTEL
> @@ -643,34 +693,6 @@ static void cancel_work_at_exit_render(int sig)
> at_exit_drm_render_fd = -1;
> }
>
> -static const char *chipset_to_str(int chipset)
> -{
> - switch (chipset) {
> - case DRIVER_INTEL:
> - return "intel";
> - case DRIVER_V3D:
> - return "v3d";
> - case DRIVER_VC4:
> - return "vc4";
> - case DRIVER_VGEM:
> - return "vgem";
> - case DRIVER_AMDGPU:
> - return "amdgpu";
> - case DRIVER_PANFROST:
> - return "panfrost";
> - case DRIVER_MSM:
> - return "msm";
> - case DRIVER_XE:
> - return "xe";
> - case DRIVER_VMWGFX:
> - return "vmwgfx";
> - case DRIVER_ANY:
> - return "any";
> - default:
> - return "other";
> - }
> -}
> -
> static const char *chipset_to_vendor_str(int chipset)
> {
> return chipset == DRIVER_XE ? chipset_to_str(DRIVER_INTEL) : chipset_to_str(chipset);
> @@ -733,12 +755,33 @@ static bool is_valid_fd(int fd)
> return false;
> }
>
> +/**
> + * __drm_close_driver:
> + * @fd: a drm file descriptor
> + *
> + * Check the given drm file descriptor @fd is valid and if not,
> + * return -1. For valid fd close it and make cleanups.
> + *
> + * Returns: 0 on success or -1 on error.
> + */
> +int __drm_close_driver(int fd)
> +{
> + if (!is_valid_fd(fd))
> + return -1;
> +
> + /* Remove xe_device from cache. */
> + if (is_xe_device(fd))
> + xe_device_put(fd);
> +
> + return close(fd);
> +}
> +
> /**
> * drm_close_driver:
> * @fd: a drm file descriptor
> *
> - * Check the given drm file descriptor @fd is valid & Close if it is
> - * an valid drm fd.
> + * Check the given drm file descriptor @fd is valid and if not issue warning.
> + * For valid fd close it and make cleanups.
> *
> * Returns: 0 on success or -1 on error.
> */
> @@ -750,11 +793,7 @@ int drm_close_driver(int fd)
> return -1;
> }
>
> - /* Remove xe_device from cache. */
> - if (is_xe_device(fd))
> - xe_device_put(fd);
> -
> - return close(fd);
> + return __drm_close_driver(fd);
> }
>
> /**
> diff --git a/lib/drmtest.h b/lib/drmtest.h
> index 588d7da17..bbe5f252f 100644
> --- a/lib/drmtest.h
> +++ b/lib/drmtest.h
> @@ -110,12 +110,14 @@ void __set_forced_driver(const char *name);
>
> int __drm_open_device(const char *name, unsigned int chipset);
> void drm_load_module(unsigned int chipset);
> +int drm_open_driver_another(int idx, int chipset);
> int drm_open_driver(int chipset);
> int drm_open_driver_master(int chipset);
> int drm_open_driver_render(int chipset);
> int __drm_open_driver_another(int idx, int chipset);
> int __drm_open_driver(int chipset);
> int __drm_open_driver_render(int chipset);
> +int __drm_close_driver(int fd);
> int drm_close_driver(int fd);
>
> int drm_reopen_driver(int fd);
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t v14 3/5] lib/igt_multigpu: Introduce library for multi-GPU scenarios
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
2024-03-20 15:56 ` [PATCH i-g-t v14 1/5] lib/igt_device_scan: Introduce filtering out non-PCI devices Kamil Konieczny
2024-03-20 15:56 ` [PATCH i-g-t v14 2/5] lib/drmtest: Introduced drm_open_driver_another Kamil Konieczny
@ 2024-03-20 15:56 ` Kamil Konieczny
2024-03-20 19:49 ` Janusz Krzysztofik
2024-03-20 15:56 ` [PATCH i-g-t v14 4/5] tests/intel/xe_exec_basic: add multigpu subtests Kamil Konieczny
` (6 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Kamil Konieczny @ 2024-03-20 15:56 UTC (permalink / raw)
To: igt-dev
Cc: Dominik Karol Piątkowski, Zbigniew Kempczyński,
Janusz Krzysztofik, Kamil Konieczny
From: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
Implemented igt_require_multigpu in order to replace
igt_require(gpu_count > 1), as well as printing available
PCI devices if requirement fails.
Introduced igt_multigpu_count_class function that returns an actual
number of GPUs present in system, which allows for writing multi-GPU
test scenarios that does not require filter
--device pci:vendor=intel,device=discrete,card=all
to run as intended. Based on patch by Chris Wilson.
Introduced igt_multi_fork_foreach_gpu macro that helps with
writing multi-GPU test scenarios in idiomatic form:
igt_multi_fork_foreach_gpu(i915, DRIVER_INTEL)
test_function(i915);
igt_waitchildren();
This is multi-GPU ready as it will run also on single GPU
board. For running tests on two or more GPUs there is new
igt_multi_fork_foreach_multigpu macro.
v10: squashed two commits which introduce multigpu functions (Zbigniew)
renamed __id and id__ into __chipset/chipset__ (Zbigniew)
used __drm_close_driver() instead of close() in first macro (Kamil)
v11: added functions descriptions (Janusz)
v12: moved to igt_multigpu.c/h (Janusz)
changed names from gem_ to igt_, removed '\' from end of macro (Janusz)
v13: added new macro igt_multi_fork_foreach_multigpu which will require
two or more GPUs, changing old igt_multi_fork_foreach_gpu to work with
one or more GPUs, so tests using _gpu will be multi-GPU ready (Janusz)
v14: dropped multigpu_open_another and replace it with
drm_open_driver_another, extending description (Janusz)
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Signed-off-by: "Dominik Karol Piątkowski" <dominik.karol.piatkowski@intel.com>
[Kamil: fixed whitespace and tabs, moved to lib/igt_multigpu.*]
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_multigpu.c | 88 ++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_multigpu.h | 36 +++++++++++++++++++
lib/meson.build | 1 +
3 files changed, 125 insertions(+)
create mode 100644 lib/igt_multigpu.c
create mode 100644 lib/igt_multigpu.h
diff --git a/lib/igt_multigpu.c b/lib/igt_multigpu.c
new file mode 100644
index 000000000..be0c11332
--- /dev/null
+++ b/lib/igt_multigpu.c
@@ -0,0 +1,88 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include "drmtest.h"
+#include "i915/gem.h"
+#include "igt_core.h"
+#include "igt_device_scan.h"
+#include "igt_multigpu.h"
+
+/**
+ * igt_multigpu_count_class:
+ * @class: chipset, e.g. DRIVER_XE or DRIVER_INTEL
+ *
+ * Function counts number of GPU cards with the help of opening all of them.
+ *
+ * Returns: number of GPUs cards found
+ */
+int igt_multigpu_count_class(int class)
+{
+ int count = 0;
+
+ igt_foreach_gpu(fd, class)
+ count++;
+
+ return count;
+}
+
+static int print_gpus(int count, int gpu_num)
+{
+ struct igt_devices_print_format fmt = {
+ .type = IGT_PRINT_SIMPLE,
+ .option = IGT_PRINT_PCI,
+ };
+ int devices;
+
+ igt_info("PCI devices available in the system:\n");
+
+ igt_devices_scan(true);
+ devices = igt_device_filter_pci();
+ igt_devices_print(&fmt);
+
+ return devices;
+}
+
+/**
+ * igt_require_filtered_multigpu:
+ * @count: minimum number of GPUs required found with filters
+ *
+ * Function checks number of filtered GPU cards.
+ * On error prints available GPUs found on PCI bus and skips.
+ */
+int igt_require_filtered_multigpu(int gpus_wanted)
+{
+ int gpu_count = igt_device_filter_count();
+ int num;
+
+ if (gpu_count >= gpus_wanted)
+ return gpu_count;
+
+ num = print_gpus(gpus_wanted, gpu_count);
+ igt_skip_on_f(gpu_count < gpus_wanted, "Test requires at least %d GPUs, got %d, available: %d\n", gpus_wanted, gpu_count, num);
+
+ return 0; /* unreachable */
+}
+
+/**
+ * igt_require_multigpu:
+ * @count: minimum number of GPUs required
+ * @chipset: for example DRIVER_XE or DRIVER_INTEL
+ *
+ * Function checks number of GPU cards with __drm_open_driver_another()
+ * On error prints available GPUs found on PCI bus and skips.
+ */
+int igt_require_multigpu(int gpus_wanted, unsigned int chipset)
+{
+ int gpu_filters = igt_multigpu_count_class(chipset);
+ int num;
+
+ if (gpu_filters >= gpus_wanted)
+ return gpu_filters;
+
+ num = print_gpus(gpus_wanted, gpu_filters);
+ igt_skip_on_f(gpu_filters < gpus_wanted, "Test requires at least %d GPUs, got %d, available: %d\n", gpus_wanted, gpu_filters, num);
+
+ return 0; /* unreachable */
+}
diff --git a/lib/igt_multigpu.h b/lib/igt_multigpu.h
new file mode 100644
index 000000000..b002f98e0
--- /dev/null
+++ b/lib/igt_multigpu.h
@@ -0,0 +1,36 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#ifndef __INTEL_MULTIGPU_H
+#define __INTEL_MULTIGPU_H
+
+#include "drmtest.h"
+#include "igt_core.h"
+
+int igt_multigpu_count_class(int chipset);
+int igt_require_filtered_multigpu(int count);
+int igt_require_multigpu(int count, unsigned int chipset);
+
+#define igt_foreach_gpu(fd__, chipset__) \
+ for (int igt_unique(i) = 0, fd__; \
+ (fd__ = __drm_open_driver_another(igt_unique(i)++, (chipset__))) >= 0; \
+ __drm_close_driver(fd__))
+
+#define igt_multi_fork_foreach_gpu_num(__fd, __gpu_idx, __chipset, __wanted) \
+ for (int igt_unique(__j) = igt_require_multigpu((__wanted), (__chipset)); \
+ igt_unique(__j) != -1; \
+ igt_unique(__j) = -1) \
+ igt_multi_fork(__gpu_idx, igt_unique(__j)) \
+ for (int __fd = drm_open_driver_another(__gpu_idx, (__chipset)); \
+ __fd >= 0; \
+ drm_close_driver(__fd), __fd = -1)
+
+#define igt_multi_fork_foreach_gpu(__fd, __gpu_idx, __chipset) \
+ igt_multi_fork_foreach_gpu_num(__fd, __gpu_idx, (__chipset), 1)
+
+#define igt_multi_fork_foreach_multigpu(__fd, __gpu_idx, __chipset) \
+ igt_multi_fork_foreach_gpu_num(__fd, __gpu_idx, (__chipset), 2)
+
+#endif /* __INTEL_MULTIGPU_H */
diff --git a/lib/meson.build b/lib/meson.build
index 934bac5c6..a5651571b 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -66,6 +66,7 @@ lib_sources = [
'intel_device_info.c',
'intel_mmio.c',
'intel_mocs.c',
+ 'igt_multigpu.c',
'intel_pat.c',
'ioctl_wrappers.c',
'media_spin.c',
--
2.42.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH i-g-t v14 3/5] lib/igt_multigpu: Introduce library for multi-GPU scenarios
2024-03-20 15:56 ` [PATCH i-g-t v14 3/5] lib/igt_multigpu: Introduce library for multi-GPU scenarios Kamil Konieczny
@ 2024-03-20 19:49 ` Janusz Krzysztofik
0 siblings, 0 replies; 19+ messages in thread
From: Janusz Krzysztofik @ 2024-03-20 19:49 UTC (permalink / raw)
To: igt-dev, Kamil Konieczny
Cc: Dominik Karol Piątkowski, Zbigniew Kempczyński,
Kamil Konieczny
Hi Kamil,
On Wednesday, 20 March 2024 16:56:57 CET Kamil Konieczny wrote:
> From: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
>
> Implemented igt_require_multigpu in order to replace
> igt_require(gpu_count > 1), as well as printing available
> PCI devices if requirement fails.
>
> Introduced igt_multigpu_count_class function that returns an actual
> number of GPUs present in system, which allows for writing multi-GPU
> test scenarios that does not require filter
> --device pci:vendor=intel,device=discrete,card=all
> to run as intended. Based on patch by Chris Wilson.
>
> Introduced igt_multi_fork_foreach_gpu macro that helps with
> writing multi-GPU test scenarios in idiomatic form:
>
> igt_multi_fork_foreach_gpu(i915, DRIVER_INTEL)
> test_function(i915);
> igt_waitchildren();
>
> This is multi-GPU ready as it will run also on single GPU
> board. For running tests on two or more GPUs there is new
> igt_multi_fork_foreach_multigpu macro.
>
> v10: squashed two commits which introduce multigpu functions (Zbigniew)
> renamed __id and id__ into __chipset/chipset__ (Zbigniew)
> used __drm_close_driver() instead of close() in first macro (Kamil)
> v11: added functions descriptions (Janusz)
> v12: moved to igt_multigpu.c/h (Janusz)
> changed names from gem_ to igt_, removed '\' from end of macro (Janusz)
> v13: added new macro igt_multi_fork_foreach_multigpu which will require
> two or more GPUs, changing old igt_multi_fork_foreach_gpu to work with
> one or more GPUs, so tests using _gpu will be multi-GPU ready (Janusz)
> v14: dropped multigpu_open_another and replace it with
> drm_open_driver_another, extending description (Janusz)
>
> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Signed-off-by: "Dominik Karol Piątkowski" <dominik.karol.piatkowski@intel.com>
> [Kamil: fixed whitespace and tabs, moved to lib/igt_multigpu.*]
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/igt_multigpu.c | 88 ++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_multigpu.h | 36 +++++++++++++++++++
> lib/meson.build | 1 +
> 3 files changed, 125 insertions(+)
> create mode 100644 lib/igt_multigpu.c
> create mode 100644 lib/igt_multigpu.h
>
> diff --git a/lib/igt_multigpu.c b/lib/igt_multigpu.c
> new file mode 100644
> index 000000000..be0c11332
> --- /dev/null
> +++ b/lib/igt_multigpu.c
> @@ -0,0 +1,88 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2023 Intel Corporation
> + */
> +
> +#include "drmtest.h"
> +#include "i915/gem.h"
> +#include "igt_core.h"
> +#include "igt_device_scan.h"
> +#include "igt_multigpu.h"
> +
> +/**
> + * igt_multigpu_count_class:
> + * @class: chipset, e.g. DRIVER_XE or DRIVER_INTEL
> + *
> + * Function counts number of GPU cards with the help of opening all of them.
> + *
> + * Returns: number of GPUs cards found
> + */
> +int igt_multigpu_count_class(int class)
> +{
> + int count = 0;
> +
> + igt_foreach_gpu(fd, class)
> + count++;
> +
> + return count;
> +}
> +
> +static int print_gpus(int count, int gpu_num)
> +{
> + struct igt_devices_print_format fmt = {
> + .type = IGT_PRINT_SIMPLE,
> + .option = IGT_PRINT_PCI,
> + };
> + int devices;
> +
> + igt_info("PCI devices available in the system:\n");
> +
> + igt_devices_scan(true);
> + devices = igt_device_filter_pci();
> + igt_devices_print(&fmt);
> +
> + return devices;
> +}
> +
> +/**
> + * igt_require_filtered_multigpu:
> + * @count: minimum number of GPUs required found with filters
> + *
> + * Function checks number of filtered GPU cards.
> + * On error prints available GPUs found on PCI bus and skips.
> + */
> +int igt_require_filtered_multigpu(int gpus_wanted)
NIT: Not used by any other function withing this series, then probably belongs
to another set of patches.
Anyway,
Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> +{
> + int gpu_count = igt_device_filter_count();
> + int num;
> +
> + if (gpu_count >= gpus_wanted)
> + return gpu_count;
> +
> + num = print_gpus(gpus_wanted, gpu_count);
> + igt_skip_on_f(gpu_count < gpus_wanted, "Test requires at least %d GPUs, got %d, available: %d\n", gpus_wanted, gpu_count, num);
> +
> + return 0; /* unreachable */
> +}
> +
> +/**
> + * igt_require_multigpu:
> + * @count: minimum number of GPUs required
> + * @chipset: for example DRIVER_XE or DRIVER_INTEL
> + *
> + * Function checks number of GPU cards with __drm_open_driver_another()
> + * On error prints available GPUs found on PCI bus and skips.
> + */
> +int igt_require_multigpu(int gpus_wanted, unsigned int chipset)
> +{
> + int gpu_filters = igt_multigpu_count_class(chipset);
> + int num;
> +
> + if (gpu_filters >= gpus_wanted)
> + return gpu_filters;
> +
> + num = print_gpus(gpus_wanted, gpu_filters);
> + igt_skip_on_f(gpu_filters < gpus_wanted, "Test requires at least %d GPUs, got %d, available: %d\n", gpus_wanted, gpu_filters, num);
> +
> + return 0; /* unreachable */
> +}
> diff --git a/lib/igt_multigpu.h b/lib/igt_multigpu.h
> new file mode 100644
> index 000000000..b002f98e0
> --- /dev/null
> +++ b/lib/igt_multigpu.h
> @@ -0,0 +1,36 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2023 Intel Corporation
> + */
> +
> +#ifndef __INTEL_MULTIGPU_H
> +#define __INTEL_MULTIGPU_H
> +
> +#include "drmtest.h"
> +#include "igt_core.h"
> +
> +int igt_multigpu_count_class(int chipset);
> +int igt_require_filtered_multigpu(int count);
> +int igt_require_multigpu(int count, unsigned int chipset);
> +
> +#define igt_foreach_gpu(fd__, chipset__) \
> + for (int igt_unique(i) = 0, fd__; \
> + (fd__ = __drm_open_driver_another(igt_unique(i)++, (chipset__))) >= 0; \
> + __drm_close_driver(fd__))
> +
> +#define igt_multi_fork_foreach_gpu_num(__fd, __gpu_idx, __chipset, __wanted) \
> + for (int igt_unique(__j) = igt_require_multigpu((__wanted), (__chipset)); \
> + igt_unique(__j) != -1; \
> + igt_unique(__j) = -1) \
> + igt_multi_fork(__gpu_idx, igt_unique(__j)) \
> + for (int __fd = drm_open_driver_another(__gpu_idx, (__chipset)); \
> + __fd >= 0; \
> + drm_close_driver(__fd), __fd = -1)
> +
> +#define igt_multi_fork_foreach_gpu(__fd, __gpu_idx, __chipset) \
> + igt_multi_fork_foreach_gpu_num(__fd, __gpu_idx, (__chipset), 1)
> +
> +#define igt_multi_fork_foreach_multigpu(__fd, __gpu_idx, __chipset) \
> + igt_multi_fork_foreach_gpu_num(__fd, __gpu_idx, (__chipset), 2)
> +
> +#endif /* __INTEL_MULTIGPU_H */
> diff --git a/lib/meson.build b/lib/meson.build
> index 934bac5c6..a5651571b 100644
> --- a/lib/meson.build
> +++ b/lib/meson.build
> @@ -66,6 +66,7 @@ lib_sources = [
> 'intel_device_info.c',
> 'intel_mmio.c',
> 'intel_mocs.c',
> + 'igt_multigpu.c',
> 'intel_pat.c',
> 'ioctl_wrappers.c',
> 'media_spin.c',
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t v14 4/5] tests/intel/xe_exec_basic: add multigpu subtests
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
` (2 preceding siblings ...)
2024-03-20 15:56 ` [PATCH i-g-t v14 3/5] lib/igt_multigpu: Introduce library for multi-GPU scenarios Kamil Konieczny
@ 2024-03-20 15:56 ` Kamil Konieczny
2024-03-20 19:49 ` Janusz Krzysztofik
2024-03-21 13:07 ` Piatkowski, Dominik Karol
2024-03-20 15:56 ` [PATCH i-g-t v14 5/5] tests/intel/gem_exec_gttfill: simplify multiGPU subtest Kamil Konieczny
` (5 subsequent siblings)
9 siblings, 2 replies; 19+ messages in thread
From: Kamil Konieczny @ 2024-03-20 15:56 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Dominik Karol Piątkowski,
Zbigniew Kempczyński, Janusz Krzysztofik
Add a few multi-gpu subtests:
multigpu-once-*
multigpu-many-execqueues-many-vm-*
multigpu-no-exec-*
run on two or more GPUs. Many variant was limited to take at most
few seconds.
v10: use new renamed macro multi_fork_foreach_gpu_chip (Zbigniew)
v13: use igt_multi_fork_foreach_gpu (Janusz)
Cc: "Dominik Karol Piątkowski" <dominik.karol.piatkowski@intel.com>
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_exec_basic.c | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/tests/intel/xe_exec_basic.c b/tests/intel/xe_exec_basic.c
index e6f8db5b0..f0230a9ca 100644
--- a/tests/intel/xe_exec_basic.c
+++ b/tests/intel/xe_exec_basic.c
@@ -11,6 +11,7 @@
*/
#include "igt.h"
+#include "igt_multigpu.h"
#include "lib/igt_syncobj.h"
#include "lib/intel_reg.h"
#include "xe_drm.h"
@@ -54,6 +55,18 @@
* Description: Run no-exec %arg[1] test
* Test category: functionality test
*
+ * SUBTEST: multigpu-once-%s
+ * Description: Run %arg[1] test only once on multiGPU
+ * Test category: functionality test
+ *
+ * SUBTEST: multigpu-many-execqueues-many-vm-%s
+ * Description: Run %arg[1] test on many exec_queues and many VMs on multiGPU
+ * Test category: stress test
+ *
+ * SUBTEST: multigpu-no-exec-%s
+ * Description: Run no-exec %arg[1] test on multiGPU
+ * Test category: functionality test
+ *
* arg[1]:
*
* @basic: basic
@@ -368,4 +381,27 @@ igt_main
igt_fixture
drm_close_driver(fd);
+
+ for (const struct section *s = sections; s->name; s++) {
+ igt_subtest_f("multigpu-once-%s", s->name) {
+ igt_multi_fork_foreach_multigpu(gpu_fd, gpu_idx, DRIVER_XE)
+ xe_for_each_engine(gpu_fd, hwe)
+ test_exec(gpu_fd, hwe, 1, 1, 1, s->flags);
+ igt_waitchildren();
+ }
+
+ igt_subtest_f("multigpu-many-execqueues-many-vm-%s", s->name) {
+ igt_multi_fork_foreach_multigpu(gpu_fd, gpu_idx, DRIVER_XE)
+ xe_for_each_engine(gpu_fd, hwe)
+ test_exec(gpu_fd, hwe, 16, 32, 16, s->flags);
+ igt_waitchildren();
+ }
+
+ igt_subtest_f("multigpu-no-exec-%s", s->name) {
+ igt_multi_fork_foreach_multigpu(gpu_fd, gpu_idx, DRIVER_XE)
+ xe_for_each_engine(gpu_fd, hwe)
+ test_exec(gpu_fd, hwe, 1, 0, 1, s->flags);
+ igt_waitchildren();
+ }
+ }
}
--
2.42.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH i-g-t v14 4/5] tests/intel/xe_exec_basic: add multigpu subtests
2024-03-20 15:56 ` [PATCH i-g-t v14 4/5] tests/intel/xe_exec_basic: add multigpu subtests Kamil Konieczny
@ 2024-03-20 19:49 ` Janusz Krzysztofik
2024-03-21 13:07 ` Piatkowski, Dominik Karol
1 sibling, 0 replies; 19+ messages in thread
From: Janusz Krzysztofik @ 2024-03-20 19:49 UTC (permalink / raw)
To: igt-dev, Kamil Konieczny
Cc: Kamil Konieczny, Dominik Karol Piątkowski,
Zbigniew Kempczyński
Hi Kamil,
On Wednesday, 20 March 2024 16:56:58 CET Kamil Konieczny wrote:
> Add a few multi-gpu subtests:
>
> multigpu-once-*
> multigpu-many-execqueues-many-vm-*
> multigpu-no-exec-*
>
> run on two or more GPUs. Many variant was limited to take at most
> few seconds.
>
> v10: use new renamed macro multi_fork_foreach_gpu_chip (Zbigniew)
> v13: use igt_multi_fork_foreach_gpu (Janusz)
>
> Cc: "Dominik Karol Piątkowski" <dominik.karol.piatkowski@intel.com>
> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
The code looks good to me, however, since I'm not quite on track with Xe and
multi-GPU, I can't tell if such tests are what is needed, then instead of R-b:
Acked-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> ---
> tests/intel/xe_exec_basic.c | 36 ++++++++++++++++++++++++++++++++++++
> 1 file changed, 36 insertions(+)
>
> diff --git a/tests/intel/xe_exec_basic.c b/tests/intel/xe_exec_basic.c
> index e6f8db5b0..f0230a9ca 100644
> --- a/tests/intel/xe_exec_basic.c
> +++ b/tests/intel/xe_exec_basic.c
> @@ -11,6 +11,7 @@
> */
>
> #include "igt.h"
> +#include "igt_multigpu.h"
> #include "lib/igt_syncobj.h"
> #include "lib/intel_reg.h"
> #include "xe_drm.h"
> @@ -54,6 +55,18 @@
> * Description: Run no-exec %arg[1] test
> * Test category: functionality test
> *
> + * SUBTEST: multigpu-once-%s
> + * Description: Run %arg[1] test only once on multiGPU
> + * Test category: functionality test
> + *
> + * SUBTEST: multigpu-many-execqueues-many-vm-%s
> + * Description: Run %arg[1] test on many exec_queues and many VMs on multiGPU
> + * Test category: stress test
> + *
> + * SUBTEST: multigpu-no-exec-%s
> + * Description: Run no-exec %arg[1] test on multiGPU
> + * Test category: functionality test
> + *
> * arg[1]:
> *
> * @basic: basic
> @@ -368,4 +381,27 @@ igt_main
>
> igt_fixture
> drm_close_driver(fd);
> +
> + for (const struct section *s = sections; s->name; s++) {
> + igt_subtest_f("multigpu-once-%s", s->name) {
> + igt_multi_fork_foreach_multigpu(gpu_fd, gpu_idx, DRIVER_XE)
> + xe_for_each_engine(gpu_fd, hwe)
> + test_exec(gpu_fd, hwe, 1, 1, 1, s->flags);
> + igt_waitchildren();
> + }
> +
> + igt_subtest_f("multigpu-many-execqueues-many-vm-%s", s->name) {
> + igt_multi_fork_foreach_multigpu(gpu_fd, gpu_idx, DRIVER_XE)
> + xe_for_each_engine(gpu_fd, hwe)
> + test_exec(gpu_fd, hwe, 16, 32, 16, s->flags);
> + igt_waitchildren();
> + }
> +
> + igt_subtest_f("multigpu-no-exec-%s", s->name) {
> + igt_multi_fork_foreach_multigpu(gpu_fd, gpu_idx, DRIVER_XE)
> + xe_for_each_engine(gpu_fd, hwe)
> + test_exec(gpu_fd, hwe, 1, 0, 1, s->flags);
> + igt_waitchildren();
> + }
> + }
> }
>
^ permalink raw reply [flat|nested] 19+ messages in thread* RE: [PATCH i-g-t v14 4/5] tests/intel/xe_exec_basic: add multigpu subtests
2024-03-20 15:56 ` [PATCH i-g-t v14 4/5] tests/intel/xe_exec_basic: add multigpu subtests Kamil Konieczny
2024-03-20 19:49 ` Janusz Krzysztofik
@ 2024-03-21 13:07 ` Piatkowski, Dominik Karol
1 sibling, 0 replies; 19+ messages in thread
From: Piatkowski, Dominik Karol @ 2024-03-21 13:07 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org
Cc: Kempczynski, Zbigniew, Janusz Krzysztofik
Reviewed-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
> -----Original Message-----
> From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Sent: Wednesday, March 20, 2024 4:57 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>; Piatkowski, Dominik
> Karol <dominik.karol.piatkowski@intel.com>; Kempczynski, Zbigniew
> <zbigniew.kempczynski@intel.com>; Janusz Krzysztofik
> <janusz.krzysztofik@linux.intel.com>
> Subject: [PATCH i-g-t v14 4/5] tests/intel/xe_exec_basic: add multigpu
> subtests
>
> Add a few multi-gpu subtests:
>
> multigpu-once-*
> multigpu-many-execqueues-many-vm-*
> multigpu-no-exec-*
>
> run on two or more GPUs. Many variant was limited to take at most few
> seconds.
>
> v10: use new renamed macro multi_fork_foreach_gpu_chip (Zbigniew)
> v13: use igt_multi_fork_foreach_gpu (Janusz)
>
> Cc: "Dominik Karol Piątkowski" <dominik.karol.piatkowski@intel.com>
> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_exec_basic.c | 36
> ++++++++++++++++++++++++++++++++++++
> 1 file changed, 36 insertions(+)
>
> diff --git a/tests/intel/xe_exec_basic.c b/tests/intel/xe_exec_basic.c index
> e6f8db5b0..f0230a9ca 100644
> --- a/tests/intel/xe_exec_basic.c
> +++ b/tests/intel/xe_exec_basic.c
> @@ -11,6 +11,7 @@
> */
>
> #include "igt.h"
> +#include "igt_multigpu.h"
> #include "lib/igt_syncobj.h"
> #include "lib/intel_reg.h"
> #include "xe_drm.h"
> @@ -54,6 +55,18 @@
> * Description: Run no-exec %arg[1] test
> * Test category: functionality test
> *
> + * SUBTEST: multigpu-once-%s
> + * Description: Run %arg[1] test only once on multiGPU
> + * Test category: functionality test
> + *
> + * SUBTEST: multigpu-many-execqueues-many-vm-%s
> + * Description: Run %arg[1] test on many exec_queues and many VMs on
> + multiGPU
> + * Test category: stress test
> + *
> + * SUBTEST: multigpu-no-exec-%s
> + * Description: Run no-exec %arg[1] test on multiGPU
> + * Test category: functionality test
> + *
> * arg[1]:
> *
> * @basic: basic
> @@ -368,4 +381,27 @@ igt_main
>
> igt_fixture
> drm_close_driver(fd);
> +
> + for (const struct section *s = sections; s->name; s++) {
> + igt_subtest_f("multigpu-once-%s", s->name) {
> + igt_multi_fork_foreach_multigpu(gpu_fd, gpu_idx,
> DRIVER_XE)
> + xe_for_each_engine(gpu_fd, hwe)
> + test_exec(gpu_fd, hwe, 1, 1, 1, s-
> >flags);
> + igt_waitchildren();
> + }
> +
> + igt_subtest_f("multigpu-many-execqueues-many-vm-%s", s-
> >name) {
> + igt_multi_fork_foreach_multigpu(gpu_fd, gpu_idx,
> DRIVER_XE)
> + xe_for_each_engine(gpu_fd, hwe)
> + test_exec(gpu_fd, hwe, 16, 32, 16, s-
> >flags);
> + igt_waitchildren();
> + }
> +
> + igt_subtest_f("multigpu-no-exec-%s", s->name) {
> + igt_multi_fork_foreach_multigpu(gpu_fd, gpu_idx,
> DRIVER_XE)
> + xe_for_each_engine(gpu_fd, hwe)
> + test_exec(gpu_fd, hwe, 1, 0, 1, s-
> >flags);
> + igt_waitchildren();
> + }
> + }
> }
> --
> 2.42.0
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t v14 5/5] tests/intel/gem_exec_gttfill: simplify multiGPU subtest
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
` (3 preceding siblings ...)
2024-03-20 15:56 ` [PATCH i-g-t v14 4/5] tests/intel/xe_exec_basic: add multigpu subtests Kamil Konieczny
@ 2024-03-20 15:56 ` Kamil Konieczny
2024-03-20 19:50 ` Janusz Krzysztofik
2024-03-20 18:32 ` ✓ Fi.CI.BAT: success for introduce Xe multigpu and other multi-GPU helpers (rev14) Patchwork
` (4 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Kamil Konieczny @ 2024-03-20 15:56 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Zbigniew Kempczyński,
Dominik Karol Piątkowski, Janusz Krzysztofik
Simplify multi-GPU subtest with the help of new multigpu library.
v10: remove igt_require_multigpu() as it checks filters but we
want to use legacy opens (Kamil), correct Cc name (Zbigniew)
v14: add missing igt_require_gem() in multigpu-basic (Janusz)
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Cc: "Dominik Karol Piątkowski" <dominik.karol.piatkowski@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/gem_exec_gttfill.c | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/tests/intel/gem_exec_gttfill.c b/tests/intel/gem_exec_gttfill.c
index b1063437b..d79a6ffd5 100644
--- a/tests/intel/gem_exec_gttfill.c
+++ b/tests/intel/gem_exec_gttfill.c
@@ -24,8 +24,8 @@
#include "i915/gem.h"
#include "i915/gem_create.h"
#include "igt.h"
-#include "igt_device_scan.h"
#include "igt_rand.h"
+#include "igt_multigpu.h"
/**
* TEST: gem exec gttfill
* Description: Fill the GTT with batches.
@@ -251,7 +251,7 @@ igt_main
{
const struct intel_execution_engine2 *e;
const intel_ctx_t *ctx;
- int i915 = -1, gpu_count;
+ int i915 = -1;
igt_fixture {
i915 = drm_open_driver(DRIVER_INTEL);
@@ -285,17 +285,12 @@ igt_main
igt_fixture {
igt_stop_hang_detector();
intel_ctx_destroy(i915, ctx);
- // prepare multigpu tests
- gpu_count = igt_device_filter_count();
}
igt_subtest("multigpu-basic") { /* run on two or more discrete cards */
- igt_require(gpu_count > 1);
- igt_multi_fork(child, gpu_count) {
- int g_fd;
+ igt_multi_fork_foreach_gpu(g_fd, gpu_idx, DRIVER_INTEL) {
// prepare
- g_fd = __drm_open_driver_another(child, DRIVER_INTEL);
- igt_assert(g_fd >= 0);
+ igt_require_gem(g_fd);
ctx = intel_ctx_create_all_physical(g_fd);
igt_fork_hang_detector(g_fd);
// subtest
@@ -303,7 +298,6 @@ igt_main
// release resources
igt_stop_hang_detector();
intel_ctx_destroy(g_fd, ctx);
- drm_close_driver(g_fd);
}
igt_waitchildren();
--
2.42.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH i-g-t v14 5/5] tests/intel/gem_exec_gttfill: simplify multiGPU subtest
2024-03-20 15:56 ` [PATCH i-g-t v14 5/5] tests/intel/gem_exec_gttfill: simplify multiGPU subtest Kamil Konieczny
@ 2024-03-20 19:50 ` Janusz Krzysztofik
0 siblings, 0 replies; 19+ messages in thread
From: Janusz Krzysztofik @ 2024-03-20 19:50 UTC (permalink / raw)
To: igt-dev, Kamil Konieczny
Cc: Kamil Konieczny, Zbigniew Kempczyński,
Dominik Karol Piątkowski
Hi Kamil,
On Wednesday, 20 March 2024 16:56:59 CET Kamil Konieczny wrote:
> Simplify multi-GPU subtest with the help of new multigpu library.
>
> v10: remove igt_require_multigpu() as it checks filters but we
> want to use legacy opens (Kamil), correct Cc name (Zbigniew)
> v14: add missing igt_require_gem() in multigpu-basic (Janusz)
>
> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
> Cc: "Dominik Karol Piątkowski" <dominik.karol.piatkowski@intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/gem_exec_gttfill.c | 14 ++++----------
> 1 file changed, 4 insertions(+), 10 deletions(-)
>
> diff --git a/tests/intel/gem_exec_gttfill.c b/tests/intel/gem_exec_gttfill.c
> index b1063437b..d79a6ffd5 100644
> --- a/tests/intel/gem_exec_gttfill.c
> +++ b/tests/intel/gem_exec_gttfill.c
> @@ -24,8 +24,8 @@
> #include "i915/gem.h"
> #include "i915/gem_create.h"
> #include "igt.h"
> -#include "igt_device_scan.h"
> #include "igt_rand.h"
> +#include "igt_multigpu.h"
NIT: Don't we want to follow alphabetic ordering of headers?
> /**
> * TEST: gem exec gttfill
> * Description: Fill the GTT with batches.
> @@ -251,7 +251,7 @@ igt_main
> {
> const struct intel_execution_engine2 *e;
> const intel_ctx_t *ctx;
> - int i915 = -1, gpu_count;
> + int i915 = -1;
>
> igt_fixture {
> i915 = drm_open_driver(DRIVER_INTEL);
> @@ -285,17 +285,12 @@ igt_main
> igt_fixture {
> igt_stop_hang_detector();
> intel_ctx_destroy(i915, ctx);
> - // prepare multigpu tests
> - gpu_count = igt_device_filter_count();
> }
>
> igt_subtest("multigpu-basic") { /* run on two or more discrete cards */
> - igt_require(gpu_count > 1);
> - igt_multi_fork(child, gpu_count) {
> - int g_fd;
> + igt_multi_fork_foreach_gpu(g_fd, gpu_idx, DRIVER_INTEL) {
> // prepare
> - g_fd = __drm_open_driver_another(child, DRIVER_INTEL);
> - igt_assert(g_fd >= 0);
> + igt_require_gem(g_fd);
NIT: Not needed -- as you stated, it is already called, for any subtest, from
initial igt_fixture section.
Anyway,
Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> ctx = intel_ctx_create_all_physical(g_fd);
> igt_fork_hang_detector(g_fd);
> // subtest
> @@ -303,7 +298,6 @@ igt_main
> // release resources
> igt_stop_hang_detector();
> intel_ctx_destroy(g_fd, ctx);
> - drm_close_driver(g_fd);
> }
>
> igt_waitchildren();
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Fi.CI.BAT: success for introduce Xe multigpu and other multi-GPU helpers (rev14)
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
` (4 preceding siblings ...)
2024-03-20 15:56 ` [PATCH i-g-t v14 5/5] tests/intel/gem_exec_gttfill: simplify multiGPU subtest Kamil Konieczny
@ 2024-03-20 18:32 ` Patchwork
2024-03-20 18:33 ` ✓ CI.xeBAT: " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-03-20 18:32 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8253 bytes --]
== Series Details ==
Series: introduce Xe multigpu and other multi-GPU helpers (rev14)
URL : https://patchwork.freedesktop.org/series/129101/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14457 -> IGTPW_10866
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
Participating hosts (37 -> 36)
------------------------------
Additional (1): fi-kbl-8809g
Missing (2): bat-jsl-1 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10866 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- fi-kbl-8809g: NOTRUN -> [DMESG-WARN][1] ([i915#10462])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
* igt@fbdev@info:
- fi-kbl-8809g: NOTRUN -> [SKIP][2] ([i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-apl-guc: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-apl-guc/igt@gem_lmem_swapping@basic.html
- fi-kbl-8809g: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html
* igt@kms_addfb_basic@bad-pitch-65536:
- fi-kbl-8809g: NOTRUN -> [FAIL][6] ([i915#10457]) +1 other test fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@kms_addfb_basic@bad-pitch-65536.html
* igt@kms_addfb_basic@too-high:
- fi-kbl-8809g: NOTRUN -> [FAIL][7] ([i915#10455])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html
* igt@kms_force_connector_basic@force-edid:
- fi-kbl-8809g: NOTRUN -> [DMESG-FAIL][8] ([i915#10454])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html
* igt@kms_force_connector_basic@prune-stale-modes:
- fi-kbl-8809g: NOTRUN -> [DMESG-WARN][9] ([i915#10454]) +1 other test dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- fi-apl-guc: NOTRUN -> [SKIP][10] +17 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-apl-guc/igt@kms_hdmi_inject@inject-audio.html
- fi-kbl-8809g: NOTRUN -> [FAIL][11] ([IGT#3])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1:
- fi-kbl-8809g: NOTRUN -> [SKIP][12] +58 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- bat-rpls-3: [DMESG-WARN][13] ([i915#5591]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[i915#10436]: https://gitlab.freedesktop.org/drm/intel/issues/10436
[i915#10454]: https://gitlab.freedesktop.org/drm/intel/issues/10454
[i915#10455]: https://gitlab.freedesktop.org/drm/intel/issues/10455
[i915#10457]: https://gitlab.freedesktop.org/drm/intel/issues/10457
[i915#10462]: https://gitlab.freedesktop.org/drm/intel/issues/10462
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7770 -> IGTPW_10866
CI-20190529: 20190529
CI_DRM_14457: cfe25dc9ae2e1add3f2605831bf6d8bea481164b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10866: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
IGT_7770: fef0422fd296f7c65724315f2a455ffb6959fb0d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race
+igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind
+igt@xe_exec_basic@multigpu-no-exec-basic
+igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind
+igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap
+igt@xe_exec_basic@multigpu-no-exec-bindexecqueue
+igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind
+igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr
+igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate
+igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race
+igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind
+igt@xe_exec_basic@multigpu-no-exec-null
+igt@xe_exec_basic@multigpu-no-exec-null-defer-bind
+igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap
+igt@xe_exec_basic@multigpu-no-exec-null-rebind
+igt@xe_exec_basic@multigpu-no-exec-rebind
+igt@xe_exec_basic@multigpu-no-exec-userptr
+igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate
+igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race
+igt@xe_exec_basic@multigpu-no-exec-userptr-rebind
+igt@xe_exec_basic@multigpu-once-basic
+igt@xe_exec_basic@multigpu-once-basic-defer-bind
+igt@xe_exec_basic@multigpu-once-basic-defer-mmap
+igt@xe_exec_basic@multigpu-once-bindexecqueue
+igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind
+igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr
+igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate
+igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race
+igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind
+igt@xe_exec_basic@multigpu-once-null
+igt@xe_exec_basic@multigpu-once-null-defer-bind
+igt@xe_exec_basic@multigpu-once-null-defer-mmap
+igt@xe_exec_basic@multigpu-once-null-rebind
+igt@xe_exec_basic@multigpu-once-rebind
+igt@xe_exec_basic@multigpu-once-userptr
+igt@xe_exec_basic@multigpu-once-userptr-invalidate
+igt@xe_exec_basic@multigpu-once-userptr-invalidate-race
+igt@xe_exec_basic@multigpu-once-userptr-rebind
-igt@xe_exec_compute_mode@lr-mode-workload
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
[-- Attachment #2: Type: text/html, Size: 9533 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ CI.xeBAT: success for introduce Xe multigpu and other multi-GPU helpers (rev14)
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
` (5 preceding siblings ...)
2024-03-20 18:32 ` ✓ Fi.CI.BAT: success for introduce Xe multigpu and other multi-GPU helpers (rev14) Patchwork
@ 2024-03-20 18:33 ` Patchwork
2024-03-20 19:47 ` [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Janusz Krzysztofik
` (2 subsequent siblings)
9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-03-20 18:33 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1135 bytes --]
== Series Details ==
Series: introduce Xe multigpu and other multi-GPU helpers (rev14)
URL : https://patchwork.freedesktop.org/series/129101/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7770_BAT -> XEIGTPW_10866_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7770 -> IGTPW_10866
* Linux: xe-955-8bce3f2c9e8b3c23a242b11e32c62e662e722d85 -> xe-966-cfe25dc9ae2e1add3f2605831bf6d8bea481164b
IGTPW_10866: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
IGT_7770: fef0422fd296f7c65724315f2a455ffb6959fb0d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-955-8bce3f2c9e8b3c23a242b11e32c62e662e722d85: 8bce3f2c9e8b3c23a242b11e32c62e662e722d85
xe-966-cfe25dc9ae2e1add3f2605831bf6d8bea481164b: cfe25dc9ae2e1add3f2605831bf6d8bea481164b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10866/index.html
[-- Attachment #2: Type: text/html, Size: 1694 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
` (6 preceding siblings ...)
2024-03-20 18:33 ` ✓ CI.xeBAT: " Patchwork
@ 2024-03-20 19:47 ` Janusz Krzysztofik
2024-03-21 7:46 ` ✗ Fi.CI.IGT: failure for introduce Xe multigpu and other multi-GPU helpers (rev14) Patchwork
2024-03-25 8:28 ` ✓ Fi.CI.IGT: success " Patchwork
9 siblings, 0 replies; 19+ messages in thread
From: Janusz Krzysztofik @ 2024-03-20 19:47 UTC (permalink / raw)
To: igt-dev, Kamil Konieczny; +Cc: Kamil Konieczny, Zbigniew Kempczyński
Hi Kamil,
The whole series looks good to me. I'm going to respond with my R-b to each
individual patch, possibly with some NITs though, which you are free to
address or ignore before applying.
Thanks,
Janusz
On Wednesday, 20 March 2024 16:56:54 CET Kamil Konieczny wrote:
> Introduce some multi-gpu function helpers and macros. This allows
> quickly writing new multiGPU tests for i915 without requiring filters.
> There is still drawback of not printing in children logs <g:gpu-number>
> for first (for Xe) opened device or for all opened ones (for i915).
> I renamed lib from lib/i915/igt_multigpu.* to lib/igt_multigu.* as they
> should also work for other vendors.
>
> v2: corrected two patches which introduced multigpu lib (Dominik)
> rebased patch intoducing Xe multigpu macro, corrected description
> v3: corrected include in first multigpu patch (Dominik)
> fixed typo (Dominik), refactoring code with Xe and gem macro (Kamil)
> v4: corrected typo in macro (Dominik)
> v5: removed cached names and relaxing checks for filtered devices
> in 3/8 patch, added Janusz to cc in 1/8...5/8 (Kamil)
> v6: extended description of patches 1 and 2, fixed bug in 3/8 (Janusz)
> improved usage of _is_already_opened() (Kamil)
> v7: restored prohibition of opening the same card at other index (Janusz)
> v8: limit checks for N-th card to 0...N-1 range (Janusz)
> simplify if-else in __search_and_open() (Kamil)
> v9: dropped patch 3/8 ("lib/drmtest: allow opening cards in random order")
> as it can be added later, replaced 8/8 ("tests/intel/gem_mmap: add basic
> multi-GPU") with refactor in gem_exec_gttfill (Kamil)
> v10: added new helper close function into drmtest.c (Kamil)
> use skip in drm_open_driver() in drmtest.c (Janusz)
> renamed macro from xe_multi_fork_foreach_gpu to multi_fork_foreach_gpu_chip
> and also adding chipset parameter to it, so it is more flexible (Zbigniew)
> fix xe test to use new macro (Kamil)
> squashed patches 3 and 4 into one (Janusz)
> v11: moved descriptions for new functions into patch where they are
> introduced (Janusz)
> corrected description in cover letter for v10 (Kamil)
> v12: many improvements suggested by Janusz
> v13: dropped patch for Xe macro with filtered views as it will be better
> to send it in separate patchset (Janusz)
> other improvements suggested by Janusz
> v14: drop multigpu_open_another and replace it with drm_open_driver_another
> in igt_multigpu, add missing igt_require_gem() in gem_exec_gttfill (Janusz)
>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
>
> Dominik Karol Piątkowski (3):
> lib/igt_device_scan: Introduce filtering out non-PCI devices
> lib/drmtest: Introduced drm_open_driver_another
> lib/igt_multigpu: Introduce library for multi-GPU scenarios
>
> Kamil Konieczny (2):
> tests/intel/xe_exec_basic: add multigpu subtests
> tests/intel/gem_exec_gttfill: simplify multiGPU subtest
>
> lib/drmtest.c | 109 ++++++++++++++++++++++-----------
> lib/drmtest.h | 2 +
> lib/igt_device_scan.c | 23 +++++++
> lib/igt_device_scan.h | 2 +
> lib/igt_multigpu.c | 88 ++++++++++++++++++++++++++
> lib/igt_multigpu.h | 36 +++++++++++
> lib/meson.build | 1 +
> tests/intel/gem_exec_gttfill.c | 14 ++---
> tests/intel/xe_exec_basic.c | 36 +++++++++++
> 9 files changed, 266 insertions(+), 45 deletions(-)
> create mode 100644 lib/igt_multigpu.c
> create mode 100644 lib/igt_multigpu.h
>
>
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Fi.CI.IGT: failure for introduce Xe multigpu and other multi-GPU helpers (rev14)
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
` (7 preceding siblings ...)
2024-03-20 19:47 ` [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Janusz Krzysztofik
@ 2024-03-21 7:46 ` Patchwork
2024-03-21 12:49 ` Kamil Konieczny
2024-03-25 8:28 ` ✓ Fi.CI.IGT: success " Patchwork
9 siblings, 1 reply; 19+ messages in thread
From: Patchwork @ 2024-03-21 7:46 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 98326 bytes --]
== Series Details ==
Series: introduce Xe multigpu and other multi-GPU helpers (rev14)
URL : https://patchwork.freedesktop.org/series/129101/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14457_full -> IGTPW_10866_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10866_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10866_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_10866/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10866_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_create@create-clear@smem0:
- shard-dg1: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@gem_create@create-clear@smem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@gem_create@create-clear@smem0.html
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-snb: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1:
- shard-mtlp: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][7] +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html
#### Warnings ####
* igt@gem_eio@kms:
- shard-dg1: [FAIL][8] ([i915#5784]) -> [INCOMPLETE][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@gem_eio@kms.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@gem_eio@kms.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-mtlp: [SKIP][10] ([i915#8814]) -> [ABORT][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
Known issues
------------
Here are the changes found in IGTPW_10866_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#9318])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#7701])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +20 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@drm_fdinfo@busy-idle@vcs1:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#8414]) +6 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@drm_fdinfo@busy-idle@vcs1.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][16] ([i915#7742])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8414]) +6 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#3281]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#3936])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#3936])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-13/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3936])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#9323]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#7697])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#7697])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8562])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@gem_ctx_persistence@hang.html
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][30] ([i915#1099]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][32] -> [FAIL][33] ([i915#5784])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@gem_eio@reset-stress.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][34] ([i915#8898])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb7/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4812]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4771])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4036])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#4525])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#6334])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][41] ([i915#9606]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@gem_exec_capture@many-4k-incremental.html
- shard-tglu: NOTRUN -> [FAIL][42] ([i915#9606])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][44] -> [FAIL][45] ([i915#2842])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][46] ([i915#2842])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +10 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@reorder-wide:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#7276])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][54] ([i915#7975] / [i915#8213])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-copy:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random@lmem0:
- shard-dg2: [PASS][59] -> [FAIL][60] ([i915#10378])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk9/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][64] -> [TIMEOUT][65] ([i915#5493])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][66] ([i915#10378])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#8289])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-read:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +11 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@gem_mmap_gtt@basic-read.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4077]) +9 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4077]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_wc@bad-object:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@read:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4083]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_mmap_wc@read.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@gem_pread@bench.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][75] ([i915#2658])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk5/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@gem_pread@snoop.html
* igt@gem_pread@uncached:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@gem_pread@uncached.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#4270])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4270]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190] / [i915#8428]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8428]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][89] ([i915#3323])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@secure-batches:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-5/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-snb: NOTRUN -> [SKIP][99] ([i915#6227])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb4/igt@i915_module_load@load.html
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#6227])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#6227])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][102] -> [INCOMPLETE][103] ([i915#9849])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][104] ([i915#10131] / [i915#9820])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6412])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#7091])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#8399])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#6590])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6590]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#6621])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#8925])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#4387])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#4387])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][114] -> [FAIL][115] ([i915#10031])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#7707])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#5190])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4212]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#8709]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#8709]) +11 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#9531])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][123] ([i915#1769])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#5286]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][128] -> [FAIL][129] ([i915#5138])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#3638]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][132] -> [FAIL][133] ([i915#3743])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5190]) +12 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_joiner@2x-modeset:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#2705])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_big_joiner@2x-modeset.html
* igt@kms_big_joiner@basic:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#2705])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_big_joiner@basic.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#10434]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +63 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +19 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#10278])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6095]) +43 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][143] +286 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307]) +169 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#6095]) +73 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#10278])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3742])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3742])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#4087]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][150] +15 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#7828]) +9 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#7828]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#7828]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#7828]) +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#7118] / [i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#9424]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#9424]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#9424])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#7116] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][162] ([i915#1339])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#3359]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3359]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#3359])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3359]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3359]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8814])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8814]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#3555]) +5 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#5354]) +33 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#9809]) +5 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][174] +28 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][175] ([i915#2346])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#4103])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#9833])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#9723])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#9227])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#9723])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#8588])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3804])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3804])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#8812])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#3840])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3840] / [i915#9053])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#3469])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#1839]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-4/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#1839]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#1839])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#658])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#658])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#8381]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#3966]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3637]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3637]) +8 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1:
- shard-snb: [PASS][200] -> [FAIL][201] ([i915#2122]) +2 other tests fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb4/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb7/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#8381])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8381])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#2672]) +5 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#2672]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2672]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#2672] / [i915#3555]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
- shard-dg2: NOTRUN -> [FAIL][210] ([i915#6880])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#1825]) +28 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#8708]) +24 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#1825]) +25 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#5439])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8708]) +11 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3458]) +14 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][217] +34 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-snb: NOTRUN -> [SKIP][218] +212 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#9766])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#8708]) +16 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3023]) +19 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#3458]) +18 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#6118])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-8/igt@kms_hdr@static-toggle-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][229] ([i915#4573]) +1 other test fail
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#3555]) +4 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8806])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8806])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][233] ([i915#8292])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: [PASS][234] -> [FAIL][235] ([i915#8292])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9423]) +7 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#5176]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#9423]) +15 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#5176] / [i915#9423]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#9423]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#9423]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#5235]) +7 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#5235] / [i915#9423]) +15 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#5235]) +5 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5235]) +6 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#5235])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#5354])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#10139])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#9519])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#9519])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][252] -> [SKIP][253] ([i915#9519]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#9519])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#6524])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#6524] / [i915#6805])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#6524]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][258] +25 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#9808]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][260] +32 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#9683])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#9683])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#4348])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#9732]) +18 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#9688]) +13 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9673] / [i915#9732]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#9732]) +8 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#9732]) +23 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#9732]) +15 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#9685])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#9685])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg2: [PASS][272] -> [INCOMPLETE][273] ([i915#9569])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#4235]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#5289]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#4235] / [i915#5190]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#4235]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#5030]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#5030] / [i915#9041])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#8623]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#8623])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8808])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#9906])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-10/igt@kms_vrr@max-min.html
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#9906])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#2437])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#2437])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_writeback@writeback-check-output.html
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#2437])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][290] ([i915#2437])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk9/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#2437] / [i915#9412])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#2437])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#2437] / [i915#9412])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#2436] / [i915#7387])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#7387])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#2434])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][297] ([i915#4349]) +3 other tests fail
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#8850])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@perf_pmu@cpu-hotplug.html
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#8850])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#8516])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#3708] / [i915#4077])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3708] / [i915#4077])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#3291] / [i915#3708])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#3708])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#3708])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#9917])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#9917])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][308] ([i915#9779])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#2575]) +8 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_cl@bad-extension:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#2575]) +7 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@v3d/v3d_submit_cl@bad-extension.html
* igt@v3d/v3d_submit_cl@multisync-out-syncs:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#2575]) +15 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@v3d/v3d_submit_cl@multisync-out-syncs.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#7711]) +5 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_perfmon@create-two-perfmon:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#7711]) +5 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@vc4/vc4_perfmon@create-two-perfmon.html
* igt@vc4/vc4_purgeable_bo@free-purged-bo:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#2575]) +7 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#7711]) +6 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@vc4/vc4_tiling@set-bad-modifier.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#7711]) +9 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@vc4/vc4_wait_bo@bad-bo.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-tglu: [INCOMPLETE][317] -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-4/igt@gem_eio@kms.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-6/igt@gem_eio@kms.html
- shard-dg2: [INCOMPLETE][319] ([i915#1982]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-6/igt@gem_eio@kms.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][321] ([i915#2846]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][323] ([i915#2842]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-5/igt@gem_exec_fair@basic-pace@bcs0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][325] ([i915#2876]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg1: [SKIP][327] ([i915#7697]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-16/igt@gem_exec_gttfill@multigpu-basic.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: [SKIP][329] ([i915#7697]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-2/igt@gem_exec_gttfill@multigpu-basic.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@gem_exec_gttfill@multigpu-basic.html
- shard-glk: [SKIP][331] -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-glk1/igt@gem_exec_gttfill@multigpu-basic.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk8/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: [FAIL][333] ([i915#10378]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][335] ([i915#3743]) -> [PASS][336] +5 other tests pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1:
- shard-mtlp: [DMESG-WARN][337] ([i915#9157]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: [SKIP][339] ([i915#1257]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-8/igt@kms_dp_aux_dev.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [ABORT][341] -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-vga1-hdmi-a1.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb1/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a4:
- shard-dg1: [INCOMPLETE][343] -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a4.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a4.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: [INCOMPLETE][345] ([i915#4839]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [FAIL][347] ([i915#6880]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-snb: [SKIP][349] -> [PASS][350] +3 other tests pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [SKIP][351] ([i915#433]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][353] ([i915#4281]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [SKIP][355] ([i915#9519]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][357] ([i915#9519]) -> [PASS][358] +1 other test pass
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@perf_pmu@enable-race@ccs1:
- shard-dg2: [INCOMPLETE][359] ([i915#9853]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-2/igt@perf_pmu@enable-race@ccs1.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@perf_pmu@enable-race@ccs1.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [INCOMPLETE][361] ([i915#9849]) -> [INCOMPLETE][362] ([i915#9820] / [i915#9849])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-tglu: [FAIL][363] ([i915#3591]) -> [WARN][364] ([i915#2681])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: [SKIP][365] ([i915#3299] / [i915#4423]) -> [SKIP][366] ([i915#3299])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][367] ([i915#4423] / [i915#9519]) -> [SKIP][368] ([i915#9519])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2: [SKIP][369] ([i915#9732]) -> [SKIP][370] ([i915#9673] / [i915#9732]) +3 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-5/igt@kms_psr@fbc-pr-dpms.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-dg2: [SKIP][371] ([i915#9673] / [i915#9732]) -> [SKIP][372] ([i915#9732]) +8 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-11/igt@kms_psr@psr-primary-mmap-cpu.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_psr@psr-primary-mmap-cpu.html
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9041]: https://gitlab.freedesktop.org/drm/intel/issues/9041
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
[i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766
[i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7770 -> IGTPW_10866
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14457: cfe25dc9ae2e1add3f2605831bf6d8bea481164b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10866: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
IGT_7770: fef0422fd296f7c65724315f2a455ffb6959fb0d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
[-- Attachment #2: Type: text/html, Size: 119926 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: ✗ Fi.CI.IGT: failure for introduce Xe multigpu and other multi-GPU helpers (rev14)
2024-03-21 7:46 ` ✗ Fi.CI.IGT: failure for introduce Xe multigpu and other multi-GPU helpers (rev14) Patchwork
@ 2024-03-21 12:49 ` Kamil Konieczny
2024-03-25 12:52 ` Illipilli, TejasreeX
0 siblings, 1 reply; 19+ messages in thread
From: Kamil Konieczny @ 2024-03-21 12:49 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra, lgci.bug.filing, TejasreeX Illipilli
Hi igt-dev,
On 2024-03-21 at 07:46:40 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: introduce Xe multigpu and other multi-GPU helpers (rev14)
> URL : https://patchwork.freedesktop.org/series/129101/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_14457_full -> IGTPW_10866_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_10866_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_10866_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_10866/index.html
>
> Participating hosts (10 -> 9)
> ------------------------------
>
> Missing (1): shard-snb-0
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_10866_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_create@create-clear@smem0:
> - shard-dg1: [PASS][1] -> [INCOMPLETE][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@gem_create@create-clear@smem0.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@gem_create@create-clear@smem0.html
>
> * igt@i915_pipe_stress@stress-xrgb8888-untiled:
> - shard-snb: [PASS][3] -> [FAIL][4]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
>
> * igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1:
> - shard-mtlp: [PASS][5] -> [FAIL][6]
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1.html
>
> * igt@kms_setmode@basic@pipe-a-hdmi-a-4:
> - shard-dg1: NOTRUN -> [FAIL][7] +1 other test fail
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html
>
>
> #### Warnings ####
>
> * igt@gem_eio@kms:
> - shard-dg1: [FAIL][8] ([i915#5784]) -> [INCOMPLETE][9]
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@gem_eio@kms.html
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@gem_eio@kms.html
>
> * igt@kms_cursor_crc@cursor-onscreen-128x42:
> - shard-mtlp: [SKIP][10] ([i915#8814]) -> [ABORT][11]
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
>
These are unrelated to changes, please respin.
Regards,
Kamil
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_10866_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@debugfs_test@basic-hwmon:
> - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#9318])
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@debugfs_test@basic-hwmon.html
>
...cut...
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7770 -> IGTPW_10866
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_14457: cfe25dc9ae2e1add3f2605831bf6d8bea481164b @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_10866: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
> IGT_7770: fef0422fd296f7c65724315f2a455ffb6959fb0d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: ✗ Fi.CI.IGT: failure for introduce Xe multigpu and other multi-GPU helpers (rev14)
2024-03-21 12:49 ` Kamil Konieczny
@ 2024-03-25 12:52 ` Illipilli, TejasreeX
0 siblings, 0 replies; 19+ messages in thread
From: Illipilli, TejasreeX @ 2024-03-25 12:52 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org
Cc: I915-ci-infra@lists.freedesktop.org, LGCI Bug Filing
Hi,
https://patchwork.freedesktop.org/series/129101/ - Re-reported.
Thanks,
Tejasree
-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Sent: Thursday, March 21, 2024 6:19 PM
To: igt-dev@lists.freedesktop.org
Cc: I915-ci-infra@lists.freedesktop.org; LGCI Bug Filing <lgci.bug.filing@intel.com>; Illipilli, TejasreeX <tejasreex.illipilli@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for introduce Xe multigpu and other multi-GPU helpers (rev14)
Hi igt-dev,
On 2024-03-21 at 07:46:40 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: introduce Xe multigpu and other multi-GPU helpers (rev14)
> URL : https://patchwork.freedesktop.org/series/129101/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_14457_full -> IGTPW_10866_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_10866_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_10866_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_10866/index.html
>
> Participating hosts (10 -> 9)
> ------------------------------
>
> Missing (1): shard-snb-0
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_10866_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_create@create-clear@smem0:
> - shard-dg1: [PASS][1] -> [INCOMPLETE][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@gem_create@create-clear@smem0.html
> [2]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@
> gem_create@create-clear@smem0.html
>
> * igt@i915_pipe_stress@stress-xrgb8888-untiled:
> - shard-snb: [PASS][3] -> [FAIL][4]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
> [4]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb6/igt@i9
> 15_pipe_stress@stress-xrgb8888-untiled.html
>
> * igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1:
> - shard-mtlp: [PASS][5] -> [FAIL][6]
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1.html
> [6]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@
> kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1.html
>
> * igt@kms_setmode@basic@pipe-a-hdmi-a-4:
> - shard-dg1: NOTRUN -> [FAIL][7] +1 other test fail
> [7]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@
> kms_setmode@basic@pipe-a-hdmi-a-4.html
>
>
> #### Warnings ####
>
> * igt@gem_eio@kms:
> - shard-dg1: [FAIL][8] ([i915#5784]) -> [INCOMPLETE][9]
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@gem_eio@kms.html
> [9]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@
> gem_eio@kms.html
>
> * igt@kms_cursor_crc@cursor-onscreen-128x42:
> - shard-mtlp: [SKIP][10] ([i915#8814]) -> [ABORT][11]
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
> [11]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-8/igt@
> kms_cursor_crc@cursor-onscreen-128x42.html
>
These are unrelated to changes, please respin.
Regards,
Kamil
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_10866_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@debugfs_test@basic-hwmon:
> - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#9318])
> [12]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@
> debugfs_test@basic-hwmon.html
>
...cut...
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7770 -> IGTPW_10866
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_14457: cfe25dc9ae2e1add3f2605831bf6d8bea481164b @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_10866: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
> IGT_7770: fef0422fd296f7c65724315f2a455ffb6959fb0d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Fi.CI.IGT: success for introduce Xe multigpu and other multi-GPU helpers (rev14)
2024-03-20 15:56 [PATCH i-g-t v14 0/5] introduce Xe multigpu and other multi-GPU helpers Kamil Konieczny
` (8 preceding siblings ...)
2024-03-21 7:46 ` ✗ Fi.CI.IGT: failure for introduce Xe multigpu and other multi-GPU helpers (rev14) Patchwork
@ 2024-03-25 8:28 ` Patchwork
9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-03-25 8:28 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 98797 bytes --]
== Series Details ==
Series: introduce Xe multigpu and other multi-GPU helpers (rev14)
URL : https://patchwork.freedesktop.org/series/129101/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14457_full -> IGTPW_10866_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_10866_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10866_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_10866/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10866_full:
### IGT changes ###
#### Warnings ####
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-mtlp: [SKIP][1] ([i915#8814]) -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
Known issues
------------
Here are the changes found in IGTPW_10866_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#7701])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +20 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@drm_fdinfo@busy-idle@vcs1:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +6 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@drm_fdinfo@busy-idle@vcs1.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][7] ([i915#7742])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +6 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3281]) +5 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#3936])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#3936])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-13/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3936])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-clear@smem0:
- shard-dg1: [PASS][18] -> [INCOMPLETE][19] ([i915#10497])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@gem_create@create-clear@smem0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@gem_create@create-clear@smem0.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@gem_ctx_persistence@hang.html
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@gem_eio@reset-stress.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][27] ([i915#8898])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb7/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4036])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#6334])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][34] ([i915#9606]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@gem_exec_capture@many-4k-incremental.html
- shard-tglu: NOTRUN -> [FAIL][35] ([i915#9606])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][37] -> [FAIL][38] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][39] ([i915#2842])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +5 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +10 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@reorder-wide:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#7276])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][47] ([i915#7975] / [i915#8213])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-copy:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4565]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random@lmem0:
- shard-dg2: [PASS][52] -> [FAIL][53] ([i915#10378])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk9/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][57] -> [TIMEOUT][58] ([i915#5493])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][59] ([i915#10378])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#8289])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-read:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4077]) +11 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@gem_mmap_gtt@basic-read.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +9 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_wc@bad-object:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@read:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_mmap_wc@read.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@gem_pread@bench.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][68] ([i915#2658])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk5/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@gem_pread@snoop.html
* igt@gem_pread@uncached:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@gem_pread@uncached.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#4270])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4270]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +7 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][82] ([i915#3323])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@secure-batches:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-5/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-snb: NOTRUN -> [SKIP][92] ([i915#6227])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb4/igt@i915_module_load@load.html
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#6227])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#6227])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][95] -> [INCOMPLETE][96] ([i915#9849])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][97] ([i915#10131] / [i915#9820])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6412])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-snb: [PASS][99] -> [FAIL][100] ([i915#10562])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#7091])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#8399])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#6590])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6590]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#6621])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#8925])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#4387])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#4387])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][109] -> [FAIL][110] ([i915#10031])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#7707])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#5190])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4212]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#8709]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#8709]) +11 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#9531])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][118] ([i915#1769])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][123] -> [FAIL][124] ([i915#5138])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][127] -> [FAIL][128] ([i915#3743])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +12 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_joiner@2x-modeset:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#2705])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_big_joiner@2x-modeset.html
* igt@kms_big_joiner@basic:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#2705])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_big_joiner@basic.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#10434]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#6095]) +63 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#6095]) +19 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#10278])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +43 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][138] +286 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307]) +169 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#6095]) +73 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#10278])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3742])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#3742])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4087]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][145] +15 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#7828]) +9 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#7828]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#7828]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#7828]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#7118] / [i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#9424]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#9424]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116] / [i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][157] ([i915#1339])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3359]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3359]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1:
- shard-mtlp: [PASS][160] -> [FAIL][161] ([i915#10061])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-edp-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3359]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#3359]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8814])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8814]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#5354]) +33 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#9809]) +5 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][171] +28 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][172] ([i915#2346])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#4103])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#9833])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#9723])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#9227])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#9723])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8588])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3804])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3804])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#8812])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#3840])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#3840] / [i915#9053])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#3469])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#1839]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-4/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#1839]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#1839])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#658])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#658])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#9934]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#8381]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#3637] / [i915#3966]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#3637]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3637]) +8 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1:
- shard-snb: [PASS][197] -> [FAIL][198] ([i915#2122]) +2 other tests fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb4/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb7/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#8381])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8381])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-3/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#2672]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#2672]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
- shard-dg2: NOTRUN -> [FAIL][207] ([i915#6880])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#1825]) +28 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8708]) +24 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#1825]) +25 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#5439])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#8708]) +11 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3458]) +14 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][214] +34 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-snb: NOTRUN -> [SKIP][215] +212 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#9766])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#8708]) +16 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3023]) +19 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3458]) +18 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#6118])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-8/igt@kms_hdr@static-toggle-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][226] ([i915#4573]) +1 other test fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8806])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8806])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][230] ([i915#8292])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: [PASS][231] -> [FAIL][232] ([i915#8292])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9423]) +7 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#5176]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#9423]) +15 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#5176] / [i915#9423]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#9423]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#9423]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#5235]) +7 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#5235] / [i915#9423]) +15 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#5235]) +5 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#5235]) +6 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#5235])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#5354])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#10139])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#9519])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9519])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][249] -> [SKIP][250] ([i915#9519]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9519])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#6524])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#6524] / [i915#6805])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#6524]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][255] +25 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#9808]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][257] +32 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#9683])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#9683])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#4348])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#9732]) +18 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#9688]) +13 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-5/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#9673] / [i915#9732]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#9732]) +8 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#9732]) +23 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#9732]) +15 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#9685])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#9685])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg2: [PASS][269] -> [INCOMPLETE][270] ([i915#9569])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#4235]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#5289]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#4235] / [i915#5190]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#4235]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#3555]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#5030]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#5030] / [i915#9041])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][278] ([i915#5465]) +1 other test fail
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-15/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#8623]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#8623])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#3555])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8808])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#9906])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-10/igt@kms_vrr@max-min.html
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#9906])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#2437])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#2437])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-1/igt@kms_writeback@writeback-check-output.html
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#2437])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-2/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][288] ([i915#2437])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk9/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#2437] / [i915#9412])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#2437])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#2437] / [i915#9412])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#2436] / [i915#7387])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#7387])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#2434])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][295] ([i915#4349]) +3 other tests fail
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#8850])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@perf_pmu@cpu-hotplug.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#8850])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#8516])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#3708] / [i915#4077])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-6/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#3708] / [i915#4077])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#3291] / [i915#3708])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#3708])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#3708])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#9917])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#9917])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][306] ([i915#9779])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#2575]) +8 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_cl@bad-extension:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#2575]) +7 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@v3d/v3d_submit_cl@bad-extension.html
* igt@v3d/v3d_submit_cl@multisync-out-syncs:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#2575]) +15 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@v3d/v3d_submit_cl@multisync-out-syncs.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#7711]) +5 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_perfmon@create-two-perfmon:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#7711]) +5 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@vc4/vc4_perfmon@create-two-perfmon.html
* igt@vc4/vc4_purgeable_bo@free-purged-bo:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#2575]) +7 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#7711]) +6 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@vc4/vc4_tiling@set-bad-modifier.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#7711]) +9 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@vc4/vc4_wait_bo@bad-bo.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-tglu: [INCOMPLETE][315] ([i915#10513]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-4/igt@gem_eio@kms.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-6/igt@gem_eio@kms.html
- shard-dg2: [INCOMPLETE][317] ([i915#1982]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-6/igt@gem_eio@kms.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][319] ([i915#2846]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][321] ([i915#2842]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-5/igt@gem_exec_fair@basic-pace@bcs0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][323] ([i915#2876]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg1: [SKIP][325] ([i915#7697]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-16/igt@gem_exec_gttfill@multigpu-basic.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: [SKIP][327] ([i915#7697]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-2/igt@gem_exec_gttfill@multigpu-basic.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-9/igt@gem_exec_gttfill@multigpu-basic.html
- shard-glk: [SKIP][329] -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-glk1/igt@gem_exec_gttfill@multigpu-basic.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-glk8/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: [FAIL][331] ([i915#10378]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][333] ([i915#3743]) -> [PASS][334] +5 other tests pass
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1:
- shard-mtlp: [DMESG-WARN][335] ([i915#9157]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: [SKIP][337] ([i915#1257]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-8/igt@kms_dp_aux_dev.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [ABORT][339] -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-vga1-hdmi-a1.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb1/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a4:
- shard-dg1: [INCOMPLETE][341] ([i915#6113]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a4.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-17/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a4.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: [INCOMPLETE][343] ([i915#4839]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [FAIL][345] ([i915#6880]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-snb: [SKIP][347] -> [PASS][348] +3 other tests pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [SKIP][349] ([i915#433]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][351] ([i915#4281]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [SKIP][353] ([i915#9519]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][355] ([i915#9519]) -> [PASS][356] +1 other test pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@perf_pmu@enable-race@ccs1:
- shard-dg2: [INCOMPLETE][357] ([i915#9853]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-2/igt@perf_pmu@enable-race@ccs1.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@perf_pmu@enable-race@ccs1.html
#### Warnings ####
* igt@gem_eio@kms:
- shard-dg1: [FAIL][359] ([i915#5784]) -> [INCOMPLETE][360] ([i915#10513])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@gem_eio@kms.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-18/igt@gem_eio@kms.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [INCOMPLETE][361] ([i915#9849]) -> [INCOMPLETE][362] ([i915#9820] / [i915#9849])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-tglu: [FAIL][363] ([i915#3591]) -> [WARN][364] ([i915#2681])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: [SKIP][365] ([i915#3299] / [i915#4423]) -> [SKIP][366] ([i915#3299])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][367] ([i915#4423] / [i915#9519]) -> [SKIP][368] ([i915#9519])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2: [SKIP][369] ([i915#9732]) -> [SKIP][370] ([i915#9673] / [i915#9732]) +3 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-5/igt@kms_psr@fbc-pr-dpms.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-11/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-dg2: [SKIP][371] ([i915#9673] / [i915#9732]) -> [SKIP][372] ([i915#9732]) +8 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14457/shard-dg2-11/igt@kms_psr@psr-primary-mmap-cpu.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/shard-dg2-6/igt@kms_psr@psr-primary-mmap-cpu.html
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10061]: https://gitlab.freedesktop.org/drm/intel/issues/10061
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434
[i915#10497]: https://gitlab.freedesktop.org/drm/intel/issues/10497
[i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513
[i915#10562]: https://gitlab.freedesktop.org/drm/intel/issues/10562
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/intel/issues/6113
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9041]: https://gitlab.freedesktop.org/drm/intel/issues/9041
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
[i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766
[i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7770 -> IGTPW_10866
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14457: cfe25dc9ae2e1add3f2605831bf6d8bea481164b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10866: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
IGT_7770: fef0422fd296f7c65724315f2a455ffb6959fb0d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10866/index.html
[-- Attachment #2: Type: text/html, Size: 120426 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread