* [PATCH i-g-t] tests/amdgpu/amd_abm: Remove the modeset for ABM level setting
@ 2024-08-26 8:25 Tom Chung
2024-08-26 18:03 ` Leo Li
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Tom Chung @ 2024-08-26 8:25 UTC (permalink / raw)
To: igt-dev; +Cc: Rodrigo.Siqueira, alex.hung, sunpeng.li, chiahsuan.chung
[Why]
Set the ABM level does not need to trigger the modeset to take effect.
[How]
Replace the DPMS off -> on transition in set_abm_level() with
atomic commit.
Signed-off-by: Tom Chung <chiahsuan.chung@amd.com>
---
tests/amdgpu/amd_abm.c | 99 ++++++++++++++++++++++++++++++------------
1 file changed, 71 insertions(+), 28 deletions(-)
diff --git a/tests/amdgpu/amd_abm.c b/tests/amdgpu/amd_abm.c
index 2882c2c18..a85f444c4 100644
--- a/tests/amdgpu/amd_abm.c
+++ b/tests/amdgpu/amd_abm.c
@@ -39,9 +39,75 @@
typedef struct data {
igt_display_t display;
+ igt_plane_t *primary;
+ igt_output_t *output;
+ igt_pipe_t *pipe;
int drm_fd;
+ drmModeModeInfo *mode;
+ enum pipe pipe_id;
+ int w, h;
+ igt_fb_t ref_fb;
} data_t;
+/* Common test setup. */
+static void test_init(data_t *data)
+{
+ igt_display_t *display = &data->display;
+ drmModeConnectorPtr conn;
+ bool has_edp = false;
+ int i;
+
+ /* Skip test if no eDP connected. */
+ for (i = 0; i < display->n_outputs; i++) {
+ conn = display->outputs[i].config.connector;
+
+ if (conn->connector_type == DRM_MODE_CONNECTOR_eDP &&
+ conn->connection == DRM_MODE_CONNECTED) {
+ has_edp = true;
+ }
+ }
+ if (!has_edp)
+ igt_skip("No eDP connector found\n");
+
+ /* It doesn't matter which pipe we choose on amdpgu. */
+ data->pipe_id = PIPE_A;
+ data->pipe = &data->display.pipes[data->pipe_id];
+
+ igt_display_reset(display);
+
+ data->output = igt_get_single_output_for_pipe(display, data->pipe_id);
+ igt_require(data->output);
+ igt_info("output %s\n", data->output->name);
+
+ data->mode = igt_output_get_mode(data->output);
+ igt_assert(data->mode);
+ kmstest_dump_mode(data->mode);
+
+ data->primary =
+ igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_output_set_pipe(data->output, data->pipe_id);
+
+ data->w = data->mode->hdisplay;
+ data->h = data->mode->vdisplay;
+
+ data->ref_fb.fb_id = 0;
+
+ igt_create_color_fb(data->drm_fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.0, 0.6, 0.6, &data->ref_fb);
+}
+
+/* Common test cleanup. */
+static void test_fini(data_t *data)
+{
+ igt_display_t *display = &data->display;
+
+ igt_display_reset(display);
+ igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
+
+ if (data->ref_fb.fb_id)
+ igt_remove_fb(data->drm_fd, &data->ref_fb);
+}
static int read_current_backlight_pwm(int drm_fd, char *connector_name)
@@ -121,14 +187,9 @@ static void set_abm_level(data_t *data, igt_output_t *output, int level)
igt_assert_eq(close(fd), 0);
- /**
- * We need to trigger a full modeset to have the new ABM level take effect.
- * DPMS off -> on transition is one of many approaches.
- */
- kmstest_set_connector_dpms(data->drm_fd, output->config.connector,
- DRM_MODE_DPMS_OFF);
- kmstest_set_connector_dpms(data->drm_fd, output->config.connector,
- DRM_MODE_DPMS_ON);
+ igt_output_set_pipe(data->output, data->pipe_id);
+ igt_plane_set_fb(data->primary, &data->ref_fb);
+ igt_display_commit_atomic(&data->display, 0, 0);
}
static int backlight_read_max_brightness(int *result)
@@ -156,25 +217,6 @@ static int backlight_read_max_brightness(int *result)
return errno;
}
-static void test_init(data_t *data)
-{
- igt_display_t *display = &data->display;
- drmModeConnectorPtr conn;
- int i;
-
- for (i = 0; i < display->n_outputs; i++) {
- conn = display->outputs[i].config.connector;
-
- if (conn->connector_type == DRM_MODE_CONNECTOR_eDP &&
- conn->connection == DRM_MODE_CONNECTED) {
- return;
- }
- }
-
- igt_skip("No eDP connector found\n");
-}
-
-
static void backlight_dpms_cycle(data_t *data)
{
int ret;
@@ -354,7 +396,7 @@ static void abm_gradual(data_t *data)
igt_main
{
- data_t data = {};
+ data_t data = {0};
igt_skip_on_simulation();
igt_fixture {
@@ -382,6 +424,7 @@ igt_main
abm_gradual(&data);
igt_fixture {
+ test_fini(&data);
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH i-g-t] tests/amdgpu/amd_abm: Remove the modeset for ABM level setting 2024-08-26 8:25 [PATCH i-g-t] tests/amdgpu/amd_abm: Remove the modeset for ABM level setting Tom Chung @ 2024-08-26 18:03 ` Leo Li 2024-08-26 21:30 ` ✓ CI.xeBAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Leo Li @ 2024-08-26 18:03 UTC (permalink / raw) To: Tom Chung, igt-dev; +Cc: Rodrigo.Siqueira, alex.hung On 2024-08-26 04:25, Tom Chung wrote: > [Why] > Set the ABM level does not need to trigger the modeset to take effect. > > [How] > Replace the DPMS off -> on transition in set_abm_level() with > atomic commit. > > Signed-off-by: Tom Chung <chiahsuan.chung@amd.com> Reviewed-by: Leo Li <sunpeng.li@amd.com> Thanks! > --- > tests/amdgpu/amd_abm.c | 99 ++++++++++++++++++++++++++++++------------ > 1 file changed, 71 insertions(+), 28 deletions(-) > > diff --git a/tests/amdgpu/amd_abm.c b/tests/amdgpu/amd_abm.c > index 2882c2c18..a85f444c4 100644 > --- a/tests/amdgpu/amd_abm.c > +++ b/tests/amdgpu/amd_abm.c > @@ -39,9 +39,75 @@ > > typedef struct data { > igt_display_t display; > + igt_plane_t *primary; > + igt_output_t *output; > + igt_pipe_t *pipe; > int drm_fd; > + drmModeModeInfo *mode; > + enum pipe pipe_id; > + int w, h; > + igt_fb_t ref_fb; > } data_t; > > +/* Common test setup. */ > +static void test_init(data_t *data) > +{ > + igt_display_t *display = &data->display; > + drmModeConnectorPtr conn; > + bool has_edp = false; > + int i; > + > + /* Skip test if no eDP connected. */ > + for (i = 0; i < display->n_outputs; i++) { > + conn = display->outputs[i].config.connector; > + > + if (conn->connector_type == DRM_MODE_CONNECTOR_eDP && > + conn->connection == DRM_MODE_CONNECTED) { > + has_edp = true; > + } > + } > + if (!has_edp) > + igt_skip("No eDP connector found\n"); > + > + /* It doesn't matter which pipe we choose on amdpgu. */ > + data->pipe_id = PIPE_A; > + data->pipe = &data->display.pipes[data->pipe_id]; > + > + igt_display_reset(display); > + > + data->output = igt_get_single_output_for_pipe(display, data->pipe_id); > + igt_require(data->output); > + igt_info("output %s\n", data->output->name); > + > + data->mode = igt_output_get_mode(data->output); > + igt_assert(data->mode); > + kmstest_dump_mode(data->mode); > + > + data->primary = > + igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); > + > + igt_output_set_pipe(data->output, data->pipe_id); > + > + data->w = data->mode->hdisplay; > + data->h = data->mode->vdisplay; > + > + data->ref_fb.fb_id = 0; > + > + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, > + data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.0, 0.6, 0.6, &data->ref_fb); > +} > + > +/* Common test cleanup. */ > +static void test_fini(data_t *data) > +{ > + igt_display_t *display = &data->display; > + > + igt_display_reset(display); > + igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0); > + > + if (data->ref_fb.fb_id) > + igt_remove_fb(data->drm_fd, &data->ref_fb); > +} > > > static int read_current_backlight_pwm(int drm_fd, char *connector_name) > @@ -121,14 +187,9 @@ static void set_abm_level(data_t *data, igt_output_t *output, int level) > > igt_assert_eq(close(fd), 0); > > - /** > - * We need to trigger a full modeset to have the new ABM level take effect. > - * DPMS off -> on transition is one of many approaches. > - */ > - kmstest_set_connector_dpms(data->drm_fd, output->config.connector, > - DRM_MODE_DPMS_OFF); > - kmstest_set_connector_dpms(data->drm_fd, output->config.connector, > - DRM_MODE_DPMS_ON); > + igt_output_set_pipe(data->output, data->pipe_id); > + igt_plane_set_fb(data->primary, &data->ref_fb); > + igt_display_commit_atomic(&data->display, 0, 0); > } > > static int backlight_read_max_brightness(int *result) > @@ -156,25 +217,6 @@ static int backlight_read_max_brightness(int *result) > return errno; > } > > -static void test_init(data_t *data) > -{ > - igt_display_t *display = &data->display; > - drmModeConnectorPtr conn; > - int i; > - > - for (i = 0; i < display->n_outputs; i++) { > - conn = display->outputs[i].config.connector; > - > - if (conn->connector_type == DRM_MODE_CONNECTOR_eDP && > - conn->connection == DRM_MODE_CONNECTED) { > - return; > - } > - } > - > - igt_skip("No eDP connector found\n"); > -} > - > - > static void backlight_dpms_cycle(data_t *data) > { > int ret; > @@ -354,7 +396,7 @@ static void abm_gradual(data_t *data) > > igt_main > { > - data_t data = {}; > + data_t data = {0}; > igt_skip_on_simulation(); > > igt_fixture { > @@ -382,6 +424,7 @@ igt_main > abm_gradual(&data); > > igt_fixture { > + test_fini(&data); > igt_display_fini(&data.display); > drm_close_driver(data.drm_fd); > } ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ CI.xeBAT: success for tests/amdgpu/amd_abm: Remove the modeset for ABM level setting 2024-08-26 8:25 [PATCH i-g-t] tests/amdgpu/amd_abm: Remove the modeset for ABM level setting Tom Chung 2024-08-26 18:03 ` Leo Li @ 2024-08-26 21:30 ` Patchwork 2024-08-26 21:43 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-08-27 3:23 ` ✗ CI.xeFULL: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-08-26 21:30 UTC (permalink / raw) To: Tom Chung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 881 bytes --] == Series Details == Series: tests/amdgpu/amd_abm: Remove the modeset for ABM level setting URL : https://patchwork.freedesktop.org/series/137780/ State : success == Summary == CI Bug Log - changes from XEIGT_7992_BAT -> XEIGTPW_11636_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7992 -> IGTPW_11636 IGTPW_11636: 11636 IGT_7992: 14c915ac38d4f697f504f3c754195c5e284c49e7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1830-a98a350b5396d30458c26b4f31d7c4f4f9b1da90: a98a350b5396d30458c26b4f31d7c4f4f9b1da90 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/index.html [-- Attachment #2: Type: text/html, Size: 1426 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/amdgpu/amd_abm: Remove the modeset for ABM level setting 2024-08-26 8:25 [PATCH i-g-t] tests/amdgpu/amd_abm: Remove the modeset for ABM level setting Tom Chung 2024-08-26 18:03 ` Leo Li 2024-08-26 21:30 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-08-26 21:43 ` Patchwork 2024-08-27 3:23 ` ✗ CI.xeFULL: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-08-26 21:43 UTC (permalink / raw) To: Tom Chung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3697 bytes --] == Series Details == Series: tests/amdgpu/amd_abm: Remove the modeset for ABM level setting URL : https://patchwork.freedesktop.org/series/137780/ State : failure == Summary == CI Bug Log - changes from IGT_7992 -> IGTPW_11636 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11636 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11636, 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_11636/index.html Participating hosts (40 -> 38) ------------------------------ Additional (1): fi-cfl-8109u Missing (3): bat-dg2-11 fi-snb-2520m fi-kbl-8809g Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11636: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7992/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11636/bat-mtlp-6/igt@i915_selftest@live@workarounds.html Known issues ------------ Here are the changes found in IGTPW_11636 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11636/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11636/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@i915_selftest@live@hangcheck: - bat-arls-1: [PASS][5] -> [DMESG-WARN][6] ([i915#11349]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7992/bat-arls-1/igt@i915_selftest@live@hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11636/bat-arls-1/igt@i915_selftest@live@hangcheck.html * igt@kms_pm_backlight@basic-brightness: - fi-cfl-8109u: NOTRUN -> [SKIP][7] +11 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11636/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - {bat-arlh-3}: [ABORT][8] -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7992/bat-arlh-3/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11636/bat-arlh-3/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7992 -> IGTPW_11636 CI-20190529: 20190529 CI_DRM_15295: a98a350b5396d30458c26b4f31d7c4f4f9b1da90 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11636: 11636 IGT_7992: 14c915ac38d4f697f504f3c754195c5e284c49e7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11636/index.html [-- Attachment #2: Type: text/html, Size: 4465 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ CI.xeFULL: failure for tests/amdgpu/amd_abm: Remove the modeset for ABM level setting 2024-08-26 8:25 [PATCH i-g-t] tests/amdgpu/amd_abm: Remove the modeset for ABM level setting Tom Chung ` (2 preceding siblings ...) 2024-08-26 21:43 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-08-27 3:23 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-08-27 3:23 UTC (permalink / raw) To: Tom Chung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 57158 bytes --] == Series Details == Series: tests/amdgpu/amd_abm: Remove the modeset for ABM level setting URL : https://patchwork.freedesktop.org/series/137780/ State : failure == Summary == CI Bug Log - changes from XEIGT_7992_full -> XEIGTPW_11636_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11636_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11636_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11636_full: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_balancer@many-execqueues-parallel-userptr: - shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-parallel-userptr.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@xe_exec_balancer@many-execqueues-parallel-userptr.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - {shard-bmg}: [PASS][3] -> [INCOMPLETE][4] +3 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html Known issues ------------ Here are the changes found in XEIGTPW_11636_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg2-set2: [PASS][5] -> [FAIL][6] ([Intel XE#827]) +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-466/igt@kms_async_flips@alternate-sync-async-flip.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#801]) +23 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-lnl: [PASS][8] -> [FAIL][9] ([Intel XE#1659]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-dg2-set2: [PASS][10] -> [DMESG-WARN][11] ([Intel XE#877]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-0.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1512]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1399]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#373]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-7/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1424]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-3/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#309]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#886]) +1 other test fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-8/igt@kms_flip@basic-flip-vs-wf_vblank.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-3/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a6: - shard-dg2-set2: [PASS][23] -> [DMESG-WARN][24] ([Intel XE#1551]) +3 other tests dmesg-warn [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-436/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1401] / [Intel XE#1745]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1401]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#651]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#653]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#656]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#653]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [PASS][32] -> [SKIP][33] ([Intel XE#1201] / [Intel XE#455]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-463/igt@kms_hdr@invalid-hdr.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-436/igt@kms_hdr@invalid-hdr.html * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1: - shard-lnl: [PASS][34] -> [DMESG-WARN][35] ([Intel XE#324]) +2 other tests dmesg-warn [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-8/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1.html * igt@kms_plane@plane-position-hole@pipe-a-plane-4: - shard-lnl: [PASS][36] -> [DMESG-FAIL][37] ([Intel XE#324]) +2 other tests dmesg-fail [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-7/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#718]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1489]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1406]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-8/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#929]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#1649]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-3/igt@kms_psr@fbc-psr2-no-drrs.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-6/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_rotation_crc@bad-pixel-format: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1437]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-4/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#455]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-436/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1435]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1499] / [Intel XE#599]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-4/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#756]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-433/igt@kms_writeback@writeback-fb-id.html * igt@xe_evict@evict-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#688]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-5/igt@xe_evict@evict-threads-small-multi-vm.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1392]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#288]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#1195] / [Intel XE#2105]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1201] / [Intel XE#2229]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-lnl: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#1616]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s4-basic: - shard-lnl: [PASS][59] -> [ABORT][60] ([Intel XE#1358] / [Intel XE#1607]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-5/igt@xe_pm@s4-basic.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-2/igt@xe_pm@s4-basic.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#958]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-invalid-query: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#944]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@xe_query@multigpu-query-invalid-query.html #### Possible fixes #### * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-lnl: [FAIL][64] ([Intel XE#1701]) -> [PASS][65] +1 other test pass [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2: - {shard-bmg}: [FAIL][66] ([Intel XE#1426]) -> [PASS][67] +1 other test pass [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html * igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-hdmi-a-3: - {shard-bmg}: [INCOMPLETE][68] -> [PASS][69] +3 other tests pass [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-hdmi-a-3.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-bmg-2/igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [FAIL][70] ([Intel XE#1659]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - {shard-bmg}: [DMESG-WARN][72] ([Intel XE#877]) -> [PASS][73] +2 other tests pass [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-rmfb: - {shard-bmg}: [DMESG-WARN][74] -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-bmg-3/igt@kms_flip@2x-flip-vs-rmfb.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@flip-vs-suspend-interruptible: - {shard-bmg}: [INCOMPLETE][76] ([Intel XE#2597]) -> [PASS][77] +1 other test pass [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6: - shard-dg2-set2: [FAIL][78] ([Intel XE#899]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4: - shard-dg2-set2: [DMESG-WARN][80] ([Intel XE#1551]) -> [PASS][81] +1 other test pass [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-436/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][82] ([Intel XE#2443]) -> [PASS][83] +3 other tests pass [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-7/igt@kms_vrr@flipline.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-6/igt@kms_vrr@flipline.html * igt@xe_drm_fdinfo@drm-most-busy-idle-check-all: - shard-lnl: [FAIL][84] -> [PASS][85] +1 other test pass [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-2/igt@xe_drm_fdinfo@drm-most-busy-idle-check-all.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-4/igt@xe_drm_fdinfo@drm-most-busy-idle-check-all.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][86] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][88] ([Intel XE#1473]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-433/igt@xe_evict@evict-mixed-many-threads-large.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_threads@threads-hang-fd-rebind: - shard-dg2-set2: [INCOMPLETE][90] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-436/igt@xe_exec_threads@threads-hang-fd-rebind.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-436/igt@xe_exec_threads@threads-hang-fd-rebind.html * igt@xe_live_ktest@xe_migrate: - shard-dg2-set2: [SKIP][92] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-434/igt@xe_live_ktest@xe_migrate.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-434/igt@xe_live_ktest@xe_migrate.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: [ABORT][94] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-lnl-8/igt@xe_pm@s4-d3hot-basic-exec.html #### Warnings #### * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][96] ([Intel XE#316]) -> [SKIP][97] ([Intel XE#1201] / [Intel XE#316]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][98] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][99] ([Intel XE#316]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][100] ([Intel XE#1124]) -> [SKIP][101] ([Intel XE#1124] / [Intel XE#1201]) +6 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][102] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][103] ([Intel XE#1124]) +7 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][104] ([Intel XE#607]) -> [SKIP][105] ([Intel XE#1201] / [Intel XE#607]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2-set2: [SKIP][106] ([Intel XE#1201] / [Intel XE#346]) -> [SKIP][107] ([Intel XE#346]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-436/igt@kms_big_joiner@invalid-modeset.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][108] ([Intel XE#367]) -> [SKIP][109] ([Intel XE#1201] / [Intel XE#367]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][110] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][111] ([Intel XE#2191]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][112] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][113] ([Intel XE#367]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][114] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][115] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +19 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: [SKIP][116] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][117] ([Intel XE#787]) +41 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: [SKIP][118] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][119] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][120] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][121] ([Intel XE#1252]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: [SKIP][122] ([Intel XE#787]) -> [SKIP][123] ([Intel XE#1201] / [Intel XE#787]) +69 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][124] ([Intel XE#1252]) -> [SKIP][125] ([Intel XE#1201] / [Intel XE#1252]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg2-set2: [SKIP][126] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][127] ([Intel XE#306]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-463/igt@kms_chamelium_color@ctm-0-50.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][128] ([Intel XE#306]) -> [SKIP][129] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][130] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][131] ([Intel XE#373]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][132] ([Intel XE#373]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][134] ([Intel XE#307]) -> [SKIP][135] ([Intel XE#1201] / [Intel XE#307]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][136] ([Intel XE#455]) -> [SKIP][137] ([Intel XE#1201] / [Intel XE#455]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_cursor_crc@cursor-random-max-size.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-434/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: [SKIP][138] ([Intel XE#308]) -> [SKIP][139] ([Intel XE#1201] / [Intel XE#308]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][140] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][141] ([Intel XE#323]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][142] ([Intel XE#1138]) -> [SKIP][143] ([Intel XE#1138] / [Intel XE#1201]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_feature_discovery@display-4x.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-433/igt@kms_feature_discovery@display-4x.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][144] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][145] ([Intel XE#455]) +10 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][146] ([i915#5274]) -> [SKIP][147] ([Intel XE#1201] / [i915#5274]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_force_connector_basic@prune-stale-modes.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-433/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][148] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][149] ([Intel XE#651]) +16 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][150] ([Intel XE#651]) -> [SKIP][151] ([Intel XE#1201] / [Intel XE#651]) +27 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: [SKIP][152] ([Intel XE#653]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#653]) +21 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][154] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][155] ([Intel XE#653]) +15 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-set2: [SKIP][156] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][157] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][158] ([Intel XE#498]) -> [SKIP][159] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][160] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][161] ([Intel XE#2318] / [Intel XE#455]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][162] ([Intel XE#2318]) -> [SKIP][163] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][164] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][166] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][167] ([Intel XE#2318]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][168] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][169] ([Intel XE#870]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][170] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][171] ([Intel XE#1122]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-433/igt@kms_pm_dc@dc3co-vpb-simulation.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-dg2-set2: [SKIP][172] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][173] ([Intel XE#1489]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-435/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][174] ([Intel XE#1489]) -> [SKIP][175] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][176] ([Intel XE#929]) -> [SKIP][177] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_psr@psr-dpms.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-436/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr2-primary-render: - shard-dg2-set2: [SKIP][178] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][179] ([Intel XE#929]) +9 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-435/igt@kms_psr@psr2-primary-render.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][180] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][181] ([Intel XE#1149]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][182] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][183] ([Intel XE#327]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][184] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][185] ([Intel XE#1127]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][186] ([Intel XE#327]) -> [SKIP][187] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][188] ([Intel XE#1201] / [Intel XE#2168]) -> [SKIP][189] ([Intel XE#2168]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-466/igt@kms_vrr@cmrr.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@kms_vrr@cmrr.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][190] ([Intel XE#2168]) -> [SKIP][191] ([Intel XE#1201] / [Intel XE#2168]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@kms_vrr@lobf.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-436/igt@kms_vrr@lobf.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][192] ([Intel XE#1123]) -> [SKIP][193] ([Intel XE#1123] / [Intel XE#1201]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][194] ([Intel XE#1126]) -> [SKIP][195] ([Intel XE#1126] / [Intel XE#1201]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][196] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][197] ([Intel XE#1126]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm: - shard-dg2-set2: [SKIP][198] ([Intel XE#288]) -> [SKIP][199] ([Intel XE#1201] / [Intel XE#288]) +18 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][200] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][201] ([Intel XE#288]) +16 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_module_load@load: - shard-dg2-set2: [SKIP][202] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][203] ([Intel XE#378]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-463/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@xe_module_load@load.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][204] ([Intel XE#2541]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#2541]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@xe_oa@polling-small-buf.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-463/igt@xe_oa@polling-small-buf.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: [SKIP][206] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][207] ([Intel XE#2541]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-466/igt@xe_oa@whitelisted-registers-userspace-config.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][208] ([Intel XE#979]) -> [SKIP][209] ([Intel XE#1201] / [Intel XE#979]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][210] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][211] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][212] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][213] ([Intel XE#2284] / [Intel XE#366]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_query@multigpu-query-invalid-size: - shard-dg2-set2: [SKIP][214] ([Intel XE#944]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#944]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-432/igt@xe_query@multigpu-query-invalid-size.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-434/igt@xe_query@multigpu-query-invalid-size.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][216] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][217] ([Intel XE#944]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [DMESG-FAIL][218] ([Intel XE#1760]) -> [DMESG-WARN][219] ([Intel XE#1760]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7992/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/shard-dg2-432/igt@xe_wedged@wedged-at-any-timeout.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_7992 -> IGTPW_11636 IGTPW_11636: 11636 IGT_7992: 14c915ac38d4f697f504f3c754195c5e284c49e7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1830-a98a350b5396d30458c26b4f31d7c4f4f9b1da90: a98a350b5396d30458c26b4f31d7c4f4f9b1da90 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11636/index.html [-- Attachment #2: Type: text/html, Size: 72143 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-08-27 3:23 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-08-26 8:25 [PATCH i-g-t] tests/amdgpu/amd_abm: Remove the modeset for ABM level setting Tom Chung 2024-08-26 18:03 ` Leo Li 2024-08-26 21:30 ` ✓ CI.xeBAT: success for " Patchwork 2024-08-26 21:43 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-08-27 3:23 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox