* [PATCH i-g-t] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
@ 2024-03-13 19:55 Rodrigo Vivi
2024-03-13 20:07 ` Lucas De Marchi
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Rodrigo Vivi @ 2024-03-13 19:55 UTC (permalink / raw)
To: igt-dev; +Cc: intel-xe, Rodrigo Vivi, Himal Prasad Ghimiray
Let's inject a gt_reset failure that will put Xe device in the
new wedged state, then we confirm the IOCTL is blocked and we
reload the driver to get back to a clean state for other test
execution, since wedged state in Xe is a final state that can only
be cleared with a module reload.
This new test case is entirely based on xe_uevent provided by
Himal.
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
tests/intel/xe_wedged.c | 91 +++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 92 insertions(+)
create mode 100644 tests/intel/xe_wedged.c
diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c
new file mode 100644
index 000000000..f767e2511
--- /dev/null
+++ b/tests/intel/xe_wedged.c
@@ -0,0 +1,91 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: cause fake gt reset failure which put Xe device in wedged state
+ * Category: Software building block
+ * Sub-category: driver
+ * Functionality: wedged
+ * Test category: functionality test
+ */
+
+#include "igt.h"
+#include "igt_kmod.h"
+
+#include "xe/xe_ioctl.h"
+
+static void force_wedged(int fd)
+{
+ igt_debugfs_write(fd, "fail_gt_reset/probability", "100");
+ igt_debugfs_write(fd, "fail_gt_reset/times", "2");
+
+ xe_force_gt_reset(fd, 0);
+ sleep(1);
+}
+
+static int reload_xe(int fd)
+{
+ int error;
+
+ drm_close_driver(fd);
+ igt_xe_driver_unload();
+
+ error = igt_xe_driver_load(NULL);
+
+ igt_assert_eq(error, 0);
+
+ /* driver is ready, check if it's bound */
+ fd = __drm_open_driver(DRIVER_XE);
+ igt_fail_on_f(fd < 0, "Cannot open the xe DRM driver while reloading xe after wedged\n");
+ return fd;
+}
+
+static int simple_ioctl(int fd)
+{
+ int ret;
+
+ struct drm_xe_vm_create create = {
+ .extensions = 0,
+ .flags = 0,
+ };
+
+ ret = igt_ioctl(fd, DRM_IOCTL_XE_VM_CREATE, &create);
+
+ if (ret == 0)
+ xe_vm_destroy(fd, create.vm_id);
+
+ return ret;
+}
+
+/**
+ * SUBTEST: basic-wedged
+ * Description: Force Xe device wedged after injecting a failure in GT reset
+ */
+igt_main
+{
+ int fd;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_XE);
+ igt_require(igt_debugfs_exists(fd, "fail_gt_reset/probability",
+ O_RDWR));
+ }
+
+ igt_subtest("basic-wedged") {
+ igt_assert_eq(simple_ioctl(fd), 0);
+ force_wedged(fd);
+ igt_assert_neq(simple_ioctl(fd), 0);
+ fd = reload_xe(fd);
+ igt_assert_eq(simple_ioctl(fd), 0);
+ }
+
+ igt_fixture {
+ if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) {
+ igt_debugfs_write(fd, "fail_gt_reset/probability", "0");
+ igt_debugfs_write(fd, "fail_gt_reset/times", "1");
+ }
+ drm_close_driver(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index a856510fc..e590d4348 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -312,6 +312,7 @@ intel_xe_progs = [
'xe_render_copy',
'xe_vm',
'xe_waitfence',
+ 'xe_wedged',
'xe_spin_batch',
'xe_sysfs_defaults',
'xe_sysfs_scheduler',
--
2.44.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
2024-03-13 19:55 [PATCH i-g-t] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi
@ 2024-03-13 20:07 ` Lucas De Marchi
2024-03-14 17:57 ` Rodrigo Vivi
2024-03-13 23:27 ` ✗ CI.xeBAT: failure for " Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Lucas De Marchi @ 2024-03-13 20:07 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: igt-dev, intel-xe, Himal Prasad Ghimiray
On Wed, Mar 13, 2024 at 03:55:28PM -0400, Rodrigo Vivi wrote:
>Let's inject a gt_reset failure that will put Xe device in the
>new wedged state, then we confirm the IOCTL is blocked and we
>reload the driver to get back to a clean state for other test
>execution, since wedged state in Xe is a final state that can only
>be cleared with a module reload.
>
>This new test case is entirely based on xe_uevent provided by
>Himal.
/me confused... I don't see any uevent handling here.
>
>Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>---
> tests/intel/xe_wedged.c | 91 +++++++++++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 92 insertions(+)
> create mode 100644 tests/intel/xe_wedged.c
>
>diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c
>new file mode 100644
>index 000000000..f767e2511
>--- /dev/null
>+++ b/tests/intel/xe_wedged.c
>@@ -0,0 +1,91 @@
>+// SPDX-License-Identifier: MIT
>+/*
>+ * Copyright © 2024 Intel Corporation
>+ */
>+
>+/**
>+ * TEST: cause fake gt reset failure which put Xe device in wedged state
>+ * Category: Software building block
>+ * Sub-category: driver
>+ * Functionality: wedged
>+ * Test category: functionality test
>+ */
>+
>+#include "igt.h"
>+#include "igt_kmod.h"
>+
>+#include "xe/xe_ioctl.h"
>+
>+static void force_wedged(int fd)
>+{
>+ igt_debugfs_write(fd, "fail_gt_reset/probability", "100");
>+ igt_debugfs_write(fd, "fail_gt_reset/times", "2");
>+
>+ xe_force_gt_reset(fd, 0);
humn... do we have to check the writes above did anything? I also don't
see the kernel side, but if it just resets normally, the test would
still pass afaics.
>+ sleep(1);
>+}
>+
>+static int reload_xe(int fd)
>+{
>+ int error;
>+
>+ drm_close_driver(fd);
>+ igt_xe_driver_unload();
what if we are running on e.g. MTL with a DG2 and want to debug one of
them? Rather than re-loading the module and possibly causing unrelated
issues (if e.g. module removal from the other card crashes), why not
just unbind the module from the card under test?
i.e. the equivalent in C of:
rebind() {
pci_slot=$1
echo -n "0000:$pci_slot" > /sys/bus/pci/drivers/$driver/unbind
echo -n "0000:$pci_slot" > /sys/bus/pci/drivers/$driver/bind
}
Lucas De Marchi
>+
>+ error = igt_xe_driver_load(NULL);
>+
>+ igt_assert_eq(error, 0);
>+
>+ /* driver is ready, check if it's bound */
>+ fd = __drm_open_driver(DRIVER_XE);
>+ igt_fail_on_f(fd < 0, "Cannot open the xe DRM driver while reloading xe after wedged\n");
>+ return fd;
>+}
>+
>+static int simple_ioctl(int fd)
>+{
>+ int ret;
>+
>+ struct drm_xe_vm_create create = {
>+ .extensions = 0,
>+ .flags = 0,
>+ };
>+
>+ ret = igt_ioctl(fd, DRM_IOCTL_XE_VM_CREATE, &create);
>+
>+ if (ret == 0)
>+ xe_vm_destroy(fd, create.vm_id);
>+
>+ return ret;
>+}
>+
>+/**
>+ * SUBTEST: basic-wedged
>+ * Description: Force Xe device wedged after injecting a failure in GT reset
>+ */
>+igt_main
>+{
>+ int fd;
>+
>+ igt_fixture {
>+ fd = drm_open_driver(DRIVER_XE);
>+ igt_require(igt_debugfs_exists(fd, "fail_gt_reset/probability",
>+ O_RDWR));
>+ }
>+
>+ igt_subtest("basic-wedged") {
>+ igt_assert_eq(simple_ioctl(fd), 0);
>+ force_wedged(fd);
>+ igt_assert_neq(simple_ioctl(fd), 0);
>+ fd = reload_xe(fd);
>+ igt_assert_eq(simple_ioctl(fd), 0);
>+ }
>+
>+ igt_fixture {
>+ if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) {
>+ igt_debugfs_write(fd, "fail_gt_reset/probability", "0");
>+ igt_debugfs_write(fd, "fail_gt_reset/times", "1");
>+ }
>+ drm_close_driver(fd);
>+ }
>+}
>diff --git a/tests/meson.build b/tests/meson.build
>index a856510fc..e590d4348 100644
>--- a/tests/meson.build
>+++ b/tests/meson.build
>@@ -312,6 +312,7 @@ intel_xe_progs = [
> 'xe_render_copy',
> 'xe_vm',
> 'xe_waitfence',
>+ 'xe_wedged',
> 'xe_spin_batch',
> 'xe_sysfs_defaults',
> 'xe_sysfs_scheduler',
>--
>2.44.0
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ CI.xeBAT: failure for tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
2024-03-13 19:55 [PATCH i-g-t] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi
2024-03-13 20:07 ` Lucas De Marchi
@ 2024-03-13 23:27 ` Patchwork
2024-03-13 23:45 ` ✓ Fi.CI.BAT: success " Patchwork
2024-03-14 8:01 ` ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-03-13 23:27 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3122 bytes --]
== Series Details ==
Series: tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
URL : https://patchwork.freedesktop.org/series/131098/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7760_BAT -> XEIGTPW_10829_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10829_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10829_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10829_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_evict@evict-cm-threads-small:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7760/bat-dg2-oem2/igt@xe_evict@evict-cm-threads-small.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10829/bat-dg2-oem2/igt@xe_evict@evict-cm-threads-small.html
Known issues
------------
Here are the changes found in XEIGTPW_10829_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-7: [SKIP][3] -> [PASS][4] +2 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7760/bat-adlp-7/igt@xe_live_ktest@xe_migrate.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10829/bat-adlp-7/igt@xe_live_ktest@xe_migrate.html
- bat-pvc-2: [SKIP][5] -> [PASS][6] +2 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7760/bat-pvc-2/igt@xe_live_ktest@xe_migrate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10829/bat-pvc-2/igt@xe_live_ktest@xe_migrate.html
- bat-dg2-oem2: [SKIP][7] -> [PASS][8] +2 other tests pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7760/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10829/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html
- bat-atsm-2: [SKIP][9] -> [PASS][10] +2 other tests pass
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7760/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10829/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html
Build changes
-------------
* IGT: IGT_7760 -> IGTPW_10829
* Linux: xe-936-ca050304d54e3a0f96bf148053f738d6b62de43a -> xe-937-790a1d4e546a1d7f1cc5316c77f21379a4083250
IGTPW_10829: 10829
IGT_7760: 7760
xe-936-ca050304d54e3a0f96bf148053f738d6b62de43a: ca050304d54e3a0f96bf148053f738d6b62de43a
xe-937-790a1d4e546a1d7f1cc5316c77f21379a4083250: 790a1d4e546a1d7f1cc5316c77f21379a4083250
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10829/index.html
[-- Attachment #2: Type: text/html, Size: 3768 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
2024-03-13 19:55 [PATCH i-g-t] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi
2024-03-13 20:07 ` Lucas De Marchi
2024-03-13 23:27 ` ✗ CI.xeBAT: failure for " Patchwork
@ 2024-03-13 23:45 ` Patchwork
2024-03-14 8:01 ` ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-03-13 23:45 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9168 bytes --]
== Series Details ==
Series: tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
URL : https://patchwork.freedesktop.org/series/131098/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14428 -> IGTPW_10829
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/index.html
Participating hosts (35 -> 34)
------------------------------
Additional (2): fi-glk-j4005 bat-mtlp-8
Missing (3): bat-arls-2 bat-jsl-1 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10829:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_pm_rpm@module-reload:
- {bat-mtlp-9}: [PASS][1] -> [WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
Known issues
------------
Here are the changes found in IGTPW_10829 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-cfl-8109u: NOTRUN -> [SKIP][4] ([i915#2190])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html
- fi-glk-j4005: NOTRUN -> [SKIP][5] ([i915#2190])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-glk-j4005: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/fi-glk-j4005/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-14: [PASS][7] -> [FAIL][8] ([i915#10378])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/bat-dg2-14/igt@gem_lmem_swapping@basic@lmem0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-dg2-14/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- fi-cfl-8109u: NOTRUN -> [SKIP][9] ([i915#4613]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4613]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#4083])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#4077]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#4079]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#6621])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#5190])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#4212]) +8 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-glk-j4005: NOTRUN -> [SKIP][17] +10 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#4213]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#3840] / [i915#9159])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-adlm-1: [PASS][20] -> [ABORT][21] ([i915#9991])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/bat-adlm-1/igt@kms_force_connector_basic@force-connector-state.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-adlm-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][22]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][23] ([i915#5274])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- fi-cfl-8109u: NOTRUN -> [SKIP][24] +11 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-mtlp-8: NOTRUN -> [SKIP][25] ([i915#4077] / [i915#9688])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#8809])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][27] ([i915#3708] / [i915#4077]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][28] ([i915#3708]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@kms_pm_rpm@basic-rte:
- {bat-mtlp-9}: [DMESG-WARN][29] -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/bat-mtlp-9/igt@kms_pm_rpm@basic-rte.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/bat-mtlp-9/igt@kms_pm_rpm@basic-rte.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9991]: https://gitlab.freedesktop.org/drm/intel/issues/9991
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7760 -> IGTPW_10829
CI-20190529: 20190529
CI_DRM_14428: 790a1d4e546a1d7f1cc5316c77f21379a4083250 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10829: 10829
IGT_7760: 7760
Testlist changes
----------------
+igt@xe_wedged@basic-wedged
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/index.html
[-- Attachment #2: Type: text/html, Size: 10860 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
2024-03-13 19:55 [PATCH i-g-t] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi
` (2 preceding siblings ...)
2024-03-13 23:45 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-03-14 8:01 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-03-14 8:01 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 83806 bytes --]
== Series Details ==
Series: tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
URL : https://patchwork.freedesktop.org/series/131098/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14428_full -> IGTPW_10829_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10829_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10829_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_10829/index.html
Participating hosts (10 -> 8)
------------------------------
Missing (2): shard-snb-0 shard-dg2-4
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10829_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-snb4/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-snb7/igt@core_hotunplug@unbind-rebind.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
Known issues
------------
Here are the changes found in IGTPW_10829_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#7701])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-12/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#7701])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +5 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-5/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +9 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-18/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [PASS][9] -> [FAIL][10] ([i915#7742]) +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#7697]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#3936])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@gem_busy@semaphore.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_persistence@engines-hostile:
- shard-snb: NOTRUN -> [SKIP][15] ([i915#1099])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-snb1/igt@gem_ctx_persistence@engines-hostile.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-3/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][18] -> [FAIL][19] ([i915#5784])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg1-19/igt@gem_eio@unwedge-stress.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#4812]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#4771])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][24] ([i915#9606])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][25] -> [FAIL][26] ([i915#2846])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@gem_exec_fair@basic-pace-share.html
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-6/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [PASS][29] -> [FAIL][30] ([i915#2842])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][31] ([i915#2842]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-8/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-13/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#7697])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#7697])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-18/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#5107])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-8/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +6 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-19/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +10 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-write-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@gem_exec_reloc@basic-write-wc-active.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4537])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-19/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-8/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][46] ([i915#2190])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613] / [i915#7582])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-9/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-multi@lmem0:
- shard-dg1: NOTRUN -> [FAIL][49] ([i915#10378])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-18/igt@gem_lmem_swapping@heavy-multi@lmem0.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][51] ([i915#10378]) +1 other test fail
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk7/igt@gem_lmem_swapping@massive-random.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#284])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@gem_media_vme.html
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#284])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-9/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-6/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-read:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +10 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@gem_mmap_gtt@basic-read.html
* igt@gem_mmap_gtt@basic-small-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@gem_mmap_gtt@basic-small-copy-xy.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-2/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-19/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html
- shard-glk: NOTRUN -> [WARN][62] ([i915#2658])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4079])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-5/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4885])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-11/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4880])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4958])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-5/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-2/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#2856])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-5/igt@gen9_exec_parse@bb-large.html
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-16/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][83] ([i915#6227])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk6/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#6227])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][85] -> [ABORT][86] ([i915#10131] / [i915#9697])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [INCOMPLETE][87] ([i915#9820] / [i915#9849])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8436])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#8399]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][90] -> [FAIL][91] ([i915#3591])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#6621])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-19/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#6621])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8925])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds-idle@gt1:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3555] / [i915#8925])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@i915_pm_rps@thresholds-idle@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4387])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#7707])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4212])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#5190]) +8 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4212])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#8709]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#8709]) +11 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#9531])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5286])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#5286]) +6 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#5286]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][110] -> [FAIL][111] ([i915#5138])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#3638])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#3638])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-19/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][114] +6 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][115] -> [FAIL][116] ([i915#3743]) +1 other test fail
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +11 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#2705])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#2705]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-16/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#6095]) +61 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#6095]) +23 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-9/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#10278])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#10278])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +59 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307]) +159 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6095]) +19 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#7213]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3742])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#7828]) +8 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#7828]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#7828]) +5 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#3555])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-9/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#7116] / [i915#9424])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#3299])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#3116] / [i915#3299])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-10/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3116]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#3299])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#7118] / [i915#9424]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#8814])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#3359])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#3359]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#8814])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3555])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#3555]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#9809]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#4103] / [i915#4213]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][150] ([i915#2346])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#9723])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#8588])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#8588])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8588])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-4/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#8812])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#8812])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#3840])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3840] / [i915#9053])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#658])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-4/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#658])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][162] +40 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#8381])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#3637]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3637]) +5 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#9934]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-18/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#8381]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8810]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#2672]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#2672]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#2672]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#5274])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8708]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#8708]) +23 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#8708]) +9 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-snb: [PASS][177] -> [SKIP][178] +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#5439])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3023]) +14 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#1825]) +13 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][182] +41 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-snb: NOTRUN -> [SKIP][183] +63 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3458]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9766])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#10070])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#10070])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-19/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3458]) +21 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#5354]) +47 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#1825]) +32 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-2/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][194] +27 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][195] ([i915#7862]) +1 other test fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#8806])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#9423]) +9 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#9423]) +7 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#9423]) +11 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#5176] / [i915#9423]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#9423]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-2/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][203] ([i915#5235]) +7 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/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@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/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-upscale-20x20@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#5235]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#5235]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#5235] / [i915#9423]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#5354])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#9685]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#3361])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#9685]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#9340])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][213] -> [SKIP][214] ([i915#9519]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#9519])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#9519])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#9519]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][218] -> [SKIP][219] ([i915#9519]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#9519])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#6524])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_prime@basic-modeset-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#6524])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#6524] / [i915#6805])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#9808]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-8/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][225] +22 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#9732]) +21 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-2/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#9732]) +10 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-12/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#9732]) +7 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@pr-cursor-blt:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#9688]) +4 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-5/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#9732]) +17 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-dpms:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#9673] / [i915#9732])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-11/igt@kms_psr@psr2-dpms.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][232] +311 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk7/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#9685]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#5289])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#5289])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-rkl: [PASS][236] -> [ABORT][237] ([i915#8875] / [i915#9926])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#5289])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-rkl: [PASS][239] -> [ABORT][240] ([i915#8875])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#4235]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8809])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][243] -> [FAIL][244] ([IGT#2])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-2/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#8623])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#9906]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#9906])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][248] ([i915#2437])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2437])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#2437] / [i915#9412])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#2437] / [i915#9412])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][252] -> [FAIL][253] ([i915#4349])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#8850])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@perf_pmu@cpu-hotplug.html
* igt@prime_vgem@basic-fence-read:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3708])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#3708] / [i915#4077])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#3708] / [i915#4077])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-18/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#3708])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@prime_vgem@fence-flip-hang.html
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#3708])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#9917])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2575]) +2 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-1/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html
* igt@v3d/v3d_submit_cl@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#2575]) +12 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@v3d/v3d_submit_cl@bad-bo.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#2575]) +6 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-15/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#7711]) +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-mtlp-7/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_label_bo@set-kernel-name:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#7711]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@vc4/vc4_label_bo@set-kernel-name.html
* igt@vc4/vc4_tiling@set-get:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#7711]) +7 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@vc4/vc4_tiling@set-get.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#7711]) +11 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-5/igt@vc4/vc4_wait_bo@bad-bo.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#2575]) +7 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-4/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][269] ([i915#7742]) -> [PASS][270] +1 other test pass
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][271] ([i915#5784]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg2-5/igt@gem_eio@reset-stress.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-6/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [FAIL][273] ([i915#2842]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-rkl: [FAIL][275] ([i915#2842]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-7/igt@gem_exec_fair@basic-none-solo@rcs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][277] ([i915#2842]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_lmem_swapping@heavy-random@lmem0:
- shard-dg2: [FAIL][279] ([i915#10378]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg2-5/igt@gem_lmem_swapping@heavy-random@lmem0.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@gem_lmem_swapping@heavy-random@lmem0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][281] ([i915#3591]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [FAIL][283] ([i915#3743]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-tglu: [DMESG-WARN][285] ([i915#10166]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-tglu-3/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-5/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][287] ([i915#2122]) -> [PASS][288] +1 other test pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-4:
- shard-dg1: [FAIL][289] ([i915#7036]) -> [PASS][290] +3 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg1-18/igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-4.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-19/igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-4.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][291] ([i915#9295]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][293] ([i915#9519]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: [FAIL][295] ([i915#8717]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg2-2/igt@kms_pm_rpm@i2c.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][297] ([i915#9519]) -> [PASS][298] +1 other test pass
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][299] ([i915#9196]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-rkl: [FAIL][301] ([i915#9196]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][303] ([i915#9820] / [i915#9849]) -> [INCOMPLETE][304] ([i915#1982] / [i915#9820] / [i915#9849])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: [SKIP][305] ([i915#4423] / [i915#4538]) -> [SKIP][306] ([i915#4538])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_content_protection@lic-type-1:
- shard-snb: [INCOMPLETE][307] -> [SKIP][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-snb7/igt@kms_content_protection@lic-type-1.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-snb6/igt@kms_content_protection@lic-type-1.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][309] ([i915#4816]) -> [SKIP][310] ([i915#4070] / [i915#4816])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-dg2: [SKIP][311] ([i915#9732]) -> [SKIP][312] ([i915#9673] / [i915#9732]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg2-5/igt@kms_psr@fbc-psr2-cursor-render.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-dg2: [SKIP][313] ([i915#9673] / [i915#9732]) -> [SKIP][314] ([i915#9732]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg2-11/igt@kms_psr@psr2-primary-page-flip.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-8/igt@kms_psr@psr2-primary-page-flip.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][315] ([i915#9100]) -> [FAIL][316] ([i915#7484])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14428/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[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#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#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#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#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#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#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[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#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#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#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[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#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[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#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[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#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[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#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[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#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[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#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[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#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[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#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#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9926]: https://gitlab.freedesktop.org/drm/intel/issues/9926
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7760 -> IGTPW_10829
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14428: 790a1d4e546a1d7f1cc5316c77f21379a4083250 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10829: 10829
IGT_7760: 7760
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10829/index.html
[-- Attachment #2: Type: text/html, Size: 102039 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
2024-03-13 20:07 ` Lucas De Marchi
@ 2024-03-14 17:57 ` Rodrigo Vivi
0 siblings, 0 replies; 6+ messages in thread
From: Rodrigo Vivi @ 2024-03-14 17:57 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev, intel-xe, Himal Prasad Ghimiray
On Wed, Mar 13, 2024 at 03:07:44PM -0500, Lucas De Marchi wrote:
> On Wed, Mar 13, 2024 at 03:55:28PM -0400, Rodrigo Vivi wrote:
> > Let's inject a gt_reset failure that will put Xe device in the
> > new wedged state, then we confirm the IOCTL is blocked and we
> > reload the driver to get back to a clean state for other test
> > execution, since wedged state in Xe is a final state that can only
> > be cleared with a module reload.
> >
> > This new test case is entirely based on xe_uevent provided by
> > Himal.
>
> /me confused... I don't see any uevent handling here.
the uevent part is gone, but the failure injection came from there.
>
> >
> > Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > ---
> > tests/intel/xe_wedged.c | 91 +++++++++++++++++++++++++++++++++++++++++
> > tests/meson.build | 1 +
> > 2 files changed, 92 insertions(+)
> > create mode 100644 tests/intel/xe_wedged.c
> >
> > diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c
> > new file mode 100644
> > index 000000000..f767e2511
> > --- /dev/null
> > +++ b/tests/intel/xe_wedged.c
> > @@ -0,0 +1,91 @@
> > +// SPDX-License-Identifier: MIT
> > +/*
> > + * Copyright © 2024 Intel Corporation
> > + */
> > +
> > +/**
> > + * TEST: cause fake gt reset failure which put Xe device in wedged state
> > + * Category: Software building block
> > + * Sub-category: driver
> > + * Functionality: wedged
> > + * Test category: functionality test
> > + */
> > +
> > +#include "igt.h"
> > +#include "igt_kmod.h"
> > +
> > +#include "xe/xe_ioctl.h"
> > +
> > +static void force_wedged(int fd)
> > +{
> > + igt_debugfs_write(fd, "fail_gt_reset/probability", "100");
> > + igt_debugfs_write(fd, "fail_gt_reset/times", "2");
> > +
> > + xe_force_gt_reset(fd, 0);
>
> humn... do we have to check the writes above did anything?
unfortunately the debugfs_write is a void return...
we could read it back, but I don't believe it brings anything...
> I also don't
> see the kernel side, but if it just resets normally, the test would
> still pass afaics.
nope, if the reset works normally without injecting the failure and
declaring the gt busted, then we would fail below
igt_assert_eq(simple_ioctl(fd), 0);
force_busted(fd);
igt_assert_neq(simple_ioctl(fd), 0);
fd = rebind_xe(fd);
igt_assert_eq(simple_ioctl(fd), 0);
notice that the middle one is != 0,
but I'm considering to change that to
igt_assert_eq(simple_ioctl(fd), -ECANCELED);
for clarity.
>
> > + sleep(1);
> > +}
> > +
> > +static int reload_xe(int fd)
> > +{
> > + int error;
> > +
> > + drm_close_driver(fd);
> > + igt_xe_driver_unload();
>
>
> what if we are running on e.g. MTL with a DG2 and want to debug one of
> them? Rather than re-loading the module and possibly causing unrelated
> issues (if e.g. module removal from the other card crashes), why not
> just unbind the module from the card under test?
>
> i.e. the equivalent in C of:
>
> rebind() {
> pci_slot=$1
> echo -n "0000:$pci_slot" > /sys/bus/pci/drivers/$driver/unbind
> echo -n "0000:$pci_slot" > /sys/bus/pci/drivers/$driver/bind
> }
Thanks, that indeed is a better choice.
the only caveat is that I need to close the main fd client for a proper
exit before we can rebind cleanly. But I could finally get that working.
>
> Lucas De Marchi
>
> > +
> > + error = igt_xe_driver_load(NULL);
> > +
> > + igt_assert_eq(error, 0);
> > +
> > + /* driver is ready, check if it's bound */
> > + fd = __drm_open_driver(DRIVER_XE);
> > + igt_fail_on_f(fd < 0, "Cannot open the xe DRM driver while reloading xe after wedged\n");
> > + return fd;
> > +}
> > +
> > +static int simple_ioctl(int fd)
> > +{
> > + int ret;
> > +
> > + struct drm_xe_vm_create create = {
> > + .extensions = 0,
> > + .flags = 0,
> > + };
> > +
> > + ret = igt_ioctl(fd, DRM_IOCTL_XE_VM_CREATE, &create);
> > +
> > + if (ret == 0)
> > + xe_vm_destroy(fd, create.vm_id);
> > +
> > + return ret;
> > +}
> > +
> > +/**
> > + * SUBTEST: basic-wedged
> > + * Description: Force Xe device wedged after injecting a failure in GT reset
> > + */
> > +igt_main
> > +{
> > + int fd;
> > +
> > + igt_fixture {
> > + fd = drm_open_driver(DRIVER_XE);
> > + igt_require(igt_debugfs_exists(fd, "fail_gt_reset/probability",
> > + O_RDWR));
> > + }
> > +
> > + igt_subtest("basic-wedged") {
> > + igt_assert_eq(simple_ioctl(fd), 0);
> > + force_wedged(fd);
> > + igt_assert_neq(simple_ioctl(fd), 0);
> > + fd = reload_xe(fd);
> > + igt_assert_eq(simple_ioctl(fd), 0);
> > + }
> > +
> > + igt_fixture {
> > + if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) {
> > + igt_debugfs_write(fd, "fail_gt_reset/probability", "0");
> > + igt_debugfs_write(fd, "fail_gt_reset/times", "1");
> > + }
> > + drm_close_driver(fd);
> > + }
> > +}
> > diff --git a/tests/meson.build b/tests/meson.build
> > index a856510fc..e590d4348 100644
> > --- a/tests/meson.build
> > +++ b/tests/meson.build
> > @@ -312,6 +312,7 @@ intel_xe_progs = [
> > 'xe_render_copy',
> > 'xe_vm',
> > 'xe_waitfence',
> > + 'xe_wedged',
> > 'xe_spin_batch',
> > 'xe_sysfs_defaults',
> > 'xe_sysfs_scheduler',
> > --
> > 2.44.0
> >
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-03-14 17:58 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-13 19:55 [PATCH i-g-t] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi
2024-03-13 20:07 ` Lucas De Marchi
2024-03-14 17:57 ` Rodrigo Vivi
2024-03-13 23:27 ` ✗ CI.xeBAT: failure for " Patchwork
2024-03-13 23:45 ` ✓ Fi.CI.BAT: success " Patchwork
2024-03-14 8:01 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox