* [PATCH i-g-t 0/7] add dsc-fallback test
@ 2025-02-11 18:05 Kunal Joshi
2025-02-11 18:05 ` [PATCH i-g-t 1/7] tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs Kunal Joshi
` (12 more replies)
0 siblings, 13 replies; 22+ messages in thread
From: Kunal Joshi @ 2025-02-11 18:05 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Add test to check we fallback to dsc when current
link params cannot accomadate bw required by
the current mode.
Kunal Joshi (7):
tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs
tests/intel/kms_mst_helper: add helper for MST-related functions
tests/intel/kms_dp_linktrain_fallback: refactor dp-fallback subtest
tests/intel/kms_dp_linktrain_fallback: fix typo
tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test
tests/intel/kms_dp_linktrain_fallback: disable ignore long hpd
HAX: Do not merge
tests/intel-ci/fast-feedback.testlist | 3 +-
tests/intel-ci/xe-fast-feedback.testlist | 3 +-
tests/intel/kms_dp_linktrain_fallback.c | 356 +++++++++++++++++++----
tests/intel/kms_mst_helper.c | 48 +++
tests/intel/kms_mst_helper.h | 15 +
tests/meson.build | 3 +
6 files changed, 367 insertions(+), 61 deletions(-)
create mode 100644 tests/intel/kms_mst_helper.c
create mode 100644 tests/intel/kms_mst_helper.h
--
2.25.1
^ permalink raw reply [flat|nested] 22+ messages in thread
* [PATCH i-g-t 1/7] tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
@ 2025-02-11 18:05 ` Kunal Joshi
2025-02-13 5:00 ` Nautiyal, Ankit K
2025-02-14 7:08 ` Sharma, Swati2
2025-02-11 18:05 ` [PATCH i-g-t 2/7] tests/intel/kms_mst_helper: add helper for MST-related functions Kunal Joshi
` (11 subsequent siblings)
12 siblings, 2 replies; 22+ messages in thread
From: Kunal Joshi @ 2025-02-11 18:05 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
refactor find_mst_outputs to improve error handling
v2: change return type to int (Ankit)
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel/kms_dp_linktrain_fallback.c | 23 ++++++++++++++++-------
1 file changed, 16 insertions(+), 7 deletions(-)
diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
index 415005774..edf9409b6 100644
--- a/tests/intel/kms_dp_linktrain_fallback.c
+++ b/tests/intel/kms_dp_linktrain_fallback.c
@@ -47,26 +47,33 @@ typedef int (*condition_check_fn)(int drm_fd, igt_output_t *output);
IGT_TEST_DESCRIPTION("Test link training fallback");
-static void find_mst_outputs(int drm_fd, data_t *data,
- igt_output_t *output,
- igt_output_t *mst_outputs[],
- int *num_mst_outputs)
+static int find_mst_outputs(int drm_fd, igt_display_t *display,
+ igt_output_t *output,
+ igt_output_t *mst_outputs[],
+ int *num_mst_outputs)
{
int output_root_id, root_id;
igt_output_t *connector_output;
+ if (!igt_check_output_is_dp_mst(output))
+ return -EINVAL;
+
output_root_id = igt_get_dp_mst_connector_id(output);
+ if (output_root_id == -EINVAL)
+ return -EINVAL;
/*
* If output is MST check all other connected output which shares
* same path and fill mst_outputs and num_mst_outputs
*/
- for_each_connected_output(&data->display, connector_output) {
+ for_each_connected_output(display, connector_output) {
if (!igt_check_output_is_dp_mst(connector_output))
continue;
+
root_id = igt_get_dp_mst_connector_id(connector_output);
if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id)
mst_outputs[(*num_mst_outputs)++] = connector_output;
}
+ return 0;
}
static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
@@ -83,8 +90,10 @@ static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
traversed_mst_outputs[i] == data->output->config.connector->connector_id)
return false;
- find_mst_outputs(data->drm_fd, data, data->output,
- mst_output, output_count);
+ igt_assert_f(find_mst_outputs(data->drm_fd, &data->display,
+ data->output, mst_output,
+ output_count) == 0,
+ "Unable to find mst outputs or given optput is not mst\n");
for (i = 0; i < *output_count; i++) {
output = mst_output[i];
--
2.25.1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 2/7] tests/intel/kms_mst_helper: add helper for MST-related functions
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
2025-02-11 18:05 ` [PATCH i-g-t 1/7] tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs Kunal Joshi
@ 2025-02-11 18:05 ` Kunal Joshi
2025-02-13 5:44 ` Nautiyal, Ankit K
2025-02-14 7:13 ` Sharma, Swati2
2025-02-11 18:05 ` [PATCH i-g-t 3/7] tests/intel/kms_dp_linktrain_fallback: refactor dp-fallback subtest Kunal Joshi
` (10 subsequent siblings)
12 siblings, 2 replies; 22+ messages in thread
From: Kunal Joshi @ 2025-02-11 18:05 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Add helper to centralize commonly used MST-related logic.
Move find_mst_outputs to lib.
v2: fix docs (Ankit)
split patch (Ankit)
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel/kms_dp_linktrain_fallback.c | 38 +++-----------------
tests/intel/kms_mst_helper.c | 48 +++++++++++++++++++++++++
tests/intel/kms_mst_helper.h | 15 ++++++++
tests/meson.build | 1 +
4 files changed, 69 insertions(+), 33 deletions(-)
create mode 100644 tests/intel/kms_mst_helper.c
create mode 100644 tests/intel/kms_mst_helper.h
diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
index edf9409b6..145bf2fc5 100644
--- a/tests/intel/kms_dp_linktrain_fallback.c
+++ b/tests/intel/kms_dp_linktrain_fallback.c
@@ -16,6 +16,7 @@
#include <sys/types.h>
#include "igt_sysfs.h"
#include "igt.h"
+#include "kms_mst_helper.h"
/**
* SUBTEST: dp-fallback
@@ -47,35 +48,6 @@ typedef int (*condition_check_fn)(int drm_fd, igt_output_t *output);
IGT_TEST_DESCRIPTION("Test link training fallback");
-static int find_mst_outputs(int drm_fd, igt_display_t *display,
- igt_output_t *output,
- igt_output_t *mst_outputs[],
- int *num_mst_outputs)
-{
- int output_root_id, root_id;
- igt_output_t *connector_output;
-
- if (!igt_check_output_is_dp_mst(output))
- return -EINVAL;
-
- output_root_id = igt_get_dp_mst_connector_id(output);
- if (output_root_id == -EINVAL)
- return -EINVAL;
- /*
- * If output is MST check all other connected output which shares
- * same path and fill mst_outputs and num_mst_outputs
- */
- for_each_connected_output(display, connector_output) {
- if (!igt_check_output_is_dp_mst(connector_output))
- continue;
-
- root_id = igt_get_dp_mst_connector_id(connector_output);
- if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id)
- mst_outputs[(*num_mst_outputs)++] = connector_output;
- }
- return 0;
-}
-
static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
int *output_count)
{
@@ -90,10 +62,10 @@ static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
traversed_mst_outputs[i] == data->output->config.connector->connector_id)
return false;
- igt_assert_f(find_mst_outputs(data->drm_fd, &data->display,
- data->output, mst_output,
- output_count) == 0,
- "Unable to find mst outputs or given optput is not mst\n");
+ igt_assert_f(igt_find_all_mst_output_in_topology(data->drm_fd, &data->display,
+ data->output, mst_output,
+ output_count) == 0,
+ "Unable to find mst outputs or given optput is not mst\n");
for (i = 0; i < *output_count; i++) {
output = mst_output[i];
diff --git a/tests/intel/kms_mst_helper.c b/tests/intel/kms_mst_helper.c
new file mode 100644
index 000000000..c12bf0703
--- /dev/null
+++ b/tests/intel/kms_mst_helper.c
@@ -0,0 +1,48 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include "kms_mst_helper.h"
+
+/*
+ * @drm_fd: DRM file descriptor
+ * @display: pointer to #igt_display_t structure
+ * @output: target output
+ * @mst_outputs: filled with mst output of same toplogy as @output
+ * @num_mst_outputs: filled with count of mst outputs found in topology
+ *
+ * Iterates over all connected outputs and adds each DP MST
+ * output that shares the same MST connector ID as @output
+ * into @mst_outputs.
+ *
+ * Returns: 0 on success, -error on failure
+ */
+int igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display,
+ igt_output_t *output,
+ igt_output_t *mst_outputs[],
+ int *num_mst_outputs)
+{
+ int output_root_id, root_id;
+ igt_output_t *connector_output;
+
+ if (!igt_check_output_is_dp_mst(output))
+ return -EINVAL;
+
+ output_root_id = igt_get_dp_mst_connector_id(output);
+ if (output_root_id == -EINVAL)
+ return -EINVAL;
+ /*
+ * If output is MST check all other connected output which shares
+ * same path and fill mst_outputs and num_mst_outputs
+ */
+ for_each_connected_output(display, connector_output) {
+ if (!igt_check_output_is_dp_mst(connector_output))
+ continue;
+
+ root_id = igt_get_dp_mst_connector_id(connector_output);
+ if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id)
+ mst_outputs[(*num_mst_outputs)++] = connector_output;
+ }
+ return 0;
+}
diff --git a/tests/intel/kms_mst_helper.h b/tests/intel/kms_mst_helper.h
new file mode 100644
index 000000000..5b62b979b
--- /dev/null
+++ b/tests/intel/kms_mst_helper.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef KMS_MST_HELPER_H
+#define KMS_MST_HELPER_H
+
+#include "igt.h"
+
+int igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display,
+ igt_output_t *output,
+ igt_output_t *mst_outputs[],
+ int *num_mst_outputs);
+#endif
diff --git a/tests/meson.build b/tests/meson.build
index 33dffad31..a6f6ad560 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -366,6 +366,7 @@ extra_sources = {
'kms_chamelium_edid': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
+ 'kms_dp_linktrain_fallback': [ join_paths ('intel', 'kms_mst_helper.c') ],
'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
}
--
2.25.1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 3/7] tests/intel/kms_dp_linktrain_fallback: refactor dp-fallback subtest
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
2025-02-11 18:05 ` [PATCH i-g-t 1/7] tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs Kunal Joshi
2025-02-11 18:05 ` [PATCH i-g-t 2/7] tests/intel/kms_mst_helper: add helper for MST-related functions Kunal Joshi
@ 2025-02-11 18:05 ` Kunal Joshi
2025-02-11 18:05 ` [PATCH i-g-t 4/7] tests/intel/kms_dp_linktrain_fallback: fix typo Kunal Joshi
` (9 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Kunal Joshi @ 2025-02-11 18:05 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Ankit Nautiyal
Extract some of the logic into below function for better reuse.
- force_failure_and_wait()
- wait_for_hotplug_and_check_bad()
- fix_link_status_and_recommit()
v2: remove . in debug messages (Ankit)
%s/primarys/primaries (Ankit)
remove additional comments (Ankit)
Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/intel/kms_dp_linktrain_fallback.c | 155 +++++++++++++++++++-----
1 file changed, 125 insertions(+), 30 deletions(-)
diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
index 145bf2fc5..55a71e35b 100644
--- a/tests/intel/kms_dp_linktrain_fallback.c
+++ b/tests/intel/kms_dp_linktrain_fallback.c
@@ -239,16 +239,124 @@ static int check_condition_with_timeout(int drm_fd, igt_output_t *output,
}
}
+/*
+ * Force a link training failure followed by link retrain, then
+ * block until the driver has no further pending retrain/failure.
+ * Returns false if we time out waiting.
+ */
+static bool force_failure_and_wait(data_t *data,
+ igt_output_t *output,
+ int failure_type,
+ int retrain_count,
+ double interval,
+ double timeout)
+{
+ igt_force_lt_failure(data->drm_fd, output, failure_type);
+ igt_force_link_retrain(data->drm_fd, output, retrain_count);
+
+ /* Wait until there's no pending retrain */
+ if (check_condition_with_timeout(data->drm_fd, output,
+ igt_get_dp_pending_retrain,
+ interval, timeout)) {
+ igt_info("Timed out waiting for pending retrain.\n");
+ return false;
+ }
+
+ /* Wait until there's no pending LT failures */
+ if (check_condition_with_timeout(data->drm_fd, output,
+ igt_get_dp_pending_lt_failures,
+ interval, timeout)) {
+ igt_info("Timed out waiting for pending LT failures.\n");
+ return false;
+ }
+
+ return true;
+}
+
+/*
+ * Waits for a hotplug event, then checks that the link-status is BAD.
+ * Returns false if the link-status isn't BAD or no hotplug arrives in time.
+ */
+static bool wait_for_hotplug_and_check_bad(int drm_fd,
+ data_t *data,
+ igt_output_t *output,
+ struct udev_monitor *mon,
+ double hotplug_timeout)
+{
+ uint32_t link_status_prop_id;
+ uint64_t link_status_value;
+ drmModePropertyPtr link_status_prop;
+
+ if (!igt_hotplug_detected(mon, hotplug_timeout)) {
+ igt_info("No hotplug event within %.2f seconds.\n", hotplug_timeout);
+ return false;
+ }
+
+ kmstest_get_property(drm_fd,
+ output->config.connector->connector_id,
+ DRM_MODE_OBJECT_CONNECTOR,
+ "link-status",
+ &link_status_prop_id, &link_status_value,
+ &link_status_prop);
+
+ if (link_status_value != DRM_MODE_LINK_STATUS_BAD) {
+ igt_info("Expected link-status=BAD but got %" PRIu64 "\n",
+ link_status_value);
+ return false;
+ }
+
+ return true;
+}
+
+/*
+ * Sets link status=GOOD for the specified outputs, then calls
+ * validate_modeset_for_outputs() to re-commit. Returns false
+ * if the re-commit fails.
+ */
+static bool fix_link_status_and_recommit(data_t *data,
+ igt_output_t *outputs[],
+ int *output_count,
+ drmModeModeInfo * modes[],
+ struct igt_fb fbs[],
+ struct igt_plane *primaries[])
+{
+ int i;
+ igt_output_t *out;
+
+ /* Set link-status=GOOD on each tested output */
+ for_each_connected_output(&data->display, out) {
+ for (i = 0; i < *output_count; i++) {
+ if (out->id == outputs[i]->id) {
+ igt_output_set_prop_value(
+ out, IGT_CONNECTOR_LINK_STATUS,
+ DRM_MODE_LINK_STATUS_GOOD);
+ }
+ }
+ }
+
+ if (!validate_modeset_for_outputs(data, outputs, output_count,
+ modes, fbs, primaries)) {
+ igt_info("Modeset validation failed after forcing link-status=GOOD\n");
+ return false;
+ }
+
+ if (igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL) != 0) {
+ igt_info("Commit failed after restoring link-status=GOOD\n");
+ return false;
+ }
+
+ return true;
+}
+
static void test_fallback(data_t *data, bool is_mst)
{
int output_count, retries;
int max_link_rate, curr_link_rate, prev_link_rate;
int max_lane_count, curr_lane_count, prev_lane_count;
igt_output_t *outputs[IGT_MAX_PIPES];
- uint32_t link_status_prop_id;
- uint64_t link_status_value;
- drmModeModeInfo *modes[IGT_MAX_PIPES];
- drmModePropertyPtr link_status_prop;
+ drmModeModeInfo * modes[IGT_MAX_PIPES];
struct igt_fb fbs[IGT_MAX_PIPES];
struct igt_plane *primarys[IGT_MAX_PIPES];
struct udev_monitor *mon;
@@ -275,19 +383,12 @@ static void test_fallback(data_t *data, bool is_mst)
prev_link_rate,
prev_lane_count);
mon = igt_watch_uevents();
- igt_force_lt_failure(data->drm_fd, data->output,
- LT_FAILURE_REDUCED_CAPS);
- igt_force_link_retrain(data->drm_fd, data->output,
- RETRAIN_COUNT);
-
- igt_assert_eq(check_condition_with_timeout(data->drm_fd,
- data->output,
- igt_get_dp_pending_retrain,
- 1.0, 20.0), 0);
- igt_assert_eq(check_condition_with_timeout(data->drm_fd,
- data->output,
- igt_get_dp_pending_lt_failures,
- 1.0, 20.0), 0);
+
+ igt_assert_f(force_failure_and_wait(data, data->output,
+ LT_FAILURE_REDUCED_CAPS,
+ RETRAIN_COUNT,
+ 1.0, 20.0),
+ "Link training failure steps timed out\n");
if (igt_get_dp_link_retrain_disabled(data->drm_fd,
data->output)) {
@@ -295,26 +396,20 @@ static void test_fallback(data_t *data, bool is_mst)
return;
}
- igt_assert_f(igt_hotplug_detected(mon, 20),
- "Didn't get hotplug for force link training failure\n");
+ igt_assert_f(wait_for_hotplug_and_check_bad(data->drm_fd,
+ data,
+ data->output,
+ mon,
+ 20.0), "Didn't get hotplug or link status != BAD\n");
- kmstest_get_property(data->drm_fd,
- data->output->config.connector->connector_id,
- DRM_MODE_OBJECT_CONNECTOR, "link-status",
- &link_status_prop_id, &link_status_value,
- &link_status_prop);
- igt_assert_eq(link_status_value, DRM_MODE_LINK_STATUS_BAD);
igt_flush_uevents(mon);
set_connector_link_status_good(data, outputs, &output_count);
- igt_assert_f(validate_modeset_for_outputs(data,
+ igt_assert_f(fix_link_status_and_recommit(data,
outputs,
&output_count,
modes,
fbs,
- primarys),
- "modeset failed\n");
- igt_display_commit2(&data->display, COMMIT_ATOMIC);
-
+ primarys), "modeset failed\n");
igt_assert_eq(data->output->values[IGT_CONNECTOR_LINK_STATUS], DRM_MODE_LINK_STATUS_GOOD);
curr_link_rate = igt_get_current_link_rate(data->drm_fd, data->output);
curr_lane_count = igt_get_current_lane_count(data->drm_fd, data->output);
--
2.25.1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 4/7] tests/intel/kms_dp_linktrain_fallback: fix typo
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (2 preceding siblings ...)
2025-02-11 18:05 ` [PATCH i-g-t 3/7] tests/intel/kms_dp_linktrain_fallback: refactor dp-fallback subtest Kunal Joshi
@ 2025-02-11 18:05 ` Kunal Joshi
2025-02-13 5:48 ` Nautiyal, Ankit K
2025-02-11 18:05 ` [PATCH i-g-t 5/7] tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test Kunal Joshi
` (8 subsequent siblings)
12 siblings, 1 reply; 22+ messages in thread
From: Kunal Joshi @ 2025-02-11 18:05 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
fix typo : %s/primarys/primaries
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel/kms_dp_linktrain_fallback.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
index 55a71e35b..c6e9fba53 100644
--- a/tests/intel/kms_dp_linktrain_fallback.c
+++ b/tests/intel/kms_dp_linktrain_fallback.c
@@ -358,7 +358,7 @@ static void test_fallback(data_t *data, bool is_mst)
igt_output_t *outputs[IGT_MAX_PIPES];
drmModeModeInfo * modes[IGT_MAX_PIPES];
struct igt_fb fbs[IGT_MAX_PIPES];
- struct igt_plane *primarys[IGT_MAX_PIPES];
+ struct igt_plane *primaries[IGT_MAX_PIPES];
struct udev_monitor *mon;
retries = SPURIOUS_HPD_RETRY;
@@ -367,7 +367,7 @@ static void test_fallback(data_t *data, bool is_mst)
igt_reset_link_params(data->drm_fd, data->output);
if (!setup_outputs(data, is_mst, outputs,
&output_count, modes, fbs,
- primarys))
+ primaries))
return;
igt_info("Testing link training fallback on %s\n",
@@ -409,7 +409,7 @@ static void test_fallback(data_t *data, bool is_mst)
&output_count,
modes,
fbs,
- primarys), "modeset failed\n");
+ primaries), "modeset failed\n");
igt_assert_eq(data->output->values[IGT_CONNECTOR_LINK_STATUS], DRM_MODE_LINK_STATUS_GOOD);
curr_link_rate = igt_get_current_link_rate(data->drm_fd, data->output);
curr_lane_count = igt_get_current_lane_count(data->drm_fd, data->output);
--
2.25.1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 5/7] tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (3 preceding siblings ...)
2025-02-11 18:05 ` [PATCH i-g-t 4/7] tests/intel/kms_dp_linktrain_fallback: fix typo Kunal Joshi
@ 2025-02-11 18:05 ` Kunal Joshi
2025-02-14 7:22 ` Sharma, Swati2
2025-02-14 7:28 ` Sharma, Swati2
2025-02-11 18:05 ` [PATCH i-g-t 6/7] tests/intel/kms_dp_linktrain_fallback: disable ignore long hpd Kunal Joshi
` (7 subsequent siblings)
12 siblings, 2 replies; 22+ messages in thread
From: Kunal Joshi @ 2025-02-11 18:05 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Ankit Nautiyal
Add new dsc-fallback test to check whether DSC
automatically kicks in while falling back to a
lower rate/lane.
v2: fix description (Swati)
fix indentation (Swati)
remove extra line (Swati)
make commit description clear (Ankit)
split refactor and dsc-fallback test (Ankit)
switch to igt_debug (Ankit)
v3: use macro instead of magic number (Ankit)
fix test order (Ankit)
new line before return (Ankit)
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/intel/kms_dp_linktrain_fallback.c | 162 +++++++++++++++++++++++-
tests/meson.build | 4 +-
2 files changed, 162 insertions(+), 4 deletions(-)
diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
index c6e9fba53..d26e25bba 100644
--- a/tests/intel/kms_dp_linktrain_fallback.c
+++ b/tests/intel/kms_dp_linktrain_fallback.c
@@ -17,10 +17,14 @@
#include "igt_sysfs.h"
#include "igt.h"
#include "kms_mst_helper.h"
+#include "kms_dsc_helper.h"
/**
* SUBTEST: dp-fallback
* Description: Test fallback on DP connectors
+ *
+ * SUBTEST: dsc-fallback
+ * Description: Test fallback to DSC when BW isn't sufficient
*/
#define RETRAIN_COUNT 1
@@ -46,7 +50,7 @@ typedef struct {
typedef int (*condition_check_fn)(int drm_fd, igt_output_t *output);
-IGT_TEST_DESCRIPTION("Test link training fallback");
+IGT_TEST_DESCRIPTION("Test link-training / dsc fallback");
static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
int *output_count)
@@ -424,7 +428,7 @@ static void test_fallback(data_t *data, bool is_mst)
}
}
-static bool run_test(data_t *data)
+static bool run_lt_fallback_test(data_t *data)
{
bool ran = false;
igt_output_t *output;
@@ -462,6 +466,153 @@ static bool run_test(data_t *data)
return ran;
}
+static void test_dsc_sst_fallback(data_t *data)
+{
+ bool non_dsc_mode_found = false;
+ bool dsc_fallback_successful = false;
+ int ret;
+ struct udev_monitor *mon;
+ drmModeModeInfo *mode_to_check;
+ igt_output_t *outputs[IGT_MAX_PIPES];
+ int output_count = 0;
+
+ igt_info("Checking DSC fallback on %s\n", igt_output_name(data->output));
+ data->pipe = PIPE_A;
+
+ igt_display_reset(&data->display);
+ igt_reset_link_params(data->drm_fd, data->output);
+ igt_force_link_retrain(data->drm_fd, data->output, RETRAIN_COUNT);
+
+ /* Find a mode that doesn't require DSC initially */
+ for_each_connector_mode(data->output) {
+ data->mode = &data->output->config.connector->modes[j__];
+ igt_create_color_fb(data->drm_fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0,
+ &data->fb);
+ igt_output_override_mode(data->output, data->mode);
+ igt_output_set_pipe(data->output, data->pipe);
+ data->primary = igt_output_get_plane_type(data->output,
+ DRM_PLANE_TYPE_PRIMARY);
+ igt_plane_set_fb(data->primary, &data->fb);
+
+ ret = igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_TEST_ONLY |
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL);
+ if (ret != 0) {
+ igt_debug("Skipping mode %dx%d@%d on %s\n",
+ data->mode->hdisplay, data->mode->vdisplay,
+ data->mode->vrefresh,
+ igt_output_name(data->output));
+ continue;
+ }
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ if (!igt_is_dsc_enabled(data->drm_fd,
+ data->output->name)) {
+ drmModeModeInfo *non_dsc_mode
+ = igt_output_get_mode(data->output);
+ igt_info("Found mode %dx%d@%d %s that doesn't need DSC with link rate %d and lane count %d\n",
+ non_dsc_mode->hdisplay, non_dsc_mode->vdisplay,
+ non_dsc_mode->vrefresh, non_dsc_mode->name,
+ igt_get_current_link_rate(data->drm_fd, data->output),
+ igt_get_current_lane_count(data->drm_fd, data->output));
+ non_dsc_mode_found = true;
+ break;
+ }
+ }
+ igt_require_f(non_dsc_mode_found,
+ "No non-DSC mode found on %s\n",
+ igt_output_name(data->output));
+
+ /* Repeatedly force link failure until DSC is required (or link is disabled) */
+ while (!igt_get_dp_link_retrain_disabled(data->drm_fd, data->output)) {
+ mon = igt_watch_uevents();
+
+ igt_assert_f(force_failure_and_wait(data, data->output,
+ LT_FAILURE_REDUCED_CAPS,
+ RETRAIN_COUNT, 1.0, 20.0),
+ "Forcing DSC fallback timed out\n");
+
+ if (igt_get_dp_link_retrain_disabled(data->drm_fd,
+ data->output)) {
+ igt_reset_connectors();
+ igt_flush_uevents(mon);
+ return;
+ }
+
+ igt_assert_f(wait_for_hotplug_and_check_bad(data->drm_fd,
+ data,
+ data->output,
+ mon,
+ 20.0),
+ "Didn't get hotplug or link-status=BAD for DSC\n");
+ igt_flush_uevents(mon);
+
+ outputs[output_count++] = data->output;
+ set_connector_link_status_good(data, outputs, &output_count);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ mode_to_check = igt_output_get_mode(data->output);
+
+ if (igt_is_dsc_enabled(data->drm_fd, data->output->name)) {
+ igt_info("mode %dx%d@%d now requires DSC with link rate %d and lane count %d\n",
+ mode_to_check->hdisplay, mode_to_check->vdisplay,
+ mode_to_check->vrefresh,
+ igt_get_current_link_rate(data->drm_fd, data->output),
+ igt_get_current_lane_count(data->drm_fd, data->output));
+ igt_info("DSC fallback successful on %s\n",
+ igt_output_name(data->output));
+ dsc_fallback_successful = true;
+ break;
+ } else {
+ igt_info("mode %dx%d@%d still doesn't require DSC\n",
+ mode_to_check->hdisplay, mode_to_check->vdisplay,
+ mode_to_check->vrefresh);
+ }
+ }
+ igt_assert_f(dsc_fallback_successful, "DSC fallback unsuccessful\n");
+}
+
+static bool run_dsc_sst_fallaback_test(data_t *data)
+{
+ bool ran = false;
+ igt_output_t *output;
+
+ if (!is_dsc_supported_by_source(data->drm_fd)) {
+ igt_info("DSC not supported by source.\n");
+ return ran;
+ }
+
+ for_each_connected_output(&data->display, output) {
+ data->output = output;
+
+ if (!igt_has_force_link_training_failure_debugfs(data->drm_fd,
+ data->output)) {
+ igt_info("Output %s doesn't support forcing link training.\n",
+ igt_output_name(data->output));
+ continue;
+ }
+
+ if (output->config.connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) {
+ igt_info("Skipping output %s as it's not DP\n", output->name);
+ continue;
+ }
+
+ if (!is_dsc_supported_by_sink(data->drm_fd, data->output)) {
+ igt_info("Skipping output %s as DSC not supported by sink\n",
+ igt_output_name(data->output));
+ continue;
+ }
+
+ ran = true;
+ test_dsc_sst_fallback(data);
+ }
+
+ return ran;
+}
+
igt_main
{
data_t data = {};
@@ -486,10 +637,15 @@ igt_main
}
igt_subtest("dp-fallback") {
- igt_require_f(run_test(&data),
+ igt_require_f(run_lt_fallback_test(&data),
"Skipping test as no output found or none supports fallback\n");
}
+ igt_subtest("dsc-fallback") {
+ igt_require_f(run_dsc_sst_fallaback_test(&data),
+ "Skipping test: DSC fallback conditions not met.\n");
+ }
+
igt_fixture {
igt_remove_fb(data.drm_fd, &data.fb);
igt_display_fini(&data.display);
diff --git a/tests/meson.build b/tests/meson.build
index a6f6ad560..95892762e 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -366,7 +366,9 @@ extra_sources = {
'kms_chamelium_edid': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
- 'kms_dp_linktrain_fallback': [ join_paths ('intel', 'kms_mst_helper.c') ],
+ 'kms_dp_linktrain_fallback': [
+ join_paths ('intel', 'kms_mst_helper.c'),
+ join_paths ('intel', 'kms_dsc_helper.c') ],
'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
}
--
2.25.1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 6/7] tests/intel/kms_dp_linktrain_fallback: disable ignore long hpd
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (4 preceding siblings ...)
2025-02-11 18:05 ` [PATCH i-g-t 5/7] tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test Kunal Joshi
@ 2025-02-11 18:05 ` Kunal Joshi
2025-02-11 18:05 ` [PATCH i-g-t 7/7] HAX: Do not merge Kunal Joshi
` (6 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Kunal Joshi @ 2025-02-11 18:05 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Ankit Nautiyal
Some systems may have environment variable IGT_KMS_IGNORE_HPD
set which will ignore hpd, disable it before starting the test.
Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/intel/kms_dp_linktrain_fallback.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
index d26e25bba..3a335f246 100644
--- a/tests/intel/kms_dp_linktrain_fallback.c
+++ b/tests/intel/kms_dp_linktrain_fallback.c
@@ -634,6 +634,12 @@ igt_main
if (current_log_level > 10)
igt_drm_debug_level_update(10);
}
+ /*
+ * Some environments may have environment
+ * variable set to ignore long hpd, disable it for this test
+ */
+ igt_assert_f(igt_ignore_long_hpd(data.drm_fd, false),
+ "Unable to disable ignore long hpd\n");
}
igt_subtest("dp-fallback") {
--
2.25.1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 7/7] HAX: Do not merge
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (5 preceding siblings ...)
2025-02-11 18:05 ` [PATCH i-g-t 6/7] tests/intel/kms_dp_linktrain_fallback: disable ignore long hpd Kunal Joshi
@ 2025-02-11 18:05 ` Kunal Joshi
2025-02-11 20:09 ` ✗ Xe.CI.BAT: failure for add dsc-fallback test (rev4) Patchwork
` (5 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Kunal Joshi @ 2025-02-11 18:05 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Don't merge, just for CI testing
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 3 ++-
tests/intel-ci/xe-fast-feedback.testlist | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..668fb3888 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -1,6 +1,7 @@
# Try to load the driver if it's not available yet.
igt@i915_module_load@load
-
+igt@kms_dp_linktrain_fallback@dsc-fallback
+igt@kms_dp_linktrain_fallback@dp-fallbck
# Keep alphabetically sorted by default
igt@core_auth@basic-auth
igt@debugfs_test@read_all_entries
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 0234d3e72..28f8b5015 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,6 +1,7 @@
# Should be the first test
igt@xe_module_load@load
-
+igt@kms_dp_linktrain_fallback@dsc-fallback
+igt@kms_dp_linktrain_fallback@dp-fallback
igt@fbdev@eof
igt@fbdev@info
igt@fbdev@nullptr
--
2.25.1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* ✗ Xe.CI.BAT: failure for add dsc-fallback test (rev4)
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (6 preceding siblings ...)
2025-02-11 18:05 ` [PATCH i-g-t 7/7] HAX: Do not merge Kunal Joshi
@ 2025-02-11 20:09 ` Patchwork
2025-02-11 20:37 ` ✗ i915.CI.BAT: " Patchwork
` (4 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-02-11 20:09 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3857 bytes --]
== Series Details ==
Series: add dsc-fallback test (rev4)
URL : https://patchwork.freedesktop.org/series/143877/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8228_BAT -> XEIGTPW_12576_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12576_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12576_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12576_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dp_linktrain_fallback@dsc-fallback (NEW):
- bat-lnl-1: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-lnl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-bmg-1: NOTRUN -> [SKIP][2] +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-bmg-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-dg2-oem2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-dg2-oem2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
New tests
---------
New tests have been introduced between XEIGT_8228_BAT and XEIGTPW_12576_BAT:
### New IGT tests (1) ###
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- Statuses : 8 skip(s)
- Exec time: [0.0, 0.00] s
Known issues
------------
Here are the changes found in XEIGTPW_12576_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_dp_linktrain_fallback@dp-fallback:
- bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#1024]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-atsm-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
- bat-adlp-vf: NOTRUN -> [SKIP][5] ([Intel XE#2463]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-adlp-vf/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback (NEW):
- bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#1024]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-pvc-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#3419]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-bmg-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-lnl-2: NOTRUN -> [SKIP][8] ([Intel XE#2235]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-lnl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
[Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
Build changes
-------------
* IGT: IGT_8228 -> IGTPW_12576
* Linux: xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 -> xe-2641-e1c145994c41ed6dd5265bc0a7a276fe1834f3ee
IGTPW_12576: 12576
IGT_8228: 8228
xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77
xe-2641-e1c145994c41ed6dd5265bc0a7a276fe1834f3ee: e1c145994c41ed6dd5265bc0a7a276fe1834f3ee
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/index.html
[-- Attachment #2: Type: text/html, Size: 4625 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ i915.CI.BAT: failure for add dsc-fallback test (rev4)
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (7 preceding siblings ...)
2025-02-11 20:09 ` ✗ Xe.CI.BAT: failure for add dsc-fallback test (rev4) Patchwork
@ 2025-02-11 20:37 ` Patchwork
2025-02-12 3:53 ` ✗ Xe.CI.Full: " Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-02-11 20:37 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11423 bytes --]
== Series Details ==
Series: add dsc-fallback test (rev4)
URL : https://patchwork.freedesktop.org/series/143877/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8228 -> IGTPW_12576
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12576 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12576, 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_12576/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): fi-hsw-4770 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12576:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dp_linktrain_fallback@dp-fallbck (NEW):
- bat-mtlp-9: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-mtlp-9/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-arls-6: NOTRUN -> [SKIP][2] +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arls-6/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-dg2-8: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-mtlp-6: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-mtlp-6/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-dg2-9: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallbck.html
* igt@kms_dp_linktrain_fallback@dsc-fallback (NEW):
- bat-adls-6: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adls-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-jsl-1: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-jsl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-rkl-11600: NOTRUN -> [SKIP][8] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-rkl-11600/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-arlh-3: NOTRUN -> [SKIP][9] +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arlh-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-dg1-7: NOTRUN -> [SKIP][10] +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg1-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-adlp-9: NOTRUN -> [SKIP][11] +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adlp-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-rpls-4: NOTRUN -> [SKIP][12] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-rpls-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-twl-1: NOTRUN -> [SKIP][13] +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-twl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-arls-5: NOTRUN -> [SKIP][14] +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arls-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-rplp-1: NOTRUN -> [SKIP][15] +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-rplp-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][16] +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-tgl-1115g4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-adlp-6: NOTRUN -> [SKIP][17] +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adlp-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-jsl-3: NOTRUN -> [SKIP][18]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-jsl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-twl-2: NOTRUN -> [SKIP][19] +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-twl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-dg2-11: NOTRUN -> [SKIP][20] +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-11/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-dg2-14: NOTRUN -> [SKIP][21] +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-14/igt@kms_dp_linktrain_fallback@dsc-fallback.html
New tests
---------
New tests have been introduced between IGT_8228 and IGTPW_12576:
### New IGT tests (2) ###
* igt@kms_dp_linktrain_fallback@dp-fallbck:
- Statuses : 40 skip(s)
- Exec time: [0.0] s
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- Statuses : 2 pass(s) 38 skip(s)
- Exec time: [0.0, 1.40] s
Known issues
------------
Here are the changes found in IGTPW_12576 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_dp_linktrain_fallback@dp-fallbck (NEW):
- bat-atsm-1: NOTRUN -> [SKIP][22] ([i915#6078]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-atsm-1/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- fi-ivb-3770: NOTRUN -> [SKIP][23] +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-ivb-3770/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- fi-kbl-guc: NOTRUN -> [SKIP][24] +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-kbl-guc/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-jsl-1: NOTRUN -> [SKIP][25]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-jsl-1/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-jsl-3: NOTRUN -> [SKIP][26]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-jsl-3/igt@kms_dp_linktrain_fallback@dp-fallbck.html
* igt@kms_dp_linktrain_fallback@dsc-fallback (NEW):
- fi-bsw-n3050: NOTRUN -> [SKIP][27] +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-bsw-n3050/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-arlh-2: NOTRUN -> [SKIP][28] ([i915#11346]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arlh-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-glk-j4005: NOTRUN -> [SKIP][29] +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-glk-j4005/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-kbl-7567u: NOTRUN -> [SKIP][30] +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-kbl-7567u/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-kbl-8809g: NOTRUN -> [SKIP][31] +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-kbl-8809g/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-apl-1: NOTRUN -> [SKIP][32] +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-apl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-cfl-guc: NOTRUN -> [SKIP][33] +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-cfl-guc/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-mtlp-6: NOTRUN -> [SKIP][34] ([i915#9792])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-mtlp-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-kbl-x1275: NOTRUN -> [SKIP][35] +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-kbl-x1275/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-adlp-11: NOTRUN -> [SKIP][36] ([i915#10470]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adlp-11/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-cfl-8109u: NOTRUN -> [SKIP][37] +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-cfl-8109u/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-dg1-6: NOTRUN -> [SKIP][38] ([i915#12311]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg1-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-ilk-650: NOTRUN -> [SKIP][39] +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-ilk-650/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-kbl-2: NOTRUN -> [SKIP][40] +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-kbl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-cfl-8700k: NOTRUN -> [SKIP][41] +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-cfl-8700k/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-elk-e7500: NOTRUN -> [SKIP][42] +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-elk-e7500/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-bsw-nick: NOTRUN -> [SKIP][43] +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-bsw-nick/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [PASS][44] -> [DMESG-WARN][45] ([i915#11621]) +47 other tests dmesg-warn
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][46] ([i915#12061]) -> [PASS][47] +1 other test pass
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311
[i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8228 -> IGTPW_12576
* Linux: CI_DRM_16103 -> CI_DRM_16110
CI-20190529: 20190529
CI_DRM_16103: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16110: e1c145994c41ed6dd5265bc0a7a276fe1834f3ee @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12576: 12576
IGT_8228: 8228
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/index.html
[-- Attachment #2: Type: text/html, Size: 12447 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ Xe.CI.Full: failure for add dsc-fallback test (rev4)
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (8 preceding siblings ...)
2025-02-11 20:37 ` ✗ i915.CI.BAT: " Patchwork
@ 2025-02-12 3:53 ` Patchwork
2025-02-13 5:53 ` [PATCH i-g-t 0/7] add dsc-fallback test Nautiyal, Ankit K
` (2 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-02-12 3:53 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 95096 bytes --]
== Series Details ==
Series: add dsc-fallback test (rev4)
URL : https://patchwork.freedesktop.org/series/143877/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8228_full -> XEIGTPW_12576_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with XEIGTPW_12576_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12576_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_12576_full:
### IGT changes ###
#### Warnings ####
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: [SKIP][1] ([Intel XE#3070]) -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
New tests
---------
New tests have been introduced between XEIGT_8228_full and XEIGTPW_12576_full:
### New IGT tests (4) ###
* igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [4.74] s
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- Statuses :
- Exec time: [None] s
* igt@kms_setmode@basic@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_setmode@basic@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
Known issues
------------
Here are the changes found in XEIGTPW_12576_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-lnl: NOTRUN -> [ABORT][3] ([Intel XE#3914])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@core_hotunplug@hotunplug-rescan.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
- shard-dg2-set2: [PASS][4] -> [DMESG-WARN][5] ([Intel XE#1033]) +49 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-463/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#3279]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1407])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [DMESG-WARN][9] ([Intel XE#4172])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2191])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2191]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1512])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#367]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#367])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-7/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][22] ([Intel XE#787]) +110 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2669]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2907])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#3432])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3432])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +9 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +10 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1152]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2252]) +7 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +6 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#306]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#306])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#373]) +7 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_color@ctm-signed:
- shard-bmg: [PASS][37] -> [DMESG-WARN][38] ([Intel XE#877]) +1 other test dmesg-warn
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_color@ctm-signed.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_color@ctm-signed.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][39] ([Intel XE#1178]) +4 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2341])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_content_protection@content-type-change.html
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3278])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-7/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2390])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#307])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#3304])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1188])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2320]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2321])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2321])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#4172]) +24 other tests dmesg-warn
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2286]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#309])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2-set2: [PASS][60] -> [SKIP][61] ([Intel XE#309]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#323]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#323]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-formats:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2244])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-4/igt@kms_dsc@dsc-with-formats.html
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2244])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#776])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2316]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#310])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_flip@2x-flip-vs-modeset.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1421]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@kms_flip@2x-flip-vs-rmfb.html
- shard-bmg: NOTRUN -> [INCOMPLETE][72] ([Intel XE#2049]) +1 other test incomplete
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#310])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#886]) +1 other test fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-7/igt@kms_flip@blocking-wf_vblank.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [PASS][76] -> [FAIL][77] ([Intel XE#301])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][78] -> [INCOMPLETE][79] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#2049] / [Intel XE#2597]) +2 other tests incomplete
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][82] ([Intel XE#2049] / [Intel XE#2597])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
- shard-bmg: [PASS][83] -> [FAIL][84] ([Intel XE#2882]) +3 other tests fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1397] / [Intel XE#1745])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#455]) +17 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2380]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2311]) +15 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +20 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4141]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [PASS][96] -> [SKIP][97] ([Intel XE#656]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2312]) +8 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#656]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#656]) +21 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#651]) +9 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2313]) +17 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#653]) +23 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt:
- shard-lnl: [PASS][104] -> [INCOMPLETE][105] ([Intel XE#2050])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2340])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdr@static-toggle-suspend:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1503])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1450] / [Intel XE#2568])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1450]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2927])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2927])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2927])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2501])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#356])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#356])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][116] ([Intel XE#1033]) +7 other tests dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-463/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2393])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#599])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][119] ([Intel XE#4212]) +2 other tests dmesg-warn
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2763]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2763]) +11 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2391])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1122])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#736])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][126] -> [FAIL][127] ([Intel XE#718])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: [PASS][128] -> [SKIP][129] ([Intel XE#836])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1489]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1489]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2893]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1406]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@kms_psr@psr2-basic.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2234])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-2/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#3414] / [Intel XE#3904])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: [PASS][139] -> [INCOMPLETE][140] ([Intel XE#4170])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-180.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#3414]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#1435])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][143] ([Intel XE#1729])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-dpms:
- shard-lnl: NOTRUN -> [FAIL][144] ([Intel XE#1522]) +1 other test fail
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1499]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#1499])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#756])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#756])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1091] / [Intel XE#2849])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@testdisplay:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][150] ([Intel XE#1033] / [Intel XE#2705] / [Intel XE#4212])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-463/igt@testdisplay.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1123]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eudebug@attach-debug-metadata:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@xe_eudebug@attach-debug-metadata.html
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#3889])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#3889])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#3889])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-7/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
* igt@xe_eudebug@discovery-race-sigint:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#4259])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@xe_eudebug@discovery-race-sigint.html
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#4259])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@xe_eudebug@discovery-race-sigint.html
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#4259])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@xe_eudebug@discovery-race-sigint.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2905]) +7 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2905]) +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#688]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2322]) +5 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1392]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1392])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_basic@multigpu-once-null:
- shard-dg2-set2: [PASS][166] -> [SKIP][167] ([Intel XE#1392]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@xe_exec_basic@multigpu-once-null.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#288]) +22 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_reset@close-execqueues-close-fd:
- shard-bmg: [PASS][169] -> [DMESG-WARN][170] ([Intel XE#4223])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@xe_exec_reset@close-execqueues-close-fd.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@xe_exec_reset@close-execqueues-close-fd.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2229])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [PASS][172] -> [SKIP][173] ([Intel XE#1192])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@xe_live_ktest@xe_migrate.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#4045]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@xe_mmap@pci-membarrier.html
* igt@xe_oa@missing-sample-flags:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@xe_oa@missing-sample-flags.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#2284] / [Intel XE#366])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2284])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [PASS][178] -> [DMESG-WARN][179] ([Intel XE#4172] / [Intel XE#569])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html
- shard-dg2-set2: [PASS][180] -> [DMESG-WARN][181] ([Intel XE#1033] / [Intel XE#569])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_pm@s3-multiple-execs.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@xe_pm@s3-multiple-execs.html
* igt@xe_query@multigpu-query-engines:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#944]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#944]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#944]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#4130])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@xe_sriov_auto_provisioning@fair-allocation.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][186] ([Intel XE#911]) -> [PASS][187] +3 other tests pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [DMESG-WARN][188] ([Intel XE#4172]) -> [PASS][189] +46 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-180.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][190] ([Intel XE#4010]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][192] ([Intel XE#1727] / [Intel XE#4010]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][194] ([Intel XE#309]) -> [PASS][195] +4 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-463/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][196] ([Intel XE#2291]) -> [PASS][197] +3 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [SKIP][198] ([Intel XE#3009]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_dp_aux_dev.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][200] ([Intel XE#3070]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][202] ([Intel XE#3321]) -> [PASS][203] +2 other tests pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-dg2-set2: [SKIP][204] ([Intel XE#310]) -> [PASS][205] +6 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@2x-nonexisting-fb.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][206] ([Intel XE#2316]) -> [PASS][207] +6 other tests pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][208] ([Intel XE#886]) -> [PASS][209] +4 other tests pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: [FAIL][210] ([Intel XE#301]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6:
- shard-dg2-set2: [DMESG-FAIL][212] ([Intel XE#1033]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][214] ([Intel XE#656]) -> [PASS][215] +9 other tests pass
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3:
- shard-bmg: [DMESG-WARN][216] ([Intel XE#877]) -> [PASS][217] +3 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html
* igt@kms_lease@simple-lease@pipe-d-hdmi-a-3:
- shard-bmg: [INCOMPLETE][218] -> [PASS][219] +1 other test pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_lease@simple-lease@pipe-d-hdmi-a-3.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_lease@simple-lease@pipe-d-hdmi-a-3.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][220] ([Intel XE#1033]) -> [PASS][221] +31 other tests pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-6.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-bmg: [DMESG-WARN][222] ([Intel XE#2566] / [Intel XE#4172]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [SKIP][224] ([Intel XE#836]) -> [PASS][225] +1 other test pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-dg2-set2: [INCOMPLETE][226] ([Intel XE#1727]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg2-set2: [SKIP][228] ([Intel XE#455]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [SKIP][230] ([Intel XE#1192]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_live_ktest@xe_bo.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@xe_live_ktest@xe_bo.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [SKIP][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257]) ([Intel XE#378]) -> ([PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-4/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-4/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-1/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-4/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-1/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-6/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-6/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-6/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-7/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-8/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-8/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-8/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-7/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-3/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-3/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-3/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-6/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-8/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-7/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-2/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-2/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-1/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-5/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-7/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-7/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-7/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-4/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-4/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-4/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-3/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-6/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-4/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-2/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-2/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-5/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-1/igt@xe_module_load@load.html
- shard-bmg: ([PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [SKIP][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308]) ([Intel XE#2457]) -> ([PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-5/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [SKIP][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359]) ([Intel XE#378]) -> ([PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-436/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-434/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-433/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-463/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-463/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-433/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-433/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-433/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@xe_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@xe_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@xe_module_load@load.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][385] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][386] +5 other tests pass
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@xe_pm@s3-d3hot-basic-exec.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][387] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][388] +3 other tests pass
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][389] ([Intel XE#787]) -> [SKIP][390] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][391] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][392] ([Intel XE#787]) +7 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [SKIP][393] ([Intel XE#455]) -> [FAIL][394] ([Intel XE#1178]) +1 other test fail
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_content_protection@lic-type-0.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: [DMESG-FAIL][395] ([Intel XE#4172]) -> [FAIL][396] ([Intel XE#1178]) +1 other test fail
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][397] ([Intel XE#2341]) -> [FAIL][398] ([Intel XE#1178])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_content_protection@srm.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-8/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][399] ([Intel XE#455]) -> [FAIL][400] ([Intel XE#1188])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_content_protection@uevent.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@kms_content_protection@uevent.html
- shard-bmg: [FAIL][401] ([Intel XE#1188]) -> [SKIP][402] ([Intel XE#2341])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_content_protection@uevent.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-dg2-set2: [SKIP][403] ([Intel XE#309]) -> [DMESG-WARN][404] ([Intel XE#1033])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-466/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [DMESG-WARN][405] ([Intel XE#4172]) -> [SKIP][406] ([Intel XE#2291])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-dg2-set2: [DMESG-WARN][407] ([Intel XE#1033]) -> [INCOMPLETE][408] ([Intel XE#3226])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-bmg: [FAIL][409] ([Intel XE#2882]) -> [SKIP][410] ([Intel XE#2316])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [DMESG-FAIL][411] ([Intel XE#1033]) -> [FAIL][412] ([Intel XE#301])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-lnl: [FAIL][413] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][414] ([Intel XE#886])
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][415] ([Intel XE#2312]) -> [SKIP][416] ([Intel XE#2311]) +14 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][417] ([Intel XE#2311]) -> [SKIP][418] ([Intel XE#2312]) +12 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][419] ([Intel XE#656]) -> [SKIP][420] ([Intel XE#651]) +18 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][421] ([Intel XE#2312]) -> [SKIP][422] ([Intel XE#4141]) +5 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][423] ([Intel XE#4141]) -> [SKIP][424] ([Intel XE#2312]) +3 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][425] ([Intel XE#651]) -> [SKIP][426] ([Intel XE#656]) +6 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][427] ([Intel XE#656]) -> [SKIP][428] ([Intel XE#653]) +15 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][429] ([Intel XE#2313]) -> [SKIP][430] ([Intel XE#2312]) +11 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][431] ([Intel XE#653]) -> [SKIP][432] ([Intel XE#656]) +7 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][433] ([Intel XE#2312]) -> [SKIP][434] ([Intel XE#2313]) +14 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][435] ([Intel XE#3544]) -> [SKIP][436] ([Intel XE#3374] / [Intel XE#3544])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][437] ([Intel XE#1173]) -> [SKIP][438] ([Intel XE#1061])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-464/igt@xe_peer2peer@write.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@xe_peer2peer@write.html
* igt@xe_pm@s4-mocs:
- shard-bmg: [ABORT][439] ([Intel XE#4172] / [Intel XE#4268]) -> [ABORT][440] ([Intel XE#4268])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-bmg-1/igt@xe_pm@s4-mocs.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-bmg-4/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [ABORT][441] ([Intel XE#1033] / [Intel XE#4268]) -> [ABORT][442] ([Intel XE#4268])
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-dg2-435/igt@xe_pm@s4-vm-bind-prefetch.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-dg2-432/igt@xe_pm@s4-vm-bind-prefetch.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[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#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4170]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4170
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4223]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4223
[Intel XE#4259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8228 -> IGTPW_12576
* Linux: xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 -> xe-2641-e1c145994c41ed6dd5265bc0a7a276fe1834f3ee
IGTPW_12576: 12576
IGT_8228: 8228
xe-2634-93f37b8d57cb5f1db7818eb395ad810ad1ed8b77: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77
xe-2641-e1c145994c41ed6dd5265bc0a7a276fe1834f3ee: e1c145994c41ed6dd5265bc0a7a276fe1834f3ee
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/index.html
[-- Attachment #2: Type: text/html, Size: 110590 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 1/7] tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs
2025-02-11 18:05 ` [PATCH i-g-t 1/7] tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs Kunal Joshi
@ 2025-02-13 5:00 ` Nautiyal, Ankit K
2025-02-14 7:08 ` Sharma, Swati2
1 sibling, 0 replies; 22+ messages in thread
From: Nautiyal, Ankit K @ 2025-02-13 5:00 UTC (permalink / raw)
To: Kunal Joshi, igt-dev
On 2/11/2025 11:35 PM, Kunal Joshi wrote:
> refactor find_mst_outputs to improve error handling
>
> v2: change return type to int (Ankit)
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> tests/intel/kms_dp_linktrain_fallback.c | 23 ++++++++++++++++-------
> 1 file changed, 16 insertions(+), 7 deletions(-)
>
> diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
> index 415005774..edf9409b6 100644
> --- a/tests/intel/kms_dp_linktrain_fallback.c
> +++ b/tests/intel/kms_dp_linktrain_fallback.c
> @@ -47,26 +47,33 @@ typedef int (*condition_check_fn)(int drm_fd, igt_output_t *output);
>
> IGT_TEST_DESCRIPTION("Test link training fallback");
>
> -static void find_mst_outputs(int drm_fd, data_t *data,
> - igt_output_t *output,
> - igt_output_t *mst_outputs[],
> - int *num_mst_outputs)
> +static int find_mst_outputs(int drm_fd, igt_display_t *display,
> + igt_output_t *output,
> + igt_output_t *mst_outputs[],
> + int *num_mst_outputs)
> {
> int output_root_id, root_id;
> igt_output_t *connector_output;
>
> + if (!igt_check_output_is_dp_mst(output))
> + return -EINVAL;
> +
> output_root_id = igt_get_dp_mst_connector_id(output);
> + if (output_root_id == -EINVAL)
> + return -EINVAL;
> /*
> * If output is MST check all other connected output which shares
> * same path and fill mst_outputs and num_mst_outputs
> */
> - for_each_connected_output(&data->display, connector_output) {
> + for_each_connected_output(display, connector_output) {
> if (!igt_check_output_is_dp_mst(connector_output))
> continue;
> +
> root_id = igt_get_dp_mst_connector_id(connector_output);
> if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id)
> mst_outputs[(*num_mst_outputs)++] = connector_output;
> }
> + return 0;
> }
>
> static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
> @@ -83,8 +90,10 @@ static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
> traversed_mst_outputs[i] == data->output->config.connector->connector_id)
> return false;
>
> - find_mst_outputs(data->drm_fd, data, data->output,
> - mst_output, output_count);
> + igt_assert_f(find_mst_outputs(data->drm_fd, &data->display,
> + data->output, mst_output,
> + output_count) == 0,
> + "Unable to find mst outputs or given optput is not mst\n");
>
> for (i = 0; i < *output_count; i++) {
> output = mst_output[i];
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 2/7] tests/intel/kms_mst_helper: add helper for MST-related functions
2025-02-11 18:05 ` [PATCH i-g-t 2/7] tests/intel/kms_mst_helper: add helper for MST-related functions Kunal Joshi
@ 2025-02-13 5:44 ` Nautiyal, Ankit K
2025-02-14 7:13 ` Sharma, Swati2
1 sibling, 0 replies; 22+ messages in thread
From: Nautiyal, Ankit K @ 2025-02-13 5:44 UTC (permalink / raw)
To: Kunal Joshi, igt-dev
On 2/11/2025 11:35 PM, Kunal Joshi wrote:
> Add helper to centralize commonly used MST-related logic.
> Move find_mst_outputs to lib.
>
> v2: fix docs (Ankit)
> split patch (Ankit)
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> tests/intel/kms_dp_linktrain_fallback.c | 38 +++-----------------
> tests/intel/kms_mst_helper.c | 48 +++++++++++++++++++++++++
> tests/intel/kms_mst_helper.h | 15 ++++++++
> tests/meson.build | 1 +
> 4 files changed, 69 insertions(+), 33 deletions(-)
> create mode 100644 tests/intel/kms_mst_helper.c
> create mode 100644 tests/intel/kms_mst_helper.h
>
> diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
> index edf9409b6..145bf2fc5 100644
> --- a/tests/intel/kms_dp_linktrain_fallback.c
> +++ b/tests/intel/kms_dp_linktrain_fallback.c
> @@ -16,6 +16,7 @@
> #include <sys/types.h>
> #include "igt_sysfs.h"
> #include "igt.h"
> +#include "kms_mst_helper.h"
>
> /**
> * SUBTEST: dp-fallback
> @@ -47,35 +48,6 @@ typedef int (*condition_check_fn)(int drm_fd, igt_output_t *output);
>
> IGT_TEST_DESCRIPTION("Test link training fallback");
>
> -static int find_mst_outputs(int drm_fd, igt_display_t *display,
> - igt_output_t *output,
> - igt_output_t *mst_outputs[],
> - int *num_mst_outputs)
> -{
> - int output_root_id, root_id;
> - igt_output_t *connector_output;
> -
> - if (!igt_check_output_is_dp_mst(output))
> - return -EINVAL;
> -
> - output_root_id = igt_get_dp_mst_connector_id(output);
> - if (output_root_id == -EINVAL)
> - return -EINVAL;
> - /*
> - * If output is MST check all other connected output which shares
> - * same path and fill mst_outputs and num_mst_outputs
> - */
> - for_each_connected_output(display, connector_output) {
> - if (!igt_check_output_is_dp_mst(connector_output))
> - continue;
> -
> - root_id = igt_get_dp_mst_connector_id(connector_output);
> - if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id)
> - mst_outputs[(*num_mst_outputs)++] = connector_output;
> - }
> - return 0;
> -}
> -
> static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
> int *output_count)
> {
> @@ -90,10 +62,10 @@ static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
> traversed_mst_outputs[i] == data->output->config.connector->connector_id)
> return false;
>
> - igt_assert_f(find_mst_outputs(data->drm_fd, &data->display,
> - data->output, mst_output,
> - output_count) == 0,
> - "Unable to find mst outputs or given optput is not mst\n");
> + igt_assert_f(igt_find_all_mst_output_in_topology(data->drm_fd, &data->display,
> + data->output, mst_output,
> + output_count) == 0,
> + "Unable to find mst outputs or given optput is not mst\n");
>
> for (i = 0; i < *output_count; i++) {
> output = mst_output[i];
> diff --git a/tests/intel/kms_mst_helper.c b/tests/intel/kms_mst_helper.c
> new file mode 100644
> index 000000000..c12bf0703
> --- /dev/null
> +++ b/tests/intel/kms_mst_helper.c
> @@ -0,0 +1,48 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#include "kms_mst_helper.h"
> +
> +/*
> + * @drm_fd: DRM file descriptor
> + * @display: pointer to #igt_display_t structure
> + * @output: target output
> + * @mst_outputs: filled with mst output of same toplogy as @output
> + * @num_mst_outputs: filled with count of mst outputs found in topology
> + *
> + * Iterates over all connected outputs and adds each DP MST
> + * output that shares the same MST connector ID as @output
> + * into @mst_outputs.
> + *
> + * Returns: 0 on success, -error on failure
> + */
> +int igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display,
> + igt_output_t *output,
> + igt_output_t *mst_outputs[],
> + int *num_mst_outputs)
> +{
> + int output_root_id, root_id;
> + igt_output_t *connector_output;
> +
> + if (!igt_check_output_is_dp_mst(output))
> + return -EINVAL;
> +
> + output_root_id = igt_get_dp_mst_connector_id(output);
> + if (output_root_id == -EINVAL)
> + return -EINVAL;
> + /*
> + * If output is MST check all other connected output which shares
> + * same path and fill mst_outputs and num_mst_outputs
> + */
> + for_each_connected_output(display, connector_output) {
> + if (!igt_check_output_is_dp_mst(connector_output))
> + continue;
> +
> + root_id = igt_get_dp_mst_connector_id(connector_output);
> + if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id)
> + mst_outputs[(*num_mst_outputs)++] = connector_output;
> + }
> + return 0;
> +}
> diff --git a/tests/intel/kms_mst_helper.h b/tests/intel/kms_mst_helper.h
> new file mode 100644
> index 000000000..5b62b979b
> --- /dev/null
> +++ b/tests/intel/kms_mst_helper.h
> @@ -0,0 +1,15 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#ifndef KMS_MST_HELPER_H
> +#define KMS_MST_HELPER_H
> +
> +#include "igt.h"
> +
> +int igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display,
> + igt_output_t *output,
> + igt_output_t *mst_outputs[],
> + int *num_mst_outputs);
> +#endif
> diff --git a/tests/meson.build b/tests/meson.build
> index 33dffad31..a6f6ad560 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -366,6 +366,7 @@ extra_sources = {
> 'kms_chamelium_edid': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> 'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> + 'kms_dp_linktrain_fallback': [ join_paths ('intel', 'kms_mst_helper.c') ],
> 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
> 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
> }
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 4/7] tests/intel/kms_dp_linktrain_fallback: fix typo
2025-02-11 18:05 ` [PATCH i-g-t 4/7] tests/intel/kms_dp_linktrain_fallback: fix typo Kunal Joshi
@ 2025-02-13 5:48 ` Nautiyal, Ankit K
0 siblings, 0 replies; 22+ messages in thread
From: Nautiyal, Ankit K @ 2025-02-13 5:48 UTC (permalink / raw)
To: Kunal Joshi, igt-dev
On 2/11/2025 11:35 PM, Kunal Joshi wrote:
> fix typo : %s/primarys/primaries
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> tests/intel/kms_dp_linktrain_fallback.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
> index 55a71e35b..c6e9fba53 100644
> --- a/tests/intel/kms_dp_linktrain_fallback.c
> +++ b/tests/intel/kms_dp_linktrain_fallback.c
> @@ -358,7 +358,7 @@ static void test_fallback(data_t *data, bool is_mst)
> igt_output_t *outputs[IGT_MAX_PIPES];
> drmModeModeInfo * modes[IGT_MAX_PIPES];
> struct igt_fb fbs[IGT_MAX_PIPES];
> - struct igt_plane *primarys[IGT_MAX_PIPES];
> + struct igt_plane *primaries[IGT_MAX_PIPES];
> struct udev_monitor *mon;
>
> retries = SPURIOUS_HPD_RETRY;
> @@ -367,7 +367,7 @@ static void test_fallback(data_t *data, bool is_mst)
> igt_reset_link_params(data->drm_fd, data->output);
> if (!setup_outputs(data, is_mst, outputs,
> &output_count, modes, fbs,
> - primarys))
> + primaries))
> return;
>
> igt_info("Testing link training fallback on %s\n",
> @@ -409,7 +409,7 @@ static void test_fallback(data_t *data, bool is_mst)
> &output_count,
> modes,
> fbs,
> - primarys), "modeset failed\n");
> + primaries), "modeset failed\n");
> igt_assert_eq(data->output->values[IGT_CONNECTOR_LINK_STATUS], DRM_MODE_LINK_STATUS_GOOD);
> curr_link_rate = igt_get_current_link_rate(data->drm_fd, data->output);
> curr_lane_count = igt_get_current_lane_count(data->drm_fd, data->output);
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 0/7] add dsc-fallback test
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (9 preceding siblings ...)
2025-02-12 3:53 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-02-13 5:53 ` Nautiyal, Ankit K
2025-02-16 11:05 ` Joshi, Kunal1
2025-02-14 6:48 ` ✓ i915.CI.BAT: success for add dsc-fallback test (rev4) Patchwork
2025-02-14 9:39 ` ✗ i915.CI.Full: failure " Patchwork
12 siblings, 1 reply; 22+ messages in thread
From: Nautiyal, Ankit K @ 2025-02-13 5:53 UTC (permalink / raw)
To: Kunal Joshi, igt-dev
On 2/11/2025 11:35 PM, Kunal Joshi wrote:
> Add test to check we fallback to dsc when current
> link params cannot accomadate bw required by
> the current mode.
>
> Kunal Joshi (7):
> tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs
> tests/intel/kms_mst_helper: add helper for MST-related functions
> tests/intel/kms_dp_linktrain_fallback: refactor dp-fallback subtest
> tests/intel/kms_dp_linktrain_fallback: fix typo
> tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test
> tests/intel/kms_dp_linktrain_fallback: disable ignore long hpd
The series looks good to me.
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> HAX: Do not merge
>
> tests/intel-ci/fast-feedback.testlist | 3 +-
> tests/intel-ci/xe-fast-feedback.testlist | 3 +-
> tests/intel/kms_dp_linktrain_fallback.c | 356 +++++++++++++++++++----
> tests/intel/kms_mst_helper.c | 48 +++
> tests/intel/kms_mst_helper.h | 15 +
> tests/meson.build | 3 +
> 6 files changed, 367 insertions(+), 61 deletions(-)
> create mode 100644 tests/intel/kms_mst_helper.c
> create mode 100644 tests/intel/kms_mst_helper.h
>
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✓ i915.CI.BAT: success for add dsc-fallback test (rev4)
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (10 preceding siblings ...)
2025-02-13 5:53 ` [PATCH i-g-t 0/7] add dsc-fallback test Nautiyal, Ankit K
@ 2025-02-14 6:48 ` Patchwork
2025-02-14 9:39 ` ✗ i915.CI.Full: failure " Patchwork
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-02-14 6:48 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 13878 bytes --]
== Series Details ==
Series: add dsc-fallback test (rev4)
URL : https://patchwork.freedesktop.org/series/143877/
State : success
== Summary ==
CI Bug Log - changes from IGT_8228 -> IGTPW_12576
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): fi-hsw-4770 fi-snb-2520m
New tests
---------
New tests have been introduced between IGT_8228 and IGTPW_12576:
### New IGT tests (2) ###
* igt@kms_dp_linktrain_fallback@dp-fallbck:
- Statuses : 40 skip(s)
- Exec time: [0.0] s
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- Statuses : 2 pass(s) 38 skip(s)
- Exec time: [0.0, 1.40] s
Known issues
------------
Here are the changes found in IGTPW_12576 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_dp_linktrain_fallback@dp-fallbck (NEW):
- bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#6078]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-atsm-1/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-mtlp-9: NOTRUN -> [SKIP][2] ([i915#13686])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-mtlp-9/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-arls-6: NOTRUN -> [SKIP][3] ([i915#13686])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arls-6/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- fi-ivb-3770: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-ivb-3770/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#13686])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- fi-kbl-guc: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-kbl-guc/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-adls-6: NOTRUN -> [SKIP][7] ([i915#13686])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adls-6/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-jsl-1: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-jsl-1/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-arlh-3: NOTRUN -> [SKIP][9] ([i915#13686])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arlh-3/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-dg1-7: NOTRUN -> [SKIP][10] ([i915#13686])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg1-7/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-adlp-9: NOTRUN -> [SKIP][11] ([i915#13686])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adlp-9/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-rpls-4: NOTRUN -> [SKIP][12] ([i915#13686])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-rpls-4/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-twl-1: NOTRUN -> [SKIP][13] ([i915#13686])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-twl-1/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-arls-5: NOTRUN -> [SKIP][14] ([i915#13686])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arls-5/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-rplp-1: NOTRUN -> [SKIP][15] ([i915#13686])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-rplp-1/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- fi-rkl-11600: NOTRUN -> [SKIP][16] ([i915#13686])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-rkl-11600/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][17] ([i915#13686])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-tgl-1115g4/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-mtlp-6: NOTRUN -> [SKIP][18] ([i915#13686])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-mtlp-6/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#13686])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-adlp-6: NOTRUN -> [SKIP][20] ([i915#13686])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adlp-6/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-jsl-3: NOTRUN -> [SKIP][21]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-jsl-3/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-twl-2: NOTRUN -> [SKIP][22] ([i915#13686])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-twl-2/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-dg2-11: NOTRUN -> [SKIP][23] ([i915#13686])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallbck.html
- bat-dg2-14: NOTRUN -> [SKIP][24] ([i915#13686])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-14/igt@kms_dp_linktrain_fallback@dp-fallbck.html
* igt@kms_dp_linktrain_fallback@dsc-fallback (NEW):
- bat-adls-6: NOTRUN -> [SKIP][25] ([i915#13685])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adls-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-jsl-1: NOTRUN -> [SKIP][26] ([i915#13685])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-jsl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-bsw-n3050: NOTRUN -> [SKIP][27] +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-bsw-n3050/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-arlh-2: NOTRUN -> [SKIP][28] ([i915#11346]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arlh-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-rkl-11600: NOTRUN -> [SKIP][29] ([i915#13685])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-rkl-11600/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-arlh-3: NOTRUN -> [SKIP][30] ([i915#13685])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arlh-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-dg1-7: NOTRUN -> [SKIP][31] ([i915#13685])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg1-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-glk-j4005: NOTRUN -> [SKIP][32] +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-glk-j4005/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-adlp-9: NOTRUN -> [SKIP][33] ([i915#13685])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adlp-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-rpls-4: NOTRUN -> [SKIP][34] ([i915#13685])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-rpls-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-kbl-7567u: NOTRUN -> [SKIP][35] +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-kbl-7567u/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-twl-1: NOTRUN -> [SKIP][36] ([i915#13685])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-twl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-kbl-8809g: NOTRUN -> [SKIP][37] +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-kbl-8809g/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-apl-1: NOTRUN -> [SKIP][38] +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-apl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-arls-5: NOTRUN -> [SKIP][39] ([i915#13685])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arls-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-rplp-1: NOTRUN -> [SKIP][40] ([i915#13685])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-rplp-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][41] ([i915#13685])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-tgl-1115g4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-cfl-guc: NOTRUN -> [SKIP][42] +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-cfl-guc/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-mtlp-6: NOTRUN -> [SKIP][43] ([i915#9792])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-mtlp-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-kbl-x1275: NOTRUN -> [SKIP][44] +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-kbl-x1275/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-adlp-11: NOTRUN -> [SKIP][45] ([i915#10470]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adlp-11/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-cfl-8109u: NOTRUN -> [SKIP][46] +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-cfl-8109u/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-dg1-6: NOTRUN -> [SKIP][47] ([i915#12311]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg1-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-ilk-650: NOTRUN -> [SKIP][48] +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-ilk-650/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-kbl-2: NOTRUN -> [SKIP][49] +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-kbl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-adlp-6: NOTRUN -> [SKIP][50] ([i915#13685])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-adlp-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-jsl-3: NOTRUN -> [SKIP][51] ([i915#13685])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-jsl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-twl-2: NOTRUN -> [SKIP][52] ([i915#13685])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-twl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-dg2-11: NOTRUN -> [SKIP][53] ([i915#13685])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-11/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-cfl-8700k: NOTRUN -> [SKIP][54] +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-cfl-8700k/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-dg2-14: NOTRUN -> [SKIP][55] ([i915#13685])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-dg2-14/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-elk-e7500: NOTRUN -> [SKIP][56] +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-elk-e7500/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- fi-bsw-nick: NOTRUN -> [SKIP][57] +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-bsw-nick/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-mtlp-9: NOTRUN -> [SKIP][58] ([i915#13685])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-mtlp-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- bat-arls-6: NOTRUN -> [SKIP][59] ([i915#13685])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arls-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [PASS][60] -> [DMESG-WARN][61] ([i915#11621]) +47 other tests dmesg-warn
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][62] ([i915#12061]) -> [PASS][63] +1 other test pass
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8228/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311
[i915#13685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13685
[i915#13686]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13686
[i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8228 -> IGTPW_12576
* Linux: CI_DRM_16103 -> CI_DRM_16110
CI-20190529: 20190529
CI_DRM_16103: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16110: e1c145994c41ed6dd5265bc0a7a276fe1834f3ee @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12576: 12576
IGT_8228: 8228
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/index.html
[-- Attachment #2: Type: text/html, Size: 17498 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 1/7] tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs
2025-02-11 18:05 ` [PATCH i-g-t 1/7] tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs Kunal Joshi
2025-02-13 5:00 ` Nautiyal, Ankit K
@ 2025-02-14 7:08 ` Sharma, Swati2
1 sibling, 0 replies; 22+ messages in thread
From: Sharma, Swati2 @ 2025-02-14 7:08 UTC (permalink / raw)
To: Kunal Joshi, igt-dev
Hi Kunal,
On 11-02-2025 11:35 pm, Kunal Joshi wrote:
> refactor find_mst_outputs to improve error handling
>
> v2: change return type to int (Ankit)
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> tests/intel/kms_dp_linktrain_fallback.c | 23 ++++++++++++++++-------
> 1 file changed, 16 insertions(+), 7 deletions(-)
>
> diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
> index 415005774..edf9409b6 100644
> --- a/tests/intel/kms_dp_linktrain_fallback.c
> +++ b/tests/intel/kms_dp_linktrain_fallback.c
> @@ -47,26 +47,33 @@ typedef int (*condition_check_fn)(int drm_fd, igt_output_t *output);
>
> IGT_TEST_DESCRIPTION("Test link training fallback");
>
> -static void find_mst_outputs(int drm_fd, data_t *data,
> - igt_output_t *output,
> - igt_output_t *mst_outputs[],
> - int *num_mst_outputs)
> +static int find_mst_outputs(int drm_fd, igt_display_t *display,
> + igt_output_t *output,
> + igt_output_t *mst_outputs[],
> + int *num_mst_outputs)
> {
> int output_root_id, root_id;
> igt_output_t *connector_output;
>
> + if (!igt_check_output_is_dp_mst(output))
> + return -EINVAL;
> +
> output_root_id = igt_get_dp_mst_connector_id(output);
> + if (output_root_id == -EINVAL)
> + return -EINVAL;
> /*
> * If output is MST check all other connected output which shares
> * same path and fill mst_outputs and num_mst_outputs
> */
> - for_each_connected_output(&data->display, connector_output) {
> + for_each_connected_output(display, connector_output) {
> if (!igt_check_output_is_dp_mst(connector_output))
> continue;
> +
> root_id = igt_get_dp_mst_connector_id(connector_output);
> if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id)
> mst_outputs[(*num_mst_outputs)++] = connector_output;
> }
> + return 0;
> }
>
> static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
> @@ -83,8 +90,10 @@ static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
> traversed_mst_outputs[i] == data->output->config.connector->connector_id)
> return false;
>
> - find_mst_outputs(data->drm_fd, data, data->output,
> - mst_output, output_count);
> + igt_assert_f(find_mst_outputs(data->drm_fd, &data->display,
> + data->output, mst_output,
> + output_count) == 0,
> + "Unable to find mst outputs or given optput is not mst\n");
Please fix the typo here.
>
> for (i = 0; i < *output_count; i++) {
> output = mst_output[i];
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 2/7] tests/intel/kms_mst_helper: add helper for MST-related functions
2025-02-11 18:05 ` [PATCH i-g-t 2/7] tests/intel/kms_mst_helper: add helper for MST-related functions Kunal Joshi
2025-02-13 5:44 ` Nautiyal, Ankit K
@ 2025-02-14 7:13 ` Sharma, Swati2
1 sibling, 0 replies; 22+ messages in thread
From: Sharma, Swati2 @ 2025-02-14 7:13 UTC (permalink / raw)
To: Kunal Joshi, igt-dev
Hi Kunal,
On 11-02-2025 11:35 pm, Kunal Joshi wrote:
> Add helper to centralize commonly used MST-related logic.
> Move find_mst_outputs to lib.
>
> v2: fix docs (Ankit)
> split patch (Ankit)
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> tests/intel/kms_dp_linktrain_fallback.c | 38 +++-----------------
> tests/intel/kms_mst_helper.c | 48 +++++++++++++++++++++++++
> tests/intel/kms_mst_helper.h | 15 ++++++++
> tests/meson.build | 1 +
> 4 files changed, 69 insertions(+), 33 deletions(-)
> create mode 100644 tests/intel/kms_mst_helper.c
> create mode 100644 tests/intel/kms_mst_helper.h
>
> diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
> index edf9409b6..145bf2fc5 100644
> --- a/tests/intel/kms_dp_linktrain_fallback.c
> +++ b/tests/intel/kms_dp_linktrain_fallback.c
> @@ -16,6 +16,7 @@
> #include <sys/types.h>
> #include "igt_sysfs.h"
> #include "igt.h"
> +#include "kms_mst_helper.h"
>
> /**
> * SUBTEST: dp-fallback
> @@ -47,35 +48,6 @@ typedef int (*condition_check_fn)(int drm_fd, igt_output_t *output);
>
> IGT_TEST_DESCRIPTION("Test link training fallback");
>
> -static int find_mst_outputs(int drm_fd, igt_display_t *display,
> - igt_output_t *output,
> - igt_output_t *mst_outputs[],
> - int *num_mst_outputs)
> -{
> - int output_root_id, root_id;
> - igt_output_t *connector_output;
> -
> - if (!igt_check_output_is_dp_mst(output))
> - return -EINVAL;
> -
> - output_root_id = igt_get_dp_mst_connector_id(output);
> - if (output_root_id == -EINVAL)
> - return -EINVAL;
> - /*
> - * If output is MST check all other connected output which shares
> - * same path and fill mst_outputs and num_mst_outputs
> - */
> - for_each_connected_output(display, connector_output) {
> - if (!igt_check_output_is_dp_mst(connector_output))
> - continue;
> -
> - root_id = igt_get_dp_mst_connector_id(connector_output);
> - if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id)
> - mst_outputs[(*num_mst_outputs)++] = connector_output;
> - }
> - return 0;
> -}
> -
> static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
> int *output_count)
> {
> @@ -90,10 +62,10 @@ static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
> traversed_mst_outputs[i] == data->output->config.connector->connector_id)
> return false;
>
> - igt_assert_f(find_mst_outputs(data->drm_fd, &data->display,
> - data->output, mst_output,
> - output_count) == 0,
> - "Unable to find mst outputs or given optput is not mst\n");
> + igt_assert_f(igt_find_all_mst_output_in_topology(data->drm_fd, &data->display,
> + data->output, mst_output,
> + output_count) == 0,
> + "Unable to find mst outputs or given optput is not mst\n");
Please fix the typo here too.
>
> for (i = 0; i < *output_count; i++) {
> output = mst_output[i];
> diff --git a/tests/intel/kms_mst_helper.c b/tests/intel/kms_mst_helper.c
> new file mode 100644
> index 000000000..c12bf0703
> --- /dev/null
> +++ b/tests/intel/kms_mst_helper.c
> @@ -0,0 +1,48 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#include "kms_mst_helper.h"
> +
> +/*
> + * @drm_fd: DRM file descriptor
> + * @display: pointer to #igt_display_t structure
> + * @output: target output
> + * @mst_outputs: filled with mst output of same toplogy as @output
> + * @num_mst_outputs: filled with count of mst outputs found in topology
> + *
> + * Iterates over all connected outputs and adds each DP MST
> + * output that shares the same MST connector ID as @output
> + * into @mst_outputs.
> + *
> + * Returns: 0 on success, -error on failure
> + */
> +int igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display,
> + igt_output_t *output,
> + igt_output_t *mst_outputs[],
> + int *num_mst_outputs)
> +{
> + int output_root_id, root_id;
> + igt_output_t *connector_output;
> +
> + if (!igt_check_output_is_dp_mst(output))
> + return -EINVAL;
> +
> + output_root_id = igt_get_dp_mst_connector_id(output);
> + if (output_root_id == -EINVAL)
> + return -EINVAL;
> + /*
> + * If output is MST check all other connected output which shares
> + * same path and fill mst_outputs and num_mst_outputs
> + */
> + for_each_connected_output(display, connector_output) {
> + if (!igt_check_output_is_dp_mst(connector_output))
> + continue;
> +
> + root_id = igt_get_dp_mst_connector_id(connector_output);
> + if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id)
> + mst_outputs[(*num_mst_outputs)++] = connector_output;
> + }
> + return 0;
> +}
> diff --git a/tests/intel/kms_mst_helper.h b/tests/intel/kms_mst_helper.h
> new file mode 100644
> index 000000000..5b62b979b
> --- /dev/null
> +++ b/tests/intel/kms_mst_helper.h
> @@ -0,0 +1,15 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#ifndef KMS_MST_HELPER_H
> +#define KMS_MST_HELPER_H
> +
> +#include "igt.h"
> +
> +int igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display,
> + igt_output_t *output,
> + igt_output_t *mst_outputs[],
> + int *num_mst_outputs);
> +#endif
> diff --git a/tests/meson.build b/tests/meson.build
> index 33dffad31..a6f6ad560 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -366,6 +366,7 @@ extra_sources = {
> 'kms_chamelium_edid': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> 'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> + 'kms_dp_linktrain_fallback': [ join_paths ('intel', 'kms_mst_helper.c') ],
> 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
> 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
> }
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 5/7] tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test
2025-02-11 18:05 ` [PATCH i-g-t 5/7] tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test Kunal Joshi
@ 2025-02-14 7:22 ` Sharma, Swati2
2025-02-14 7:28 ` Sharma, Swati2
1 sibling, 0 replies; 22+ messages in thread
From: Sharma, Swati2 @ 2025-02-14 7:22 UTC (permalink / raw)
To: Kunal Joshi, igt-dev; +Cc: Ankit Nautiyal
Hi Kunal,
On 11-02-2025 11:35 pm, Kunal Joshi wrote:
> Add new dsc-fallback test to check whether DSC
> automatically kicks in while falling back to a
> lower rate/lane.
>
> v2: fix description (Swati)
> fix indentation (Swati)
> remove extra line (Swati)
> make commit description clear (Ankit)
> split refactor and dsc-fallback test (Ankit)
> switch to igt_debug (Ankit)
>
> v3: use macro instead of magic number (Ankit)
> fix test order (Ankit)
> new line before return (Ankit)
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> tests/intel/kms_dp_linktrain_fallback.c | 162 +++++++++++++++++++++++-
> tests/meson.build | 4 +-
> 2 files changed, 162 insertions(+), 4 deletions(-)
>
> diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
> index c6e9fba53..d26e25bba 100644
> --- a/tests/intel/kms_dp_linktrain_fallback.c
> +++ b/tests/intel/kms_dp_linktrain_fallback.c
> @@ -17,10 +17,14 @@
> #include "igt_sysfs.h"
> #include "igt.h"
> #include "kms_mst_helper.h"
> +#include "kms_dsc_helper.h"
>
> /**
> * SUBTEST: dp-fallback
> * Description: Test fallback on DP connectors
> + *
> + * SUBTEST: dsc-fallback
> + * Description: Test fallback to DSC when BW isn't sufficient
Please add functionality here as dsc.
> */
>
> #define RETRAIN_COUNT 1
> @@ -46,7 +50,7 @@ typedef struct {
>
> typedef int (*condition_check_fn)(int drm_fd, igt_output_t *output);
>
> -IGT_TEST_DESCRIPTION("Test link training fallback");
> +IGT_TEST_DESCRIPTION("Test link-training / dsc fallback");
>
> static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[],
> int *output_count)
> @@ -424,7 +428,7 @@ static void test_fallback(data_t *data, bool is_mst)
> }
> }
>
> -static bool run_test(data_t *data)
> +static bool run_lt_fallback_test(data_t *data)
> {
> bool ran = false;
> igt_output_t *output;
> @@ -462,6 +466,153 @@ static bool run_test(data_t *data)
> return ran;
> }
>
> +static void test_dsc_sst_fallback(data_t *data)
> +{
> + bool non_dsc_mode_found = false;
> + bool dsc_fallback_successful = false;
> + int ret;
> + struct udev_monitor *mon;
> + drmModeModeInfo *mode_to_check;
> + igt_output_t *outputs[IGT_MAX_PIPES];
> + int output_count = 0;
> +
> + igt_info("Checking DSC fallback on %s\n", igt_output_name(data->output));
> + data->pipe = PIPE_A;
> +
> + igt_display_reset(&data->display);
> + igt_reset_link_params(data->drm_fd, data->output);
> + igt_force_link_retrain(data->drm_fd, data->output, RETRAIN_COUNT);
> +
> + /* Find a mode that doesn't require DSC initially */
> + for_each_connector_mode(data->output) {
> + data->mode = &data->output->config.connector->modes[j__];
> + igt_create_color_fb(data->drm_fd, data->mode->hdisplay,
> + data->mode->vdisplay, DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0,
> + &data->fb);
> + igt_output_override_mode(data->output, data->mode);
> + igt_output_set_pipe(data->output, data->pipe);
> + data->primary = igt_output_get_plane_type(data->output,
> + DRM_PLANE_TYPE_PRIMARY);
> + igt_plane_set_fb(data->primary, &data->fb);
> +
> + ret = igt_display_try_commit_atomic(&data->display,
> + DRM_MODE_ATOMIC_TEST_ONLY |
> + DRM_MODE_ATOMIC_ALLOW_MODESET,
> + NULL);
> + if (ret != 0) {
> + igt_debug("Skipping mode %dx%d@%d on %s\n",
> + data->mode->hdisplay, data->mode->vdisplay,
> + data->mode->vrefresh,
> + igt_output_name(data->output));
> + continue;
> + }
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + if (!igt_is_dsc_enabled(data->drm_fd,
> + data->output->name)) {
> + drmModeModeInfo *non_dsc_mode
> + = igt_output_get_mode(data->output);
> + igt_info("Found mode %dx%d@%d %s that doesn't need DSC with link rate %d and lane count %d\n",
> + non_dsc_mode->hdisplay, non_dsc_mode->vdisplay,
> + non_dsc_mode->vrefresh, non_dsc_mode->name,
> + igt_get_current_link_rate(data->drm_fd, data->output),
> + igt_get_current_lane_count(data->drm_fd, data->output));
> + non_dsc_mode_found = true;
> + break;
> + }
> + }
> + igt_require_f(non_dsc_mode_found,
> + "No non-DSC mode found on %s\n",
> + igt_output_name(data->output));
> +
> + /* Repeatedly force link failure until DSC is required (or link is disabled) */
> + while (!igt_get_dp_link_retrain_disabled(data->drm_fd, data->output)) {
> + mon = igt_watch_uevents();
> +
> + igt_assert_f(force_failure_and_wait(data, data->output,
> + LT_FAILURE_REDUCED_CAPS,
> + RETRAIN_COUNT, 1.0, 20.0),
> + "Forcing DSC fallback timed out\n");
> +
> + if (igt_get_dp_link_retrain_disabled(data->drm_fd,
> + data->output)) {
> + igt_reset_connectors();
> + igt_flush_uevents(mon);
> + return;
> + }
> +
> + igt_assert_f(wait_for_hotplug_and_check_bad(data->drm_fd,
> + data,
> + data->output,
> + mon,
> + 20.0),
> + "Didn't get hotplug or link-status=BAD for DSC\n");
> + igt_flush_uevents(mon);
> +
> + outputs[output_count++] = data->output;
> + set_connector_link_status_good(data, outputs, &output_count);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + mode_to_check = igt_output_get_mode(data->output);
> +
> + if (igt_is_dsc_enabled(data->drm_fd, data->output->name)) {
> + igt_info("mode %dx%d@%d now requires DSC with link rate %d and lane count %d\n",
> + mode_to_check->hdisplay, mode_to_check->vdisplay,
> + mode_to_check->vrefresh,
> + igt_get_current_link_rate(data->drm_fd, data->output),
> + igt_get_current_lane_count(data->drm_fd, data->output));
> + igt_info("DSC fallback successful on %s\n",
> + igt_output_name(data->output));
> + dsc_fallback_successful = true;
> + break;
> + } else {
> + igt_info("mode %dx%d@%d still doesn't require DSC\n",
> + mode_to_check->hdisplay, mode_to_check->vdisplay,
> + mode_to_check->vrefresh);
> + }
> + }
> + igt_assert_f(dsc_fallback_successful, "DSC fallback unsuccessful\n");
> +}
> +
> +static bool run_dsc_sst_fallaback_test(data_t *data)
> +{
> + bool ran = false;
> + igt_output_t *output;
> +
> + if (!is_dsc_supported_by_source(data->drm_fd)) {
> + igt_info("DSC not supported by source.\n");
> + return ran;
> + }
> +
> + for_each_connected_output(&data->display, output) {
> + data->output = output;
> +
> + if (!igt_has_force_link_training_failure_debugfs(data->drm_fd,
> + data->output)) {
> + igt_info("Output %s doesn't support forcing link training.\n",
> + igt_output_name(data->output));
> + continue;
> + }
> +
> + if (output->config.connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) {
> + igt_info("Skipping output %s as it's not DP\n", output->name);
> + continue;
> + }
> +
> + if (!is_dsc_supported_by_sink(data->drm_fd, data->output)) {
> + igt_info("Skipping output %s as DSC not supported by sink\n",
> + igt_output_name(data->output));
> + continue;
> + }
> +
> + ran = true;
> + test_dsc_sst_fallback(data);
> + }
> +
> + return ran;
> +}
> +
> igt_main
> {
> data_t data = {};
> @@ -486,10 +637,15 @@ igt_main
> }
>
> igt_subtest("dp-fallback") {
> - igt_require_f(run_test(&data),
> + igt_require_f(run_lt_fallback_test(&data),
> "Skipping test as no output found or none supports fallback\n");
> }
>
> + igt_subtest("dsc-fallback") {
> + igt_require_f(run_dsc_sst_fallaback_test(&data),
> + "Skipping test: DSC fallback conditions not met.\n");
Make this skip statement as consistent to above. Remove : and full stop
Something like
"Skipping test as DSC fallback..."
> + }
> +
> igt_fixture {
> igt_remove_fb(data.drm_fd, &data.fb);
> igt_display_fini(&data.display);
> diff --git a/tests/meson.build b/tests/meson.build
> index a6f6ad560..95892762e 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -366,7 +366,9 @@ extra_sources = {
> 'kms_chamelium_edid': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> 'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> - 'kms_dp_linktrain_fallback': [ join_paths ('intel', 'kms_mst_helper.c') ],
> + 'kms_dp_linktrain_fallback': [
> + join_paths ('intel', 'kms_mst_helper.c'),
> + join_paths ('intel', 'kms_dsc_helper.c') ],
> 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
> 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
> }
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 5/7] tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test
2025-02-11 18:05 ` [PATCH i-g-t 5/7] tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test Kunal Joshi
2025-02-14 7:22 ` Sharma, Swati2
@ 2025-02-14 7:28 ` Sharma, Swati2
1 sibling, 0 replies; 22+ messages in thread
From: Sharma, Swati2 @ 2025-02-14 7:28 UTC (permalink / raw)
To: igt-dev
Hi Kunal,
Sorry missed one comment.
On 11-02-2025 11:35 pm, Kunal Joshi wrote:
> + if (!is_dsc_supported_by_sink(data->drm_fd, data->output)) {
> + igt_info("Skipping output %s as DSC not supported by sink\n",
> + igt_output_name(data->output));
Here no need to add igt_info. Its already there in
is_dsc_supported_by_sink()
You can check here
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-dg2-oem2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
DSC not supported on connector DP-3
Skipping output DP-3 as DSC not supported by sink
Same info, we are getting twice.
> + continue;
> + }
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ i915.CI.Full: failure for add dsc-fallback test (rev4)
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
` (11 preceding siblings ...)
2025-02-14 6:48 ` ✓ i915.CI.BAT: success for add dsc-fallback test (rev4) Patchwork
@ 2025-02-14 9:39 ` Patchwork
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-02-14 9:39 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 138463 bytes --]
== Series Details ==
Series: add dsc-fallback test (rev4)
URL : https://patchwork.freedesktop.org/series/143877/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16110_full -> IGTPW_12576_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12576_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12576_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_12576/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_12576_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_mmap_offset@open-flood:
- shard-rkl: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-1/igt@gem_mmap_offset@open-flood.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-5/igt@gem_mmap_offset@open-flood.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk1/igt@i915_suspend@debugfs-reader.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-rkl: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu-1: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][8] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback (NEW):
- shard-tglu: NOTRUN -> [SKIP][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@perf_pmu@rc6@runtime-pm-gt0:
- shard-rkl: [PASS][10] -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-1/igt@perf_pmu@rc6@runtime-pm-gt0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-7/igt@perf_pmu@rc6@runtime-pm-gt0.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: [PASS][12] -> [DMESG-WARN][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
New tests
---------
New tests have been introduced between CI_DRM_16110_full and IGTPW_12576_full:
### New IGT tests (6) ###
* igt@kms_cursor_edge_walk@128x128-top-edge@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [3.44] s
* igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [3.38] s
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [3.46] s
* igt@kms_cursor_edge_walk@64x64-left-edge@pipe-d-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [3.21, 3.66] s
* igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [3.49] s
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- Statuses : 5 skip(s)
- Exec time: [0.0, 0.00] s
Known issues
------------
Here are the changes found in IGTPW_12576_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8411])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#6230])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-10/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2-9: NOTRUN -> [SKIP][16] ([i915#8411])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#11078])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-10/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#11078])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-12/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][19] ([i915#11814] / [i915#11815] / [i915#9413])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-dg2-9: NOTRUN -> [SKIP][20] ([i915#8414])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +26 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8414]) +6 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-3/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8414]) +17 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4873])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-1/igt@gem_caching@reads.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#9323])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy.html
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#9323])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#13008])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-9/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2-9: NOTRUN -> [INCOMPLETE][31] ([i915#13356])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2-9: NOTRUN -> [INCOMPLETE][32] ([i915#12392] / [i915#13356])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#7697])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#7697]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#7697])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#7697])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_freq@sysfs:
- shard-dg2: [PASS][37] -> [FAIL][38] ([i915#9561]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-1/igt@gem_ctx_freq@sysfs.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-6/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#8555]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#8555])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][41] ([i915#1099]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-snb1/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_sseu@engines:
- shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#280]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#280])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-internal-immediate:
- shard-mtlp: NOTRUN -> [ABORT][44] ([i915#13193])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@gem_eio@in-flight-internal-immediate.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-1/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4812]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4036])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#4525])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4525]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-10/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4525])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#6334]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3539])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2-9: NOTRUN -> [SKIP][56] +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-active:
- shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#3281])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-read-active.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3281]) +9 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3281])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3281]) +11 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3281]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-1/igt@gem_exec_reloc@basic-write-wc-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4537] / [i915#4812])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preemptive-hang:
- shard-rkl: [PASS][63] -> [DMESG-WARN][64] ([i915#12964]) +18 other tests dmesg-warn
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-2/igt@gem_exec_schedule@preemptive-hang.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-3/igt@gem_exec_schedule@preemptive-hang.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][65] ([i915#11441])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][66] ([i915#13196]) +1 other test incomplete
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk2/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: NOTRUN -> [ABORT][67] ([i915#7975]) +1 other test abort
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4860]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2-9: NOTRUN -> [SKIP][69] ([i915#4860])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4860]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4860]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#4613]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4613]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html
- shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#4613]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#12193])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4565])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][78] ([i915#4613]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk9/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][79] -> [TIMEOUT][80] ([i915#5493]) +1 other test timeout
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@basic-small-bo-tiledy:
- shard-dg2-9: NOTRUN -> [SKIP][81] ([i915#4077]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4077]) +8 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_wc@close:
- shard-dg2-9: NOTRUN -> [SKIP][83] ([i915#4083]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4083]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4083]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4083])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-6/igt@gem_mmap_wc@write.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@display:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3282]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-8/igt@gem_pread@display.html
* igt@gem_pread@uncached:
- shard-dg2-9: NOTRUN -> [SKIP][90] ([i915#3282])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_pread@uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][91] ([i915#2658])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite_snooped:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3282]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@gem_pwrite_snooped.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2-9: NOTRUN -> [SKIP][93] ([i915#4270]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4270]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4270])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#13398])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#13398])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [PASS][98] -> [TIMEOUT][99] ([i915#12917] / [i915#12964])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#5190] / [i915#8428]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#8428]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-4/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#4079]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4885])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4077]) +11 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4077]) +21 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4079]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [PASS][107] -> [FAIL][108] ([i915#12941])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-8/igt@gem_tiled_swapping@non-threaded.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4879])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-12/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#3297]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-5/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#3297])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][112] ([i915#3323])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2-9: NOTRUN -> [SKIP][113] ([i915#3297])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#3297]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#3297] / [i915#4880])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3297] / [i915#4880]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#3297])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2-9: NOTRUN -> [SKIP][118] ([i915#3297] / [i915#4958])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#3297]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#3297]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [PASS][121] -> [INCOMPLETE][122] ([i915#13356])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-glk4/igt@gem_workarounds@suspend-resume-context.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk8/igt@gem_workarounds@suspend-resume-context.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: NOTRUN -> [SKIP][123] +14 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#2856]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2-9: NOTRUN -> [SKIP][125] ([i915#2856])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#2527]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#2527]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#2856]) +5 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#2527] / [i915#2856]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#2527] / [i915#2856]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][131] -> [ABORT][132] ([i915#10131] / [i915#9820])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#6412])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@i915_module_load@resize-bar.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#7178])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#7091])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#8399])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-2/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#8399])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][138] -> [INCOMPLETE][139] ([i915#12455]) +1 other test incomplete
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-8/igt@i915_pm_freq_api@freq-suspend@gt0.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-10/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][140] -> [FAIL][141] ([i915#3591]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rpm@debugfs-forcewake-user:
- shard-dg1: [PASS][142] -> [DMESG-WARN][143] ([i915#4423])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-18/igt@i915_pm_rpm@debugfs-forcewake-user.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-12/igt@i915_pm_rpm@debugfs-forcewake-user.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#11681] / [i915#6621])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#11681])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#11681]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#11681])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-5/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#7984])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-7/igt@i915_power@sanity.html
* igt@i915_selftest@live:
- shard-rkl: [PASS][149] -> [DMESG-FAIL][150] ([i915#13550]) +1 other test dmesg-fail
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-8/igt@i915_selftest@live.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-4/igt@i915_selftest@live.html
* igt@i915_selftest@mock@memory_region:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][151] ([i915#9311]) +1 other test dmesg-warn
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][152] ([i915#4817])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk7/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#4212]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4212])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][155] ([i915#4212]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4212]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#8709]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#8709]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#8709]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#9531])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#1769] / [i915#3555])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#5286]) +5 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#5286]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#5286]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#4538] / [i915#5286]) +7 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#5286]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][167] -> [FAIL][168] ([i915#5138])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][169] +12 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-5/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#3638])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2-9: NOTRUN -> [SKIP][171] ([i915#4538] / [i915#5190]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][172] +9 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#4538]) +5 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#4538] / [i915#5190]) +13 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#4423] / [i915#6095]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#12313])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#12313])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#6095]) +89 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#6095]) +74 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][181] ([i915#10307] / [i915#6095]) +9 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#6095]) +44 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#6095]) +19 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#12805]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#6095]) +21 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][186] ([i915#6095]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#12313])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#10307] / [i915#6095]) +180 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][189] ([i915#12313])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#12313]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#6095]) +185 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3742]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#11616] / [i915#7213]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#3742]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#11151] / [i915#7828]) +17 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#11151] / [i915#7828]) +10 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#11151] / [i915#7828]) +11 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#11151] / [i915#7828]) +5 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) +4 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#7118] / [i915#9424])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][203] ([i915#7173]) +1 other test fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-3.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#6944] / [i915#9424])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-7/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#3116] / [i915#3299])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#3299])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3116])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#7116] / [i915#9424])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#9424]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#9424]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#6944] / [i915#7116] / [i915#7118])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-10/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8814])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2-9: NOTRUN -> [SKIP][215] ([i915#3555]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#13049]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#13049]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#13049]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu-1: NOTRUN -> [FAIL][219] ([i915#13566]) +1 other test fail
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8814]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-9: NOTRUN -> [SKIP][221] ([i915#13049])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#13049]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#13049])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [PASS][224] -> [FAIL][225] ([i915#13566]) +5 other tests fail
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_edge_walk@64x64-right-edge@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][228] ([i915#12964]) +13 other tests dmesg-warn
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-5/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-b-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#13046] / [i915#5354]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#13046] / [i915#5354]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#4423])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-12/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#9809])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#9067])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/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][234] ([i915#4103])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#9723])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9833])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#8588])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#1769] / [i915#3555] / [i915#3804])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#3804])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#1257])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-7/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#8812])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#8812])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#3840])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#3840])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#2065] / [i915#4854])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#1839])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#1839])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-9: NOTRUN -> [SKIP][248] ([i915#1839])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#1839])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#658])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#4881])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@kms_fence_pin_leak.html
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#4881])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#3637]) +4 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3637]) +2 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#9934]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#8381])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#8381]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2-9: NOTRUN -> [SKIP][258] ([i915#9934])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#12745] / [i915#1982] / [i915#4839])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][260] ([i915#1982] / [i915#4839])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#9934]) +9 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#3637]) +5 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-snb: [PASS][263] -> [FAIL][264] ([i915#11989]) +1 other test fail
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-snb1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#9934]) +4 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-mtlp: [PASS][266] -> [FAIL][267] ([i915#11989]) +1 other test fail
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][268] ([i915#11989]) +6 other tests fail
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-7/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][269] ([i915#12745] / [i915#4839])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][270] ([i915#12745])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-tglu: [PASS][271] -> [FAIL][272] ([i915#11989]) +2 other tests fail
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#2672] / [i915#3555]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#8813])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#2672]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#2587] / [i915#2672]) +5 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#3555]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#2587] / [i915#2672] / [i915#3555]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#2672]) +5 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#2587] / [i915#2672]) +4 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#2672] / [i915#3555]) +3 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#2672] / [i915#3555]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#2672] / [i915#3555]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#2587] / [i915#2672]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8810] / [i915#8813])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8810])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][290] ([i915#2672] / [i915#3555] / [i915#5190])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][291] ([i915#2672])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][292] -> [FAIL][293] ([i915#6880])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][294] +53 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-snb: [PASS][295] -> [SKIP][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#5354]) +35 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#1825]) +13 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#5439])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#5439])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#5439])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][302] ([i915#3458]) +2 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#10433] / [i915#3458])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][304] +98 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][305] +58 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#8708]) +17 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-snb: NOTRUN -> [SKIP][307] +101 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][308] ([i915#8708]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#8708]) +19 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][310] +263 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#3023]) +9 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#8708]) +7 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-dg2-9: NOTRUN -> [SKIP][313] ([i915#5354]) +6 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#1825]) +14 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#3458]) +19 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#3458]) +34 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#3555] / [i915#8228])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8228])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8228])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8228]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#12713])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#12713])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#3555] / [i915#8228])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#3555] / [i915#8228])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [PASS][325] -> [SKIP][326] ([i915#3555] / [i915#8228]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#12339])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#10656])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][329] -> [SKIP][330] ([i915#12388])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#12388])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#12339]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#13522])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][334] ([i915#13522])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-10/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][335] ([i915#13026]) +1 other test incomplete
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [PASS][336] -> [DMESG-FAIL][337] ([i915#12964]) +1 other test dmesg-fail
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][338] ([i915#10647] / [i915#12169])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][339] ([i915#10647]) +1 other test fail
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-5/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#11614] / [i915#3582]) +3 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-5/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#12247] / [i915#9423])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#12247]) +2 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][344] ([i915#12247]) +12 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#12247]) +9 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#12247] / [i915#6953] / [i915#9423])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#12247]) +7 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#12247] / [i915#3555] / [i915#6953])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#12247]) +5 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#12247] / [i915#3555])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#12247] / [i915#6953])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/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-tglu: NOTRUN -> [SKIP][352] ([i915#12247]) +8 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#12343])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#9812])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#9812]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-9/igt@kms_pm_backlight@fade-with-suspend.html
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#5354])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-1/igt@kms_pm_backlight@fade-with-suspend.html
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#5354])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#3828])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-12/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][359] ([i915#5978])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][360] ([i915#12912])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-6/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#9685]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#9340])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#3828])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#8430])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][365] ([i915#9519])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][366] -> [SKIP][367] ([i915#9519]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#9519]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][369] ([i915#9519])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#9519])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: NOTRUN -> [INCOMPLETE][371] ([i915#10553])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk6/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-rkl: [PASS][372] -> [SKIP][373] ([i915#12916])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#6524] / [i915#6805]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#6524])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#11520]) +7 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][377] ([i915#11520]) +6 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#9808])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][379] ([i915#12316]) +3 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][380] ([i915#11520]) +13 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#11520]) +3 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][382] ([i915#11520]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-snb6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][383] ([i915#11520]) +4 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#11520]) +9 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-dg2-9: NOTRUN -> [SKIP][385] ([i915#11520]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][386] ([i915#4348]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-8/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-9: NOTRUN -> [SKIP][387] ([i915#9683])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#9683]) +2 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#9683]) +2 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#9683]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][391] ([i915#9683]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][392] ([i915#9732]) +12 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][393] ([i915#9732]) +24 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-9/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][394] ([i915#1072] / [i915#9732]) +4 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][395] ([i915#9688]) +13 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-8/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][396] ([i915#1072] / [i915#9732]) +27 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][397] ([i915#1072] / [i915#9732]) +24 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][398] ([i915#1072] / [i915#9732]) +10 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][399] ([i915#9685]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][400] ([i915#9685]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][401] ([i915#9685]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][402] ([i915#9685])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#12755])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][404] ([i915#5289])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-9: NOTRUN -> [SKIP][405] ([i915#12755])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][406] ([i915#5190]) +2 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][407] ([i915#5289])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu-1: NOTRUN -> [SKIP][408] ([i915#5289]) +1 other test skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][409] ([i915#12755])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][410] ([i915#3555]) +9 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][411] ([i915#3555]) +12 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-mtlp: NOTRUN -> [SKIP][412] ([i915#3555] / [i915#5030] / [i915#9041])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/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][413] ([i915#5030]) +2 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/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][414] ([i915#5030] / [i915#9041])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][415] ([i915#13179]) +1 other test abort
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-9: NOTRUN -> [SKIP][416] ([i915#8623])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][417] ([i915#12276]) +1 other test incomplete
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][418] ([i915#9906]) +1 other test skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][419] ([i915#9906])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@kms_vrr@flip-basic-fastset.html
- shard-tglu-1: NOTRUN -> [SKIP][420] ([i915#9906])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][421] ([i915#9906])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][422] ([i915#11920])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-5/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][423] ([i915#2437] / [i915#9412])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][424] ([i915#2437] / [i915#9412])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][425] ([i915#2437] / [i915#9412])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][426] ([i915#2437]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk1/igt@kms_writeback@writeback-fb-id.html
- shard-dg2-9: NOTRUN -> [SKIP][427] ([i915#2437])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][428] ([i915#2437] / [i915#9412]) +1 other test skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu-1: NOTRUN -> [SKIP][429] ([i915#2437])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2-9: NOTRUN -> [SKIP][430] ([i915#2436])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][431] ([i915#2436])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][432] ([i915#7387])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@perf@global-sseu-config.html
* igt@perf@non-zero-reason:
- shard-dg2: NOTRUN -> [FAIL][433] ([i915#9100]) +1 other test fail
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@perf@non-zero-reason.html
* igt@perf_pmu@busy-idle@vcs1:
- shard-mtlp: [PASS][434] -> [FAIL][435] ([i915#4349]) +1 other test fail
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-4/igt@perf_pmu@busy-idle@vcs1.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-8/igt@perf_pmu@busy-idle@vcs1.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][436] ([i915#12549] / [i915#6806]) +1 other test fail
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][437] ([i915#8516])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [WARN][438] ([i915#9351])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-6/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][439] ([i915#9351])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][440] ([i915#3708])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][441] ([i915#3708] / [i915#4077])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][442] ([i915#3291] / [i915#3708])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@prime_vgem@basic-fence-read.html
- shard-dg1: NOTRUN -> [SKIP][443] ([i915#3708])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-13/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][444] ([i915#3291] / [i915#3708]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][445] ([i915#3708] / [i915#4077])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-9/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][446] ([i915#3708] / [i915#4077])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [FAIL][447] ([i915#12910]) +9 other tests fail
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-3/igt@sriov_basic@bind-unbind-vf@vf-5.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [FAIL][448] ([i915#12910]) +8 other tests fail
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
* igt@sysfs_heartbeat_interval@nopreempt:
- shard-mtlp: [PASS][449] -> [ABORT][450] ([i915#13193]) +2 other tests abort
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt.html
#### Possible fixes ####
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][451] ([i915#12714] / [i915#5784]) -> [PASS][452]
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-13/igt@gem_eio@unwedge-stress.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [INCOMPLETE][453] ([i915#11441] / [i915#13304]) -> [PASS][454]
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-2/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: [TIMEOUT][455] ([i915#12917] / [i915#12964]) -> [PASS][456]
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][457] ([i915#12739] / [i915#3591]) -> [PASS][458]
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [SKIP][459] ([i915#13328]) -> [PASS][460]
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-7/igt@i915_pm_rpm@system-suspend.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-5/igt@i915_pm_rpm@system-suspend.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][461] ([i915#11808]) -> [PASS][462] +1 other test pass
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][463] ([i915#5138]) -> [PASS][464]
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][465] ([i915#13566]) -> [PASS][466]
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][467] ([i915#13566]) -> [PASS][468] +1 other test pass
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_flip@blocking-absolute-wf_vblank-interruptible@a-hdmi-a1:
- shard-snb: [INCOMPLETE][469] -> [PASS][470] +1 other test pass
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-snb2/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@a-hdmi-a1.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-snb4/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [FAIL][471] ([i915#11989]) -> [PASS][472] +4 other tests pass
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-tglu: [FAIL][473] ([i915#11989]) -> [PASS][474] +3 other tests pass
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-tglu-6/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-rkl: [FAIL][475] ([i915#11989]) -> [PASS][476] +2 other tests pass
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1:
- shard-snb: [FAIL][477] ([i915#11989]) -> [PASS][478] +4 other tests pass
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-snb6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2: [FAIL][479] ([i915#6880]) -> [PASS][480]
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [SKIP][481] -> [PASS][482] +3 other tests pass
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [SKIP][483] ([i915#3555] / [i915#8228]) -> [PASS][484]
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-4/igt@kms_hdr@static-toggle-dpms.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_lease@lease-get:
- shard-dg1: [DMESG-WARN][485] ([i915#4423]) -> [PASS][486]
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-13/igt@kms_lease@lease-get.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_lease@lease-get.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][487] ([i915#9519]) -> [PASS][488] +1 other test pass
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@perf@gen12-oa-tlb-invalidate:
- shard-rkl: [DMESG-WARN][489] ([i915#12964]) -> [PASS][490] +25 other tests pass
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-4/igt@perf@gen12-oa-tlb-invalidate.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-2/igt@perf@gen12-oa-tlb-invalidate.html
* igt@perf_pmu@semaphore-busy@bcs0:
- shard-mtlp: [FAIL][491] ([i915#4349]) -> [PASS][492] +5 other tests pass
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-3/igt@perf_pmu@semaphore-busy@bcs0.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@perf_pmu@semaphore-busy@bcs0.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [FAIL][493] ([i915#4349]) -> [PASS][494] +3 other tests pass
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-dg2: [FAIL][495] ([i915#4349]) -> [PASS][496] +5 other tests pass
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-10/igt@perf_pmu@semaphore-busy@vecs0.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html
#### Warnings ####
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-rkl: [TIMEOUT][497] ([i915#12917] / [i915#12964]) -> [SKIP][498] ([i915#4270]) +2 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg1: [SKIP][499] ([i915#4538]) -> [SKIP][500] ([i915#4423] / [i915#4538])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-18/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_content_protection@legacy:
- shard-dg2: [FAIL][501] ([i915#7173]) -> [SKIP][502] ([i915#7118] / [i915#9424])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-10/igt@kms_content_protection@legacy.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][503] ([i915#9433]) -> [SKIP][504] ([i915#9424])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-14/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [FAIL][505] ([i915#7173]) -> [SKIP][506] ([i915#7118])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-11/igt@kms_content_protection@srm.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][507] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][508] ([i915#7118] / [i915#9424])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-11/igt@kms_content_protection@type1.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@kms_content_protection@type1.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: [SKIP][509] ([i915#4423]) -> [SKIP][510]
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][511] ([i915#3458]) -> [SKIP][512] ([i915#10433] / [i915#3458]) +2 other tests skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][513] ([i915#10433] / [i915#3458]) -> [SKIP][514] ([i915#3458]) +4 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
- shard-dg1: [SKIP][515] ([i915#3458] / [i915#4423]) -> [SKIP][516] ([i915#3458])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][517] ([i915#13331]) -> [SKIP][518] ([i915#12713])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg1: [SKIP][519] ([i915#11520] / [i915#4423]) -> [SKIP][520] ([i915#11520])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714
[i915#12739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12739
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12912
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
[i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8228 -> IGTPW_12576
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_16110: e1c145994c41ed6dd5265bc0a7a276fe1834f3ee @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12576: 12576
IGT_8228: 8228
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/index.html
[-- Attachment #2: Type: text/html, Size: 177395 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 0/7] add dsc-fallback test
2025-02-13 5:53 ` [PATCH i-g-t 0/7] add dsc-fallback test Nautiyal, Ankit K
@ 2025-02-16 11:05 ` Joshi, Kunal1
0 siblings, 0 replies; 22+ messages in thread
From: Joshi, Kunal1 @ 2025-02-16 11:05 UTC (permalink / raw)
To: Nautiyal, Ankit K, igt-dev, Sharma, Swati2
Hello,
On 13-02-2025 11:23, Nautiyal, Ankit K wrote:
>
> On 2/11/2025 11:35 PM, Kunal Joshi wrote:
>> Add test to check we fallback to dsc when current
>> link params cannot accomadate bw required by
>> the current mode.
>>
>> Kunal Joshi (7):
>> tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs
>> tests/intel/kms_mst_helper: add helper for MST-related functions
>> tests/intel/kms_dp_linktrain_fallback: refactor dp-fallback subtest
>> tests/intel/kms_dp_linktrain_fallback: fix typo
>> tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test
>> tests/intel/kms_dp_linktrain_fallback: disable ignore long hpd
>
> The series looks good to me.
>
> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>
Thank you Ankit for the feedback and the review.
Thanks Swati for getting styling right and typo's fixed.
Below failures are not related to the series and skips are expected.
**Xe.CI.BAT**
- igt@kms_dp_linktrain_fallback@dsc-fallback (NEW):
- bat-lnl-1: NOTRUN
-> [SKIP](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-lnl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html) +1
other test skip
- bat-bmg-1: NOTRUN
-> [SKIP](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-bmg-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html) +1
other test skip
- bat-dg2-oem2: NOTRUN
-> [SKIP](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/bat-dg2-oem2/igt@kms_dp_linktrain_fallback@dsc-fallback.html)
**Xe.CI.Full**
- igt@kms_dp_linktrain_fallback@dp-fallback:
-
shard-lnl: [SKIP](https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8228/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html) ([Intel
XE#3070](https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070))
-> [SKIP](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12576/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html)
**i915.CI.BAT**
- igt@kms_dp_linktrain_fallback@dp-fallbck:
- Statuses : 40 skip(s)
- Exec time: [0.0] s
- igt@kms_dp_linktrain_fallback@dsc-fallback:
- Statuses : 2 pass(s) 38 skip(s)
- Exec time: [0.0, 1.40] s
**i915.CI.Full**
- igt@gem_mmap_offset@open-flood:
-
shard-rkl: [PASS](https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-1/igt@gem_mmap_offset@open-flood.html) -> [DMESG-WARN](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-5/igt@gem_mmap_offset@open-flood.html)
- igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN
-> [INCOMPLETE](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-glk1/igt@i915_suspend@debugfs-reader.html)
- igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN
-> [SKIP](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-fallback.html) +1
other test skip
- shard-rkl: NOTRUN
-> [SKIP](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html)
- shard-tglu-1: NOTRUN
-> [SKIP](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html)
- shard-dg1: NOTRUN
-> [SKIP](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-dg1-17/igt@kms_dp_linktrain_fallback@dp-fallback.html) +1
other test skip
- shard-mtlp: NOTRUN
-> [SKIP](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@kms_dp_linktrain_fallback@dp-fallback.html) +1
other test skip
- igt@kms_dp_linktrain_fallback@dsc-fallback (NEW):
- shard-tglu: NOTRUN
-> [SKIP](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-tglu-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html)
- igt@perf_pmu@rc6@runtime-pm-gt0:
-
shard-rkl: [PASS](https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-rkl-1/igt@perf_pmu@rc6@runtime-pm-gt0.html) -> [SKIP](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-rkl-7/igt@perf_pmu@rc6@runtime-pm-gt0.html)
- igt@sysfs_heartbeat_interval@nopreempt@vcs0:
-
shard-mtlp: [PASS](https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16110/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html) -> [DMESG-WARN](https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12576/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html)
Series is merged now.
Thanks and Regards
Kunal Joshi
>
>> HAX: Do not merge
>>
>> tests/intel-ci/fast-feedback.testlist | 3 +-
>> tests/intel-ci/xe-fast-feedback.testlist | 3 +-
>> tests/intel/kms_dp_linktrain_fallback.c | 356 +++++++++++++++++++----
>> tests/intel/kms_mst_helper.c | 48 +++
>> tests/intel/kms_mst_helper.h | 15 +
>> tests/meson.build | 3 +
>> 6 files changed, 367 insertions(+), 61 deletions(-)
>> create mode 100644 tests/intel/kms_mst_helper.c
>> create mode 100644 tests/intel/kms_mst_helper.h
>>
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2025-02-16 11:05 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-11 18:05 [PATCH i-g-t 0/7] add dsc-fallback test Kunal Joshi
2025-02-11 18:05 ` [PATCH i-g-t 1/7] tests/intel/kms_dp_linktrain_fallback: refactor find_mst_outputs Kunal Joshi
2025-02-13 5:00 ` Nautiyal, Ankit K
2025-02-14 7:08 ` Sharma, Swati2
2025-02-11 18:05 ` [PATCH i-g-t 2/7] tests/intel/kms_mst_helper: add helper for MST-related functions Kunal Joshi
2025-02-13 5:44 ` Nautiyal, Ankit K
2025-02-14 7:13 ` Sharma, Swati2
2025-02-11 18:05 ` [PATCH i-g-t 3/7] tests/intel/kms_dp_linktrain_fallback: refactor dp-fallback subtest Kunal Joshi
2025-02-11 18:05 ` [PATCH i-g-t 4/7] tests/intel/kms_dp_linktrain_fallback: fix typo Kunal Joshi
2025-02-13 5:48 ` Nautiyal, Ankit K
2025-02-11 18:05 ` [PATCH i-g-t 5/7] tests/intel/kms_dp_linktrain_fallback: add dsc-fallback test Kunal Joshi
2025-02-14 7:22 ` Sharma, Swati2
2025-02-14 7:28 ` Sharma, Swati2
2025-02-11 18:05 ` [PATCH i-g-t 6/7] tests/intel/kms_dp_linktrain_fallback: disable ignore long hpd Kunal Joshi
2025-02-11 18:05 ` [PATCH i-g-t 7/7] HAX: Do not merge Kunal Joshi
2025-02-11 20:09 ` ✗ Xe.CI.BAT: failure for add dsc-fallback test (rev4) Patchwork
2025-02-11 20:37 ` ✗ i915.CI.BAT: " Patchwork
2025-02-12 3:53 ` ✗ Xe.CI.Full: " Patchwork
2025-02-13 5:53 ` [PATCH i-g-t 0/7] add dsc-fallback test Nautiyal, Ankit K
2025-02-16 11:05 ` Joshi, Kunal1
2025-02-14 6:48 ` ✓ i915.CI.BAT: success for add dsc-fallback test (rev4) Patchwork
2025-02-14 9:39 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox