* [PATCH i-g-t] RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode
@ 2024-12-17 19:16 Jeevan B
2024-12-18 20:28 ` ✓ i915.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jeevan B @ 2024-12-17 19:16 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, swati2.sharma, Jeevan B
We need to ensure that the system does not use a joiner for modes that do
not require it. This test will validate that the correct non-joiner mode
is selected, and then forcing a modeset and flip on the last pipe. If the
joiner is mistakenly enabled for a non-joiner mode, the test should fail.
otherwise, the commit should proceed as expected.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_joiner.c | 83 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 83 insertions(+)
diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 9a353ee1b..a41f201d1 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -71,10 +71,15 @@
* SUBTEST: invalid-modeset-force-ultra-joiner
* Description: Verify if the modeset on the other pipes are rejected when
* the pipe A is active with force ultra joiner modeset.
+ *
+ * SUBTEST: basic-non-joiner
+ * Description:
*/
IGT_TEST_DESCRIPTION("Test joiner / force joiner");
#define INVALID_TEST_OUTPUT 2
+#define HDISPLAY_6K_PER_PIPE 6144
+#define HDISPLAY_5K_PER_PIPE 5120
typedef struct {
int drm_fd;
@@ -82,6 +87,7 @@ typedef struct {
int ultra_joiner_output_count;
int non_big_joiner_output_count;
int non_ultra_joiner_output_count;
+ int nonjoiner_output_count;
int mixed_output_count;
int output_count;
int n_pipes;
@@ -91,6 +97,7 @@ typedef struct {
igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
igt_output_t *mixed_output[IGT_MAX_PIPES];
+ igt_output_t *nonjoiner_output[IGT_MAX_PIPES];
enum pipe pipe_seq[IGT_MAX_PIPES];
igt_display_t display;
} data_t;
@@ -161,6 +168,25 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe,
return master_pipe;
}
+static bool nonjoiner_mode_found(int drm_fd, drmModeConnector *connector, drmModeModeInfo *mode)
+{
+ igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc);
+ igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc);
+
+ for (int i = 0; i < connector->count_modes; i++) {
+ drmModeModeInfo *current_mode = &connector->modes[i];
+
+ if ((current_mode->hdisplay <= HDISPLAY_6K_PER_PIPE &&
+ current_mode->clock <= max_dotclock) ||
+ (current_mode->hdisplay <= HDISPLAY_5K_PER_PIPE)) {
+ *mode = *current_mode;
+ return true;
+ }
+ }
+
+ return false;
+}
+
static void test_single_joiner(data_t *data, int output_count, bool force_joiner)
{
int i;
@@ -409,6 +435,49 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
}
}
+static void test_single_non_joiner(data_t *data)
+{
+ int count;
+ igt_output_t **outputs, *output;
+ igt_fb_t fb;
+ igt_plane_t *primary;
+ drmModeModeInfo mode;
+ drmModeConnector *con;
+
+ count = data->nonjoiner_output_count;
+ outputs = data->nonjoiner_output;
+
+ for (int i = 0; i < count; i++) {
+ igt_display_reset(&data->display);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ output = outputs[i];
+ con = output->config.connector;
+
+ if (nonjoiner_mode_found(data->drm_fd, con, &mode)) {
+ igt_output_override_mode(output, &mode);
+ igt_info("Assigning pipe %s to %s with mode %dx%d@%d\n",
+ kmstest_pipe_name(data->pipe_seq[data->n_pipes - 1]),
+ igt_output_name(output), mode.hdisplay,
+ mode.vdisplay, mode.vrefresh);
+
+ igt_output_set_pipe(output, data->pipe_seq[data->n_pipes - 1]);
+
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_create_pattern_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &fb);
+
+ igt_plane_set_fb(primary, &fb);
+ igt_assert(igt_display_try_commit2(&data->display, COMMIT_ATOMIC));
+ igt_plane_set_fb(primary, NULL);
+ igt_remove_fb(data->drm_fd, &fb);
+ }
+ else {
+ igt_warn("No valid non-joiner mode found for output %s\n", igt_output_name(output));
+ }
+ }
+}
+
igt_main
{
bool ultra_joiner_supported, is_dgfx;
@@ -423,6 +492,7 @@ igt_main
data.ultra_joiner_output_count = 0;
data.non_big_joiner_output_count = 0;
data.non_ultra_joiner_output_count = 0;
+ data.nonjoiner_output_count = 0;
data.mixed_output_count = 0;
data.output_count = 0;
j = 0;
@@ -441,6 +511,7 @@ igt_main
for_each_connected_output(&data.display, output) {
bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
+ bool nonjoiner_found = false;
drmModeConnector *connector = output->config.connector;
/*
@@ -451,6 +522,7 @@ igt_main
*/
bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
+ nonjoiner_found = nonjoiner_mode_found(data.drm_fd, connector, &mode);
if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
force_joiner_supported = true;
@@ -465,6 +537,9 @@ igt_main
else if (force_joiner_supported)
data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
+ if (nonjoiner_found)
+ data.nonjoiner_output[data.nonjoiner_output_count++] = output;
+
data.output_count++;
}
if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
@@ -615,6 +690,14 @@ igt_main
}
}
+ igt_describe("Verify the basic modeset on big joiner mode on all pipes");
+ igt_subtest_with_dynamic("basic-non-joiner") {
+ igt_require_f(data.n_pipes >= 1,
+ "Minimum of 1 pipes are required\n");
+ igt_dynamic_f("non-joiner")
+ test_single_non_joiner(&data);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ i915.CI.BAT: success for RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode 2024-12-17 19:16 [PATCH i-g-t] RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B @ 2024-12-18 20:28 ` Patchwork 2024-12-18 22:29 ` ✓ Xe.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-12-18 20:28 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev == Series Details == Series: RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode URL : https://patchwork.freedesktop.org/series/142749/ State : success == Summary == CI Bug Log - changes from IGT_8164 -> IGTPW_12339 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12339 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gt_mocs: - bat-twl-2: [PASS][1] -> [ABORT][2] ([i915#12919]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8164/bat-twl-2/igt@i915_selftest@live@gt_mocs.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/bat-twl-2/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][3] -> [ABORT][4] ([i915#12061]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8164/bat-arlh-3/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-mtlp-6: [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8164/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][7] ([i915#11621]) -> [PASS][8] +132 other tests pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8164/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [ABORT][9] ([i915#12061]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8164/bat-arls-5/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/bat-arls-5/igt@i915_selftest@live@workarounds.html - {bat-mtlp-9}: [ABORT][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8164/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/bat-mtlp-9/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#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8164 -> IGTPW_12339 * Linux: CI_DRM_15864 -> CI_DRM_15865 CI-20190529: 20190529 CI_DRM_15864: e9a5d74b7f60fe6f7d55ebe636ff871214b6caec @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15865: d8f0c44e2ed948dcc45d04a0dfa83612995a702b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12339: 77abbe3a40634905b8e2e0015e6d3a12a55f4451 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8164: e9d9934c7c6dc6878792d82424fc928e7f6996cb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/index.html ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode 2024-12-17 19:16 [PATCH i-g-t] RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B 2024-12-18 20:28 ` ✓ i915.CI.BAT: success for " Patchwork @ 2024-12-18 22:29 ` Patchwork 2024-12-19 9:16 ` ✗ i915.CI.Full: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-12-18 22:29 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2174 bytes --] == Series Details == Series: RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode URL : https://patchwork.freedesktop.org/series/142749/ State : success == Summary == CI Bug Log - changes from XEIGT_8164_BAT -> XEIGTPW_12339_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12339_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [PASS][1] -> [SKIP][2] ([Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-page-flip@edp-1: - bat-adlp-7: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3517]) +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8164 -> IGTPW_12339 * Linux: xe-2396-e9a5d74b7f60fe6f7d55ebe636ff871214b6caec -> xe-2397-d8f0c44e2ed948dcc45d04a0dfa83612995a702b IGTPW_12339: 77abbe3a40634905b8e2e0015e6d3a12a55f4451 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8164: e9d9934c7c6dc6878792d82424fc928e7f6996cb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2396-e9a5d74b7f60fe6f7d55ebe636ff871214b6caec: e9a5d74b7f60fe6f7d55ebe636ff871214b6caec xe-2397-d8f0c44e2ed948dcc45d04a0dfa83612995a702b: d8f0c44e2ed948dcc45d04a0dfa83612995a702b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/index.html [-- Attachment #2: Type: text/html, Size: 2785 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode 2024-12-17 19:16 [PATCH i-g-t] RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B 2024-12-18 20:28 ` ✓ i915.CI.BAT: success for " Patchwork 2024-12-18 22:29 ` ✓ Xe.CI.BAT: " Patchwork @ 2024-12-19 9:16 ` Patchwork 2024-12-19 13:20 ` ✗ Xe.CI.Full: " Patchwork 2025-01-09 9:21 ` [PATCH i-g-t] " Karthik B S 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-12-19 9:16 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev == Series Details == Series: RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode URL : https://patchwork.freedesktop.org/series/142749/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15865_full -> IGTPW_12339_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12339_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12339_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_12339/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12339_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_joiner@basic-non-joiner@non-joiner} (NEW): - shard-dg2: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-1/igt@kms_joiner@basic-non-joiner@non-joiner.html - shard-rkl: NOTRUN -> [FAIL][2] +2 other tests fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_joiner@basic-non-joiner@non-joiner.html - shard-dg1: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_joiner@basic-non-joiner@non-joiner.html - shard-snb: NOTRUN -> [FAIL][4] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb5/igt@kms_joiner@basic-non-joiner@non-joiner.html - shard-mtlp: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-5/igt@kms_joiner@basic-non-joiner@non-joiner.html - shard-tglu: NOTRUN -> [FAIL][6] +2 other tests fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@kms_joiner@basic-non-joiner@non-joiner.html - shard-glk: NOTRUN -> [FAIL][7] +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk7/igt@kms_joiner@basic-non-joiner@non-joiner.html New tests --------- New tests have been introduced between CI_DRM_15865_full and IGTPW_12339_full: ### New IGT tests (4) ### * igt@kms_joiner@basic-non-joiner: - Statuses : 7 fail(s) - Exec time: [0.14, 1.12] s * igt@kms_joiner@basic-non-joiner@non-joiner: - Statuses : 7 fail(s) - Exec time: [0.14, 1.12] s * igt@kms_setmode@basic-clone-single-crtc@pipe-a-vga-1-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.10] s * igt@kms_setmode@basic-clone-single-crtc@pipe-b-vga-1-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.10] s Known issues ------------ Here are the changes found in IGTPW_12339_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +7 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-5/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +23 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-11/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#12392] / [i915#7297]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#6335]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#6335]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb2/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-13/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@gem_ctx_sseu@mmap-args.html - shard-rkl: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@create-ext: - shard-mtlp: [PASS][31] -> [ABORT][32] ([i915#13193]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-8/igt@gem_eio@create-ext.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@gem_eio@create-ext.html * igt@gem_eio@kms: - shard-tglu: [PASS][33] -> [DMESG-WARN][34] ([i915#13363]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-4/igt@gem_eio@kms.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-10/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4812]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-14/igt@gem_exec_balancer@bonded-semaphore.html - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-10/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_capture@capture-invisible: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][40] ([i915#11965]) +4 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-wb-ro-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-7/igt@gem_exec_flush@basic-wb-ro-default.html * igt@gem_exec_reloc@basic-active: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +15 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +10 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3281]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s3@smem: - shard-glk: NOTRUN -> [INCOMPLETE][48] ([i915#13196]) +1 other test incomplete [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk6/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][49] ([i915#7975] / [i915#8213]) +1 other test abort [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][50] ([i915#7975] / [i915#8213]) +2 other tests abort [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-5/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-2/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs.html - shard-glk: NOTRUN -> [SKIP][58] ([i915#4613]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk4/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4565]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap_wc@write: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@gem_mmap_wc@write.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][64] ([i915#2658]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb2/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-9/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +8 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][67] ([i915#2658]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-11/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [FAIL][69] ([i915#13104]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][70] ([i915#12917] / [i915#12964]) +2 other tests timeout [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][71] ([i915#12964]) +2 other tests timeout [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html - shard-tglu: [PASS][74] -> [SKIP][75] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-9/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-5/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#8411]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][79] ([i915#13306]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk7/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +10 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-1/igt@gem_tiled_pread_basic.html * igt@gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][82] ([i915#13263]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk7/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-11/igt@gem_userptr_blits@coherency-unsync.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#3323]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4958]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +6 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-10/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-no-display: - shard-tglu: NOTRUN -> [DMESG-WARN][96] ([i915#13029]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][97] -> [ABORT][98] ([i915#9820]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#8399]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-9/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#8399]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#8399]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][102] ([i915#12455]) +1 other test incomplete [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][103] ([i915#2681]) +4 other tests warn [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][104] -> [FAIL][105] ([i915#12739] / [i915#3591]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][106] ([i915#12797]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk2/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#11681]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-5/igt@i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][108] ([i915#11681]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#6245]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-10/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) +1 other test dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb2/igt@i915_selftest@mock.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][111] ([i915#7443]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#7707]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-2/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4212]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#5190]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4212]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: NOTRUN -> [DMESG-FAIL][118] ([i915#12964]) +4 other tests dmesg-fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#8709]) +7 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#8709]) +11 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#8709]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/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][122] ([i915#8709]) +11 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#8709]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [INCOMPLETE][124] ([i915#13287]) +1 other test incomplete [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb5/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1.html * igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][125] ([i915#13287]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [CRASH][126] ([i915#13287]) +3 other tests crash [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-1/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#12967] / [i915#6228]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#9531]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-glk: [PASS][129] -> [FAIL][130] ([i915#12238]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs: - shard-glk: [PASS][131] -> [FAIL][132] ([i915#11859]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#1769] / [i915#3555]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#1769] / [i915#3555]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +11 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#5286]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5286]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3638]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3638]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5190]) +6 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#6095]) +146 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#6095]) +167 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#6095]) +34 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#12313]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#6095]) +29 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +19 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#12805]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +12 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#12313]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#12313]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#6095]) +141 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#7213]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3742]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#4087]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#7828]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][161] +10 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#7828]) +8 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-1/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#7828]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#7828]) +16 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#7828]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#7828]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-13/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#7118] / [i915#9424]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3116]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#6944] / [i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#9424]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-8/igt@kms_content_protection@lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [TIMEOUT][174] ([i915#7173]) +1 other test timeout [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-10/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#7116]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-14/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7116] / [i915#7118]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-9/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#6944]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-3/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#13049]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#13049]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#13049]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#13049]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8814]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8814]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-suspend: - shard-dg1: [PASS][186] -> [DMESG-WARN][187] ([i915#4423]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-13/igt@kms_cursor_crc@cursor-suspend.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [DMESG-WARN][188] ([i915#4423]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#4103] / [i915#4213]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#4103]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-rkl: [PASS][191] -> [DMESG-WARN][192] ([i915#12917] / [i915#12964]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#9809]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#9067]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#4103]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#8588]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#3804]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#1257]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8812]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8812]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-8/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8812]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#3840]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-1/igt@kms_dsc@dsc-basic.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3840] / [i915#9688]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3840]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3840] / [i915#9053]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3955]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3469]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-9/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#1839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-7/igt@kms_feature_discovery@display-4x.html - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#1839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#9337]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-10/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#658]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3637]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3637]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#9934]) +14 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#3637]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#9934]) +7 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#8381]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8381]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#9934]) +8 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-5/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][224] ([i915#11989]) +3 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [PASS][225] -> [FAIL][226] ([i915#11989]) +2 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: [PASS][227] -> [FAIL][228] ([i915#11989]) +3 other tests fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-tglu: [PASS][229] -> [FAIL][230] ([i915#11989]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-9/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-mtlp: NOTRUN -> [FAIL][231] ([i915#11989]) +1 other test fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1: - shard-snb: [PASS][232] -> [FAIL][233] ([i915#11989]) +3 other tests fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][234] ([i915#11989]) +2 other tests fail [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][235] ([i915#11989]) +1 other test fail [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#8381]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][237] ([i915#12745] / [i915#4839]) +1 other test incomplete [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][238] ([i915#12745]) +1 other test incomplete [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8810] / [i915#8813]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8810]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#2672]) +9 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555] / [i915#5190]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#2587] / [i915#2672]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5274]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-rkl: [PASS][254] -> [DMESG-WARN][255] ([i915#12964]) +42 other tests dmesg-warn [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][256] ([i915#6880]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#5354]) +25 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-snb: [PASS][258] -> [SKIP][259] +5 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#1825]) +7 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][261] +53 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][262] +20 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][263] +50 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#3458]) +7 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#3023]) +41 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#1825]) +72 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#8708]) +3 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#8708]) +19 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#3458]) +15 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#8708]) +17 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#6118]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#12713]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][273] ([i915#12713]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-5/igt@kms_hdr@static-toggle.html - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#10656]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#12388]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-2/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#12339]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#10656]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-2/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][281] ([i915#10656]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-10/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#4816]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][284] ([i915#12756]) +1 other test incomplete [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8821]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#3555]) +10 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_plane_multiple@tiling-yf.html - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#3555]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8806]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#9423]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#12247]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#12247]) +12 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#6953]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#12247] / [i915#6953]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12247]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#12247] / [i915#3555] / [i915#6953]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#12247]) +7 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#12247] / [i915#6953]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#12247]) +8 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#12247]) +16 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#5354]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9812]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][303] ([i915#5354]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#12343]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg2: NOTRUN -> [SKIP][305] ([i915#12343]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#9685]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#3828]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-7/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][308] ([i915#3828]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-5/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9685]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-4/igt@kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][310] ([i915#9685]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][311] -> [SKIP][312] ([i915#4281]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][313] -> [SKIP][314] ([i915#9340]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][315] -> [SKIP][316] ([i915#9519]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#4077]) +9 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-14/igt@kms_pm_rpm@fences.html - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#4077]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-3/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#9519]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][320] -> [SKIP][321] ([i915#9519]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@pm-tiling: - shard-rkl: [PASS][322] -> [SKIP][323] ([i915#12916]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-2/igt@kms_pm_rpm@pm-tiling.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_pm_rpm@pm-tiling.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][324] ([i915#10553]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#6524]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#6524]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#6524]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-10/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][328] ([i915#6524] / [i915#6805]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#11520]) +5 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#12316]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#9808]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#11520]) +15 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][333] ([i915#11520]) +9 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk9/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][334] ([i915#11520]) +14 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#11520]) +4 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#11520]) +10 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#11520]) +5 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#9683]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9683]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][340] +399 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk4/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9688]) +9 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-2/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#1072] / [i915#9732]) +15 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#9732]) +16 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-10/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-cursor-render: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#9732]) +12 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_psr@psr2-cursor-render.html * igt@kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +11 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-17/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +42 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#9685]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#12755]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-7/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][349] ([i915#5289]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#5289]) +2 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#12755] / [i915#5190]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][352] ([i915#5289]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#12755]) +2 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#3555] / [i915#5030] / [i915#9041]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#5030]) +2 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#5030] / [i915#9041]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][357] ([i915#13179]) +1 other test abort [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html - shard-tglu-1: NOTRUN -> [ABORT][358] ([i915#13179]) +1 other test abort [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][359] ([i915#5465]) +2 other tests fail [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb4/igt@kms_setmode@basic.html - shard-tglu: [PASS][360] -> [FAIL][361] ([i915#5465]) +2 other tests fail [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-2/igt@kms_setmode@basic.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-2/igt@kms_setmode@basic.html - shard-mtlp: [PASS][362] -> [FAIL][363] ([i915#5465]) +1 other test fail [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-7/igt@kms_setmode@basic.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-4/igt@kms_setmode@basic.html - shard-dg2: [PASS][364] -> [FAIL][365] ([i915#5465]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@kms_setmode@basic.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-4/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][366] ([i915#5465]) +1 other test fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#8623]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][368] ([i915#8623]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg1: [PASS][369] -> [FAIL][370] ([i915#9196]) +1 other test fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-13/igt@kms_universal_plane@cursor-fb-leak.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-glk: [PASS][371] -> [INCOMPLETE][372] ([i915#12276]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk5/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][373] ([i915#9906]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-5/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#3555]) +5 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@kms_vrr@flipline.html - shard-tglu: NOTRUN -> [SKIP][375] ([i915#3555]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-2/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#11920]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-8/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][377] ([i915#11920]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][378] ([i915#11920]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#9906]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][380] ([i915#9906]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#2437]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#2437] / [i915#9412]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-11/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][383] ([i915#2437] / [i915#9412]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][384] ([i915#2437] / [i915#9412]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][385] ([i915#2437]) +2 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-glk9/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu-1: NOTRUN -> [SKIP][386] ([i915#2437] / [i915#9412]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][387] +6 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-2/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][388] ([i915#2436]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#2435]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][390] ([i915#2433]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html * igt@perf@polling@0-rcs0: - shard-rkl: NOTRUN -> [DMESG-WARN][391] ([i915#12964]) +17 other tests dmesg-warn [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-7/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][392] +569 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-snb4/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][393] ([i915#4349]) +3 other tests fail [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-8/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][394] ([i915#8850]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][395] ([i915#12549] / [i915#6806]) +1 other test fail [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-tglu: [PASS][396] -> [ABORT][397] ([i915#13010]) +1 other test abort [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-10/igt@perf_pmu@module-unload.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-3/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-check-all@rcs0: - shard-mtlp: [PASS][398] -> [FAIL][399] ([i915#11943]) +1 other test fail [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-5/igt@perf_pmu@most-busy-check-all@rcs0.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-5/igt@perf_pmu@most-busy-check-all@rcs0.html * igt@perf_pmu@most-busy-idle-check-all@vcs0: - shard-mtlp: NOTRUN -> [FAIL][400] ([i915#11943]) +5 other tests fail [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all@vcs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][401] -> [FAIL][402] ([i915#4349]) +3 other tests fail [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-mtlp: [PASS][403] -> [FAIL][404] ([i915#4349]) +4 other tests fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vecs0.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][405] ([i915#3291] / [i915#3708]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][406] ([i915#3708]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][407] ([i915#3708] / [i915#4077]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][408] ([i915#3291] / [i915#3708]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-10/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][409] ([i915#3708]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-14/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][410] ([i915#3708]) +1 other test skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-7/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][411] ([i915#9917]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-10/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][412] ([i915#9917]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-14/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][413] ([i915#12910]) +19 other tests fail [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-tglu-9/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@bind-unbind-vf@vf-5: - shard-mtlp: NOTRUN -> [FAIL][414] ([i915#12910]) +9 other tests fail [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-3/igt@sriov_basic@bind-unbind-vf@vf-5.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][415] ([i915#9917]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][416] +36 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@hibernate: - shard-dg1: [ABORT][417] ([i915#7975] / [i915#8213]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-14/igt@gem_eio@hibernate.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-12/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg2: [FAIL][419] ([i915#5784]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-7/igt@gem_eio@kms.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-2/igt@gem_eio@kms.html - shard-dg1: [FAIL][421] ([i915#5784]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-18/igt@gem_eio@kms.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg1-13/igt@gem_eio@kms.html * igt@gem_lmem_swapping@parallel-multi: - shard-dg2: [SKIP][423] -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-dg2-3/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][425] ([i915#10729]) -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][427] ([i915#12964]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01. == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12339/index.html ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.Full: failure for RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode 2024-12-17 19:16 [PATCH i-g-t] RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B ` (2 preceding siblings ...) 2024-12-19 9:16 ` ✗ i915.CI.Full: failure " Patchwork @ 2024-12-19 13:20 ` Patchwork 2025-01-09 9:21 ` [PATCH i-g-t] " Karthik B S 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-12-19 13:20 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 59189 bytes --] == Series Details == Series: RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode URL : https://patchwork.freedesktop.org/series/142749/ State : failure == Summary == CI Bug Log - changes from XEIGT_8164_full -> XEIGTPW_12339_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12339_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12339_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_12339_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * {igt@kms_joiner@basic-non-joiner@non-joiner} (NEW): - shard-bmg: NOTRUN -> [FAIL][4] +2 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@kms_joiner@basic-non-joiner@non-joiner.html - shard-dg2-set2: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-433/igt@kms_joiner@basic-non-joiner@non-joiner.html - shard-lnl: NOTRUN -> [FAIL][6] +1 other test fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-3/igt@kms_joiner@basic-non-joiner@non-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3: - shard-bmg: [PASS][7] -> [INCOMPLETE][8] +2 other tests incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html * igt@kms_psr@fbc-psr2-suspend: - shard-lnl: [PASS][9] -> [FAIL][10] +1 other test fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-6/igt@kms_psr@fbc-psr2-suspend.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-8/igt@kms_psr@fbc-psr2-suspend.html #### Warnings #### * igt@xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [INCOMPLETE][11] ([Intel XE#1473]) -> [DMESG-FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@xe_evict@evict-beng-mixed-threads-large.html New tests --------- New tests have been introduced between XEIGT_8164_full and XEIGTPW_12339_full: ### New IGT tests (2) ### * igt@kms_joiner@basic-non-joiner: - Statuses : 3 fail(s) - Exec time: [0.22, 1.22] s * igt@kms_joiner@basic-non-joiner@non-joiner: - Statuses : 3 fail(s) - Exec time: [0.22, 1.22] s Known issues ------------ Here are the changes found in XEIGTPW_12339_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#3767]) +23 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2550]) +17 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@crc-atomic: - shard-bmg: NOTRUN -> [INCOMPLETE][15] ([Intel XE#3781]) +1 other test incomplete [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_async_flips@crc-atomic.html * igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][16] ([Intel XE#3781]) +1 other test incomplete [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-6.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#3768]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2370]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +4 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +10 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#610]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#610]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2191]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +55 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-436/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +13 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][34] ([Intel XE#3862]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2724]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-7/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2325]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +8 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2390]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +2 other tests fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2321]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2320]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#2291]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#877]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][49] -> [FAIL][50] ([Intel XE#1475]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2286]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#2141]) +2 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#1340]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_aux_dev: - shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#3009]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@kms_dp_aux_dev.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_dp_aux_dev.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1138]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1135]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-433/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][59] -> [FAIL][60] ([Intel XE#3321]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2316]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2316]) +8 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#886]) +3 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#2882]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [PASS][68] -> [FAIL][69] ([Intel XE#301] / [Intel XE#3321]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6: - shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank@d-dp2: - shard-bmg: NOTRUN -> [FAIL][72] ([Intel XE#3321]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][73] ([Intel XE#2597]) +1 other test incomplete [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#455]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [FAIL][77] ([Intel XE#2333]) +14 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2312]) +9 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#651]) +15 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2311]) +22 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2313]) +19 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#653]) +12 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2927]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#346]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#346]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-bmg: NOTRUN -> [INCOMPLETE][86] ([Intel XE#1035]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][87] -> [FAIL][88] ([Intel XE#616]) +1 other test fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-433/igt@kms_plane_cursor@viewport.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-433/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2763]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#870]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#870]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-433/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2391]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#718]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#3309]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1489]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1489]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2387]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-basic: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2234]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#3414]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#3414]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-433/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_setmode@basic: - shard-bmg: [PASS][106] -> [FAIL][107] ([Intel XE#2883]) +6 other tests fail [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@kms_setmode@basic.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@kms_setmode@basic.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1499]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#1522]) +1 other test fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-3/igt@kms_vrr@flipline.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-8/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#756]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#756]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1126]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_drm_fdinfo@utilization-others-full-load: - shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#3869]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@xe_drm_fdinfo@utilization-others-full-load.html * igt@xe_drm_fdinfo@virtual-utilization-single-idle: - shard-bmg: NOTRUN -> [FAIL][116] ([Intel XE#3869]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@xe_drm_fdinfo@virtual-utilization-single-idle.html * igt@xe_eudebug@discovery-empty: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2905]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@xe_eudebug@discovery-empty.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2905]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-435/igt@xe_eudebug_online@resume-dss.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [PASS][119] -> [FAIL][120] ([Intel XE#1600]) +1 other test fail [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm-cm.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2322]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#288]) +9 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-435/igt@xe_oa@syncs-userptr-wait-cfg.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2248]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2427]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@xe_peer2peer@write.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2284]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-lnl: [PASS][127] -> [ABORT][128] ([Intel XE#1607] / [Intel XE#1794]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-7/igt@xe_pm@s4-vm-bind-prefetch.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#944]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@xe_query@multigpu-query-topology.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#944]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-huc.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [FAIL][131] ([Intel XE#3701] / [Intel XE#3718]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-dg2-set2: [INCOMPLETE][133] -> [PASS][134] +2 other tests pass [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][135] ([Intel XE#3719]) -> [PASS][136] +3 other tests pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: [FAIL][137] -> [PASS][138] +3 other tests pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-hdmi-a-3: - shard-bmg: [INCOMPLETE][139] ([Intel XE#3862]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-hdmi-a-3.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-hdmi-a-3.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [SKIP][141] ([Intel XE#2291]) -> [PASS][142] +2 other tests pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][143] ([Intel XE#2425]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][145] ([Intel XE#301]) -> [PASS][146] +3 other tests pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][147] ([Intel XE#2316]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3: - shard-bmg: [FAIL][149] ([Intel XE#3321]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: [FAIL][151] ([Intel XE#3321]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank@b-dp4: - shard-dg2-set2: [FAIL][153] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][154] +1 other test pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html * igt@kms_plane@plane-position-hole-dpms: - shard-bmg: [INCOMPLETE][155] ([Intel XE#1035]) -> [PASS][156] +1 other test pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_plane@plane-position-hole-dpms.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-7/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][157] ([Intel XE#718]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html * igt@xe_ccs@suspend-resume: - shard-dg2-set2: [INCOMPLETE][159] ([Intel XE#1616]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@xe_ccs@suspend-resume.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-463/igt@xe_ccs@suspend-resume.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][161] ([Intel XE#1473]) -> [PASS][162] +1 other test pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate: - shard-dg2-set2: [DMESG-WARN][163] -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-434/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html * igt@xe_module_load@load: - shard-bmg: ([PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [SKIP][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190]) ([Intel XE#2457]) -> ([PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-8/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-8/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-2/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-8/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-2/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-2/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-2/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-7/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@xe_module_load@load.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][215] ([Intel XE#958]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt@kms_content_protection@legacy: - shard-bmg: [SKIP][217] ([Intel XE#2341]) -> [FAIL][218] ([Intel XE#1178]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_content_protection@legacy.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-7/igt@kms_content_protection@legacy.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][219] ([Intel XE#2597]) -> [SKIP][220] ([Intel XE#2316]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move: - shard-bmg: [SKIP][221] ([Intel XE#2312]) -> [SKIP][222] ([Intel XE#2311]) +6 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move: - shard-bmg: [SKIP][223] ([Intel XE#2311]) -> [SKIP][224] ([Intel XE#2312]) +12 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][225] ([Intel XE#2333]) -> [SKIP][226] ([Intel XE#2312]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][227] ([Intel XE#2312]) -> [FAIL][228] ([Intel XE#2333]) +2 other tests fail [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][229] ([Intel XE#2313]) -> [SKIP][230] ([Intel XE#2312]) +13 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][231] ([Intel XE#2312]) -> [SKIP][232] ([Intel XE#2313]) +9 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][233] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][234] ([Intel XE#3544]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: [FAIL][235] -> [INCOMPLETE][236] ([Intel XE#3663]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@kms_pipe_crc_basic@suspend-read-crc.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-3/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][237] ([Intel XE#2426]) -> [FAIL][238] ([Intel XE#1729]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][239] ([Intel XE#362]) -> [FAIL][240] ([Intel XE#1729]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-bmg: [TIMEOUT][241] ([Intel XE#1473]) -> [INCOMPLETE][242] ([Intel XE#1473]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-large.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [ABORT][243] ([Intel XE#3765]) -> [ABORT][244] ([Intel XE#3421]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-8/igt@xe_wedged@wedged-at-any-timeout.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/shard-bmg-5/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#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [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#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3765]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3765 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [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#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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [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#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 Build changes ------------- * IGT: IGT_8164 -> IGTPW_12339 * Linux: xe-2396-e9a5d74b7f60fe6f7d55ebe636ff871214b6caec -> xe-2397-d8f0c44e2ed948dcc45d04a0dfa83612995a702b IGTPW_12339: 77abbe3a40634905b8e2e0015e6d3a12a55f4451 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8164: e9d9934c7c6dc6878792d82424fc928e7f6996cb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2396-e9a5d74b7f60fe6f7d55ebe636ff871214b6caec: e9a5d74b7f60fe6f7d55ebe636ff871214b6caec xe-2397-d8f0c44e2ed948dcc45d04a0dfa83612995a702b: d8f0c44e2ed948dcc45d04a0dfa83612995a702b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12339/index.html [-- Attachment #2: Type: text/html, Size: 67489 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode 2024-12-17 19:16 [PATCH i-g-t] RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B ` (3 preceding siblings ...) 2024-12-19 13:20 ` ✗ Xe.CI.Full: " Patchwork @ 2025-01-09 9:21 ` Karthik B S 4 siblings, 0 replies; 6+ messages in thread From: Karthik B S @ 2025-01-09 9:21 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: ankit.k.nautiyal, swati2.sharma Hi, On 12/18/2024 12:46 AM, Jeevan B wrote: > We need to ensure that the system does not use a joiner for modes that do > not require it. This test will validate that the correct non-joiner mode > is selected, and then forcing a modeset and flip on the last pipe. If the > joiner is mistakenly enabled for a non-joiner mode, the test should fail. > otherwise, the commit should proceed as expected. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/intel/kms_joiner.c | 83 ++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 83 insertions(+) > > diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c > index 9a353ee1b..a41f201d1 100644 > --- a/tests/intel/kms_joiner.c > +++ b/tests/intel/kms_joiner.c > @@ -71,10 +71,15 @@ > * SUBTEST: invalid-modeset-force-ultra-joiner > * Description: Verify if the modeset on the other pipes are rejected when > * the pipe A is active with force ultra joiner modeset. > + * > + * SUBTEST: basic-non-joiner > + * Description: > */ > IGT_TEST_DESCRIPTION("Test joiner / force joiner"); > > #define INVALID_TEST_OUTPUT 2 > +#define HDISPLAY_6K_PER_PIPE 6144 > +#define HDISPLAY_5K_PER_PIPE 5120 > > typedef struct { > int drm_fd; > @@ -82,6 +87,7 @@ typedef struct { > int ultra_joiner_output_count; > int non_big_joiner_output_count; > int non_ultra_joiner_output_count; > + int nonjoiner_output_count; > int mixed_output_count; > int output_count; > int n_pipes; > @@ -91,6 +97,7 @@ typedef struct { > igt_output_t *non_big_joiner_output[IGT_MAX_PIPES]; > igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES]; > igt_output_t *mixed_output[IGT_MAX_PIPES]; > + igt_output_t *nonjoiner_output[IGT_MAX_PIPES]; > enum pipe pipe_seq[IGT_MAX_PIPES]; > igt_display_t display; > } data_t; > @@ -161,6 +168,25 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe, > return master_pipe; > } > > +static bool nonjoiner_mode_found(int drm_fd, drmModeConnector *connector, drmModeModeInfo *mode) > +{ > + igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); > + igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); The second sort immediately following the first, nullifies the first one. Please check. Also with below loop is this sorting adding any value? > + > + for (int i = 0; i < connector->count_modes; i++) { > + drmModeModeInfo *current_mode = &connector->modes[i]; > + > + if ((current_mode->hdisplay <= HDISPLAY_6K_PER_PIPE && > + current_mode->clock <= max_dotclock) || > + (current_mode->hdisplay <= HDISPLAY_5K_PER_PIPE)) { Although this will give a non joiner mode, do we really want to test the first non-joiner mode we get. I feel this test would add value only if check the corner cases. > + *mode = *current_mode; > + return true; > + } > + } > + > + return false; > +} > + > static void test_single_joiner(data_t *data, int output_count, bool force_joiner) > { > int i; > @@ -409,6 +435,49 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display, > } > } > > +static void test_single_non_joiner(data_t *data) > +{ > + int count; > + igt_output_t **outputs, *output; > + igt_fb_t fb; > + igt_plane_t *primary; > + drmModeModeInfo mode; > + drmModeConnector *con; > + > + count = data->nonjoiner_output_count; > + outputs = data->nonjoiner_output; > + > + for (int i = 0; i < count; i++) { > + igt_display_reset(&data->display); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + output = outputs[i]; > + con = output->config.connector; > + > + if (nonjoiner_mode_found(data->drm_fd, con, &mode)) { > + igt_output_override_mode(output, &mode); > + igt_info("Assigning pipe %s to %s with mode %dx%d@%d\n", > + kmstest_pipe_name(data->pipe_seq[data->n_pipes - 1]), > + igt_output_name(output), mode.hdisplay, > + mode.vdisplay, mode.vrefresh); > + > + igt_output_set_pipe(output, data->pipe_seq[data->n_pipes - 1]); > + > + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > + > + igt_create_pattern_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888, > + DRM_FORMAT_MOD_LINEAR, &fb); > + > + igt_plane_set_fb(primary, &fb); > + igt_assert(igt_display_try_commit2(&data->display, COMMIT_ATOMIC)); Commit failure is not the right way to confirm if joiner is being used IMHO, as commit could fail for even reasons other than joiner being enabled. Please check if there is a better way to validate/confirm this. Thanks, Karthik.B.S > + igt_plane_set_fb(primary, NULL); > + igt_remove_fb(data->drm_fd, &fb); > + } > + else { > + igt_warn("No valid non-joiner mode found for output %s\n", igt_output_name(output)); > + } > + } > +} > + > igt_main > { > bool ultra_joiner_supported, is_dgfx; > @@ -423,6 +492,7 @@ igt_main > data.ultra_joiner_output_count = 0; > data.non_big_joiner_output_count = 0; > data.non_ultra_joiner_output_count = 0; > + data.nonjoiner_output_count = 0; > data.mixed_output_count = 0; > data.output_count = 0; > j = 0; > @@ -441,6 +511,7 @@ igt_main > > for_each_connected_output(&data.display, output) { > bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false; > + bool nonjoiner_found = false; > drmModeConnector *connector = output->config.connector; > > /* > @@ -451,6 +522,7 @@ igt_main > */ > bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode); > ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode); > + nonjoiner_found = nonjoiner_mode_found(data.drm_fd, connector, &mode); > > if (igt_has_force_joiner_debugfs(data.drm_fd, output->name)) > force_joiner_supported = true; > @@ -465,6 +537,9 @@ igt_main > else if (force_joiner_supported) > data.non_big_joiner_output[data.non_big_joiner_output_count++] = output; > > + if (nonjoiner_found) > + data.nonjoiner_output[data.nonjoiner_output_count++] = output; > + > data.output_count++; > } > if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) { > @@ -615,6 +690,14 @@ igt_main > } > } > > + igt_describe("Verify the basic modeset on big joiner mode on all pipes"); > + igt_subtest_with_dynamic("basic-non-joiner") { > + igt_require_f(data.n_pipes >= 1, > + "Minimum of 1 pipes are required\n"); > + igt_dynamic_f("non-joiner") > + test_single_non_joiner(&data); > + } > + > igt_fixture { > igt_display_fini(&data.display); > drm_close_driver(data.drm_fd); ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-01-09 9:21 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-17 19:16 [PATCH i-g-t] RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B 2024-12-18 20:28 ` ✓ i915.CI.BAT: success for " Patchwork 2024-12-18 22:29 ` ✓ Xe.CI.BAT: " Patchwork 2024-12-19 9:16 ` ✗ i915.CI.Full: failure " Patchwork 2024-12-19 13:20 ` ✗ Xe.CI.Full: " Patchwork 2025-01-09 9:21 ` [PATCH i-g-t] " Karthik B S
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox