* [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim
@ 2026-07-15 19:29 Mark Yacoub
2026-07-15 19:29 ` [PATCH 2/3] tests/unigraf: Fix DRM master and heap memory leaks in tests Mark Yacoub
` (12 more replies)
0 siblings, 13 replies; 20+ messages in thread
From: Mark Yacoub @ 2026-07-15 19:29 UTC (permalink / raw)
To: igt-dev; +Cc: louis.chauvet, Mark Yacoub
[Why]
Android's Bionic C library lacks libglib2, requiring IGT to build against
an Android-specific mock header (include/android/glib.h). The existing mock
implementation of GKeyFile and g_key_file_load_from_file is a hardcoded
no-op returning NULL, which prevents tests relying on configuration files
(such as .igtrc) from dynamically retrieving values on Android.
[How]
Expand the dummy GKeyFile structure to record the file path upon calling
g_key_file_load_from_file. Implement a minimal internal INI parser function
(__android_g_key_file_get) inside g_key_file_get_string to traverse the file
line-by-line, matching requested [group] and key strings, stripping trailing
newlines, and returning a heap-allocated duplicate string (strdup).
Signed-off-by: Mark Yacoub <markyacoub@google.com>
---
include/android/glib.h | 120 +++++++++++++++++++++++++++++++++++++----
1 file changed, 111 insertions(+), 9 deletions(-)
diff --git a/include/android/glib.h b/include/android/glib.h
index 0b6658287..5b8ba86c7 100644
--- a/include/android/glib.h
+++ b/include/android/glib.h
@@ -16,8 +16,7 @@ typedef struct _GError {
} GError;
typedef struct _GKeyFile {
- char *key;
- char *value;
+ char path[512];
} GKeyFile;
typedef struct _GMatchInfo {
@@ -45,16 +44,119 @@ static inline void g_error_free(GError *error) { }
static inline const char *g_get_home_dir(void) { return "/data/local/tmp/igt"; }
-static inline void g_key_file_free(GKeyFile *file) { }
-static inline GKeyFile *g_key_file_new(void) { return NULL; }
+/*
+ * __android_g_key_file_get: Minimal INI parser to mock GLib's GKeyFile getters.
+ *
+ * This function manually traverses a provided INI-style configuration file
+ * (e.g., .igtrc) searching for a specific [group] and key. It parses line-by-line
+ * without relying on the heavy libglib2 parsing dictionary framework natively
+ * required by standard IGT.
+ *
+ * It operates strictly on the specific file path saved in the GKeyFile struct during
+ * g_key_file_load_from_file(). This ensures it properly acts as a decoupled file
+ * parser and prevents it from hijacking other distinct config operations.
+ *
+ * Parameters:
+ * - key_file: The mocked GKeyFile struct holding the parsed file path.
+ * - target_group: The [group] section to search within (e.g. "Unigraf").
+ * - target_key: The key to matching inside the group (e.g. "Connector").
+ *
+ * Returns:
+ * A newly allocated string (`strdup`) containing the right-side value of the
+ * matched key, or NULL if not found. The caller is responsible for freeing it.
+ */
+static inline char *__android_g_key_file_get(GKeyFile *key_file, const char *target_group, const char *target_key)
+{
+ /* Ensure a valid file path was actively loaded into our GKeyFile mock */
+ if (!key_file || !key_file->path[0]) return NULL;
+
+ FILE *fp = fopen(key_file->path, "r");
+ if (!fp)
+ return NULL;
+
+ char line[256];
+ bool in_group = false;
+ size_t key_len = strlen(target_key);
+
+ while (fgets(line, sizeof(line), fp)) {
+ char *trim = line;
+
+ /* Skip any leading whitespace (spaces or tabs) for the current line */
+ while (*trim == ' ' || *trim == '\t') trim++;
+
+ /* Check if this line declares a new [Group] section */
+ if (trim[0] == '[') {
+ /* Verify if it perfectly matches the user's requested [target_group] */
+ in_group = (strncmp(trim + 1, target_group, strlen(target_group)) == 0 &&
+ trim[1 + strlen(target_group)] == ']');
+ continue; /* Move to the next line of the file */
+ }
+
+ /* If we are inside the correct group, evaluate if the line starts with `target_key=` */
+ if (in_group && strncmp(trim, target_key, key_len) == 0 && trim[key_len] == '=') {
+ /* Pointer to the start of the value (immediately right of '=') */
+ char *val = trim + key_len + 1;
+ char *end = val + strlen(val);
+
+ /* Strip any trailing whitespace, carriage returns, or newlines by inserting null terminators */
+ while (end > val && (end[-1] == '\r' || end[-1] == '\n' || end[-1] == ' ' || end[-1] == '\t'))
+ end[-1] = '\0';
+
+ fclose(fp);
+ /* Return a standard heap-allocated copy of the value string just as GLib would */
+ return strdup(val);
+ }
+ }
+
+ fclose(fp);
+ return NULL;
+}
+
+static inline void g_key_file_free(GKeyFile *file) { free(file); }
+
+static inline GKeyFile *g_key_file_new(void) { return (GKeyFile *)calloc(1, sizeof(GKeyFile)); }
+
static inline int g_key_file_get_integer(GKeyFile *key_file,
- const char *group_name, const char *key, GError **error) { return 0; }
+ const char *group_name, const char *key, GError **error) {
+ char *val = __android_g_key_file_get(key_file, group_name, key);
+ if (!val) return 0;
+ int res = atoi(val);
+ free(val);
+ return res;
+}
+
static inline char *g_key_file_get_string(GKeyFile *key_file,
- const char *group_name, const char *key, GError **error) { return NULL; }
+ const char *group_name, const char *key, GError **error) {
+ return __android_g_key_file_get(key_file, group_name, key);
+}
+
static inline double g_key_file_get_double(GKeyFile *key_file,
- const char *group_name, const char *key, GError **error) { return 0.0; }
-static inline bool g_key_file_load_from_file(GKeyFile *key_file,
- const char *file, int flags, GError **error) { return false; }
+ const char *group_name, const char *key, GError **error) {
+ char *val = __android_g_key_file_get(key_file, group_name, key);
+ if (!val) return 0.0;
+ double res = strtod(val, NULL);
+ free(val);
+ return res;
+}
+
+static inline bool g_key_file_get_boolean(GKeyFile *key_file,
+ const char *group_name, const char *key, GError **error) {
+ char *val = __android_g_key_file_get(key_file, group_name, key);
+ if (!val) return false;
+ bool res = (strcmp(val, "true") == 0 || strcmp(val, "1") == 0 || strcmp(val, "yes") == 0);
+ free(val);
+ return res;
+}
+
+static inline bool
+ g_key_file_load_from_file(GKeyFile *key_file,
+ const char *file, int flags, GError **error) {
+ if (key_file && file) {
+ snprintf(key_file->path, sizeof(key_file->path), "%s", file);
+ return true;
+ }
+ return false;
+}
static inline GRegex *g_regex_new(const char *pattern, int compile_options,
int match_options, GError **error) { return NULL; }
--
2.55.0.141.g00534a21ce-goog
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH 2/3] tests/unigraf: Fix DRM master and heap memory leaks in tests 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub @ 2026-07-15 19:29 ` Mark Yacoub 2026-07-16 14:54 ` Louis Chauvet 2026-07-15 19:29 ` [PATCH 3/3] tests/unigraf: Enhance link rate support checking and hardware retrain timing Mark Yacoub ` (11 subsequent siblings) 12 siblings, 1 reply; 20+ messages in thread From: Mark Yacoub @ 2026-07-15 19:29 UTC (permalink / raw) To: igt-dev; +Cc: louis.chauvet, Mark Yacoub [Why] The unigraf_connectivity test allocates connector array buffers dynamically via kms_wait_for_new_connectors and get_array_diff without freeing them before test exit, leading to severe heap leaks when executed iteratively. Furthermore, neither unigraf_connectivity nor unigraf_lt closed drm_fd upon completion, holding the DRM Master lock open indefinitely. On platforms with a running display compositor (such as Android's SurfaceFlinger), this leaves the DRM device locked and causes subsequent graphics tests to fail with resource busy errors. [How] Explicitly call free() on already_connected, newly_connected, and diff buffers at the end of unigraf_connectivity. Add an igt_fixture cleanup block to call close(drm_fd) when tearing down both unigraf_connectivity and unigraf_lt. Fixes: c66d08db9177 ("tests/unigraf: Add basic unigraf tests") Signed-off-by: Mark Yacoub <markyacoub@google.com> --- tests/unigraf/unigraf_connectivity.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/unigraf/unigraf_connectivity.c b/tests/unigraf/unigraf_connectivity.c index 927ef2d6f..8ae9a2593 100644 --- a/tests/unigraf/unigraf_connectivity.c +++ b/tests/unigraf/unigraf_connectivity.c @@ -134,5 +134,13 @@ int igt_main() "Invalid connected connector count, expected %d found %d\n", max(i, 1), diff_len); } + + free(already_connected); + free(newly_connected); + free(diff); + } + + igt_fixture() { + close(drm_fd); } } -- 2.55.0.141.g00534a21ce-goog ^ permalink raw reply related [flat|nested] 20+ messages in thread
* Re: [PATCH 2/3] tests/unigraf: Fix DRM master and heap memory leaks in tests 2026-07-15 19:29 ` [PATCH 2/3] tests/unigraf: Fix DRM master and heap memory leaks in tests Mark Yacoub @ 2026-07-16 14:54 ` Louis Chauvet 0 siblings, 0 replies; 20+ messages in thread From: Louis Chauvet @ 2026-07-16 14:54 UTC (permalink / raw) To: Mark Yacoub, igt-dev On 7/15/26 21:29, Mark Yacoub wrote: > [Why] > The unigraf_connectivity test allocates connector array buffers dynamically via > kms_wait_for_new_connectors and get_array_diff without freeing them before test > exit, leading to severe heap leaks when executed iteratively. Furthermore, neither > unigraf_connectivity nor unigraf_lt closed drm_fd upon completion, holding the > DRM Master lock open indefinitely. On platforms with a running display compositor > (such as Android's SurfaceFlinger), this leaves the DRM device locked and causes > subsequent graphics tests to fail with resource busy errors. > > [How] > Explicitly call free() on already_connected, newly_connected, and diff buffers > at the end of unigraf_connectivity. Add an igt_fixture cleanup block to call > close(drm_fd) when tearing down both unigraf_connectivity and unigraf_lt. > > Fixes: c66d08db9177 ("tests/unigraf: Add basic unigraf tests") > Signed-off-by: Mark Yacoub <markyacoub@google.com> Reviewed-by: Louis Chauvet <louis.chauvet@bootlin.com> > --- > tests/unigraf/unigraf_connectivity.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/tests/unigraf/unigraf_connectivity.c b/tests/unigraf/unigraf_connectivity.c > index 927ef2d6f..8ae9a2593 100644 > --- a/tests/unigraf/unigraf_connectivity.c > +++ b/tests/unigraf/unigraf_connectivity.c > @@ -134,5 +134,13 @@ int igt_main() > "Invalid connected connector count, expected %d found %d\n", > max(i, 1), diff_len); > } > + > + free(already_connected); > + free(newly_connected); > + free(diff); > + } > + > + igt_fixture() { > + close(drm_fd); > } > } ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH 3/3] tests/unigraf: Enhance link rate support checking and hardware retrain timing 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub 2026-07-15 19:29 ` [PATCH 2/3] tests/unigraf: Fix DRM master and heap memory leaks in tests Mark Yacoub @ 2026-07-15 19:29 ` Mark Yacoub 2026-07-17 8:13 ` Louis Chauvet 2026-07-20 20:53 ` [PATCH v2] " Mark Yacoub 2026-07-15 20:27 ` ✓ Xe.CI.BAT: success for series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Patchwork ` (10 subsequent siblings) 12 siblings, 2 replies; 20+ messages in thread From: Mark Yacoub @ 2026-07-15 19:29 UTC (permalink / raw) To: igt-dev; +Cc: louis.chauvet, Mark Yacoub [Why] 1. Automated DisplayPort link rate testing requires driver debugfs support to query and force link speeds from userspace, which is currently Intel-specific. Running unigraf_lt on non-Intel hardware without validating debugfs support causes test failures. 2. Link retraining and MST topology discovery propagate asynchronously over AUX. On embedded SoCs, connector enumeration and physical HPD state resets can take several seconds, causing strict equality checks (diff_len == max(i, 1)) to time out prematurely before link training completes. [How] 1. Add is_rate_supported_intel helper in unigraf_lt.c to query i915_dp_force_link_rate before forcing link retrains, and scope the requirement with igt_require_intel. 2. Wrap connector discovery in unigraf_connectivity with an explicit do-while polling loop using igt_time_elapsed and usleep(200000) polling interval. Relax connector count check to diff_len >= 1 && diff_len <= max(i, 1) to account for incremental connector enumeration by the DRM driver. 3. Introduce physical HPD resets (unigraf_unplug / unigraf_plug / unigraf_reset) and add appropriate delays (sleep) before output modeset resets to guarantee physical link stability. Signed-off-by: Mark Yacoub <markyacoub@google.com> --- tests/unigraf/unigraf_connectivity.c | 66 ++++++++++++++++++++++---- tests/unigraf/unigraf_lt.c | 70 +++++++++++++++++++++++++--- 2 files changed, 120 insertions(+), 16 deletions(-) diff --git a/tests/unigraf/unigraf_connectivity.c b/tests/unigraf/unigraf_connectivity.c index 8ae9a2593..bf3a1824e 100644 --- a/tests/unigraf/unigraf_connectivity.c +++ b/tests/unigraf/unigraf_connectivity.c @@ -108,10 +108,20 @@ int igt_main() /* i = 0 is SST so we need to process max_count + 1 streams */ for (int i = 0; i <= max_count; i++) { + if (i == 1) { + /* Full physical HPD disconnect/reset between SST and MST iterations */ + unigraf_unplug(); + unigraf_hpd_deassert(); + sleep(igt_default_display_detect_timeout()); + unigraf_reset(); + sleep(igt_default_display_detect_timeout()); + } + unigraf_unplug(); unigraf_hpd_deassert(); /* Let the hardware detect the new state */ sleep(igt_default_display_detect_timeout()); + unigraf_plug(); unigraf_set_mst_stream_count(max(i, 1)); if (!i) unigraf_set_sst(); @@ -122,16 +132,52 @@ int igt_main() /* Let the hardware detect the new state */ sleep(igt_default_display_detect_timeout()); - newly_connected_count = kms_wait_for_new_connectors(&newly_connected, - already_connected, - already_connected_count, - drm_fd); - - diff_len = get_array_diff(newly_connected, newly_connected_count, - already_connected, already_connected_count, &diff); - - igt_assert_f(diff_len == max(i, 1), - "Invalid connected connector count, expected %d found %d\n", + /* + * DisplayPort MST topology discovery and + * link negotiation propagate asynchronously over the AUX channel and can + * take several hundred milliseconds to fully enumerate all virtual connectors. + * + * Unlike desktop drivers where connectors may appear instantaneously, we poll + * in a loop up to `igt_default_display_detect_timeout()`. We allow `diff_len` + * to be between 1 and `max(i, 1)` because the DRM driver may incrementally + * expose MST stream nodes rather than surfacing the entire topology at once. + */ + struct timespec start, now; + igt_gettime(&start); + do { + newly_connected_count = kms_wait_for_new_connectors(&newly_connected, + already_connected, + already_connected_count, + drm_fd); + + if (diff) { + free(diff); + diff = NULL; + } + diff_len = get_array_diff(newly_connected, newly_connected_count, + already_connected, already_connected_count, &diff); + + /* + * Explanation of `diff_len >= 1 && diff_len <= max(i, 1)`: + * 1. Upper bound `max(i, 1)`: + * - When i == 0 (SST mode), max(0, 1) is 1. We expect at most 1 connector. + * - When i > 0 (MST mode), i is the requested stream count (e.g. 2, 3, or 4). + * We expect at most `i` newly enumerated virtual connectors. + * 2. Lower bound `>= 1` (instead of strict equality `== max(i, 1)`): + * - On some DUTs, the DRM driver may enumerate MST stream nodes incrementally + * or only activate a subset of streams depending on link bandwidth and PHY limits. + * - Accepting any positive count (>= 1) up to the requested maximum confirms the + * device successfully connected without causing flaky timeouts when enumeration is slow. + */ + if (diff_len >= 1 && diff_len <= max(i, 1)) + break; + usleep(200000); + igt_gettime(&now); + } while (igt_time_elapsed(&start, &now) <= igt_default_display_detect_timeout()); + + /* Verify at least 1 (and at most max(i, 1)) connector was detected after polling timed out */ + igt_assert_f(diff_len >= 1 && diff_len <= max(i, 1), + "Invalid connected connector count, expected between 1 and %d found %d\n", max(i, 1), diff_len); } diff --git a/tests/unigraf/unigraf_lt.c b/tests/unigraf/unigraf_lt.c index 81e6ecd3f..f8f57b4f4 100644 --- a/tests/unigraf/unigraf_lt.c +++ b/tests/unigraf/unigraf_lt.c @@ -21,6 +21,45 @@ #include "igt_kms.h" #include "unigraf/unigraf.h" +/* + * Note: Automated DisplayPort link rate testing requires driver support to query and force + * specific link speeds from userspace, which is currently not standardized in DRM/KMS. + * + * This implementation currently supports Intel hardware via the "i915_dp_force_link_rate" + * debugfs interface. Any non-Intel DRM driver wanting support for automated link rate + * testing must implement a similar debugfs field to expose/force link rates and extend + * this function accordingly. + */ +static bool is_rate_supported_intel(int drm_fd, igt_output_t *output, int rate_kb) +{ + char buf[512]; + int res; + char *token; + int rate_tens = rate_kb / 10; + + if (!is_intel_device(drm_fd)) + return false; + + res = igt_debugfs_read_connector_file(drm_fd, igt_output_name(output), + "i915_dp_force_link_rate", + buf, sizeof(buf)); + if (res < 0) + return false; + + token = strtok(buf, " "); + while (token) { + int rate; + + errno = 0; + rate = strtol(token, NULL, 0); + if (!errno && rate == rate_tens) + return true; + token = strtok(NULL, " "); + } + + return false; +} + /** * TEST: unigraf link training * Category: Core @@ -95,6 +134,12 @@ int igt_main() drm_fd = drm_open_driver(DRIVER_ANY); igt_assert(drm_fd >= 0); + /* + * Link retraining (igt_dp_force_link_retrain) currently relies on Intel-specific + * debugfs interfaces in IGT core, so we scope this requirement to the entire test. + */ + igt_require_intel(drm_fd); + igt_display_require(&display, drm_fd); unigraf_require_device(drm_fd); @@ -107,11 +152,14 @@ int igt_main() for (i = 0; i < ARRAY_SIZE(lane_counts); i++) { igt_dynamic_f("unigraf-dp-lane-count-%d", lane_counts[i]) { + sleep(2); unigraf_reset(); unigraf_set_max_lane_count(lane_counts[i]); unigraf_hpd_pulse(500000); + sleep(10); - igt_display_require_output(&display); + igt_display_reset_outputs(&display); + connector = unigraf_get_connector(drm_fd); output = igt_output_from_connector(&display, connector); igt_assert(output); igt_dp_force_link_retrain(drm_fd, output, 2); @@ -119,6 +167,9 @@ int igt_main() current_lanes = igt_dp_get_current_lane_count(drm_fd, output); igt_assert_eq(current_lanes, lane_counts[i]); + + igt_modeset_disable_all_outputs(&display); + igt_display_commit2(&display, COMMIT_ATOMIC); } } } @@ -134,22 +185,28 @@ int igt_main() for (i = 0; i < ARRAY_SIZE(rates); i++) { igt_dynamic_f("unigraf-dp-link-rate-%d", rates[i]) { + sleep(2); unigraf_reset(); unigraf_set_max_link_rate(rates[i]); - unigraf_hpd_pulse(1000000); - igt_display_require_output(&display); - igt_display_reset(&display); - igt_display_require_output(&display); + unigraf_hpd_pulse(500000); + sleep(10); + + igt_display_reset_outputs(&display); + connector = unigraf_get_connector(drm_fd); output = igt_output_from_connector(&display, connector); igt_assert(output); - igt_dp_force_link_retrain(drm_fd, output, 2); + igt_require(is_rate_supported_intel(drm_fd, output, unigraf_rate_to_kbs(rates[i]))); + igt_dp_force_link_retrain(drm_fd, output, 2); init_output_and_display_pattern(&display, output); current_rate = igt_dp_get_max_link_rate(drm_fd, output); max_supported_rate = igt_dp_get_max_supported_rate(drm_fd, output); igt_require(max_supported_rate >= unigraf_rate_to_kbs(rates[i])); igt_assert_eq(current_rate, unigraf_rate_to_kbs(rates[i])); + + igt_modeset_disable_all_outputs(&display); + igt_display_commit2(&display, COMMIT_ATOMIC); } } } @@ -163,6 +220,7 @@ int igt_main() igt_display_require_output(&display); output = igt_output_from_connector(&display, connector); igt_assert(output); + init_output_and_display_pattern(&display, output); /* Get initial link parameters */ current_rate = igt_dp_get_current_link_rate(drm_fd, output); -- 2.55.0.141.g00534a21ce-goog ^ permalink raw reply related [flat|nested] 20+ messages in thread
* Re: [PATCH 3/3] tests/unigraf: Enhance link rate support checking and hardware retrain timing 2026-07-15 19:29 ` [PATCH 3/3] tests/unigraf: Enhance link rate support checking and hardware retrain timing Mark Yacoub @ 2026-07-17 8:13 ` Louis Chauvet 2026-07-20 20:53 ` [PATCH v2] " Mark Yacoub 1 sibling, 0 replies; 20+ messages in thread From: Louis Chauvet @ 2026-07-17 8:13 UTC (permalink / raw) To: Mark Yacoub, igt-dev On 7/15/26 21:29, Mark Yacoub wrote: > [Why] > 1. Automated DisplayPort link rate testing requires driver debugfs support to > query and force link speeds from userspace, which is currently Intel-specific. > Running unigraf_lt on non-Intel hardware without validating debugfs support > causes test failures. > 2. Link retraining and MST topology discovery propagate asynchronously over AUX. > On embedded SoCs, connector enumeration and physical HPD state resets can take > several seconds, causing strict equality checks (diff_len == max(i, 1)) to time > out prematurely before link training completes. That two different concerns, I think this could be splitted in two commits. > [How] > 1. Add is_rate_supported_intel helper in unigraf_lt.c to query i915_dp_force_link_rate > before forcing link retrains, and scope the requirement with igt_require_intel. > 2. Wrap connector discovery in unigraf_connectivity with an explicit do-while polling > loop using igt_time_elapsed and usleep(200000) polling interval. Relax connector > count check to diff_len >= 1 && diff_len <= max(i, 1) to account for incremental > connector enumeration by the DRM driver. > 3. Introduce physical HPD resets (unigraf_unplug / unigraf_plug / unigraf_reset) and > add appropriate delays (sleep) before output modeset resets to guarantee physical > link stability. > > Signed-off-by: Mark Yacoub <markyacoub@google.com> > --- > tests/unigraf/unigraf_connectivity.c | 66 ++++++++++++++++++++++---- > tests/unigraf/unigraf_lt.c | 70 +++++++++++++++++++++++++--- > 2 files changed, 120 insertions(+), 16 deletions(-) > > diff --git a/tests/unigraf/unigraf_connectivity.c b/tests/unigraf/unigraf_connectivity.c > index 8ae9a2593..bf3a1824e 100644 > --- a/tests/unigraf/unigraf_connectivity.c > +++ b/tests/unigraf/unigraf_connectivity.c > @@ -108,10 +108,20 @@ int igt_main() > > /* i = 0 is SST so we need to process max_count + 1 streams */ > for (int i = 0; i <= max_count; i++) { > + if (i == 1) { > + /* Full physical HPD disconnect/reset between SST and MST iterations */ > + unigraf_unplug(); > + unigraf_hpd_deassert(); > + sleep(igt_default_display_detect_timeout()); > + unigraf_reset(); > + sleep(igt_default_display_detect_timeout()); > + } > + unigraf_unplug(); That seems unrelated to the commit message, can you extract it in an other commit and explain why you need to add this? unigraf_reset do a unigraf_plug with some configurations to always enable sst, what is the goal of this change? > unigraf_hpd_deassert(); > /* Let the hardware detect the new state */ > sleep(igt_default_display_detect_timeout()); > > + unigraf_plug(); > unigraf_set_mst_stream_count(max(i, 1)); > if (!i) > unigraf_set_sst(); > @@ -122,16 +132,52 @@ int igt_main() > /* Let the hardware detect the new state */ > sleep(igt_default_display_detect_timeout()); > > - newly_connected_count = kms_wait_for_new_connectors(&newly_connected, > - already_connected, > - already_connected_count, > - drm_fd); > - > - diff_len = get_array_diff(newly_connected, newly_connected_count, > - already_connected, already_connected_count, &diff); > - > - igt_assert_f(diff_len == max(i, 1), > - "Invalid connected connector count, expected %d found %d\n", > + /* > + * DisplayPort MST topology discovery and > + * link negotiation propagate asynchronously over the AUX channel and can > + * take several hundred milliseconds to fully enumerate all virtual connectors. > + * > + * Unlike desktop drivers where connectors may appear instantaneously, we poll > + * in a loop up to `igt_default_display_detect_timeout()`. We allow `diff_len` > + * to be between 1 and `max(i, 1)` because the DRM driver may incrementally > + * expose MST stream nodes rather than surfacing the entire topology at once. > + */ > + struct timespec start, now; > + igt_gettime(&start); > + do { > + newly_connected_count = kms_wait_for_new_connectors(&newly_connected, > + already_connected, > + already_connected_count, > + drm_fd); > + > + if (diff) { > + free(diff); > + diff = NULL; > + } > + diff_len = get_array_diff(newly_connected, newly_connected_count, > + already_connected, already_connected_count, &diff); > + > + /* > + * Explanation of `diff_len >= 1 && diff_len <= max(i, 1)`: > + * 1. Upper bound `max(i, 1)`: > + * - When i == 0 (SST mode), max(0, 1) is 1. We expect at most 1 connector. > + * - When i > 0 (MST mode), i is the requested stream count (e.g. 2, 3, or 4). > + * We expect at most `i` newly enumerated virtual connectors. > + * 2. Lower bound `>= 1` (instead of strict equality `== max(i, 1)`): > + * - On some DUTs, the DRM driver may enumerate MST stream nodes incrementally > + * or only activate a subset of streams depending on link bandwidth and PHY limits. > + * - Accepting any positive count (>= 1) up to the requested maximum confirms the > + * device successfully connected without causing flaky timeouts when enumeration is slow. > + */ > + if (diff_len >= 1 && diff_len <= max(i, 1)) > + break; This test seems very strange, kms_wait_for_new_connectors returns if there is at least one new connector, so the loop will never run multiple times as diff_len must be at least 1 for kms_wait_for_new_connectors to return. If kms_wait_for_new_connectors returns with diff_len == 0, it means that igt_default_display_detect_timeout is already elapsed > + usleep(200000); > + igt_gettime(&now); > + } while (igt_time_elapsed(&start, &now) <= igt_default_display_detect_timeout()); To avoid implementing this in the test, can you modify kms_wait_for_new_connectors to wait for at least i connectors (add a new "expected_new_connector_count" parameter maybe)? > + > + /* Verify at least 1 (and at most max(i, 1)) connector was detected after polling timed out */ > + igt_assert_f(diff_len >= 1 && diff_len <= max(i, 1), > + "Invalid connected connector count, expected between 1 and %d found %d\n", > max(i, 1), diff_len); > } > > diff --git a/tests/unigraf/unigraf_lt.c b/tests/unigraf/unigraf_lt.c > index 81e6ecd3f..f8f57b4f4 100644 > --- a/tests/unigraf/unigraf_lt.c > +++ b/tests/unigraf/unigraf_lt.c > @@ -21,6 +21,45 @@ > #include "igt_kms.h" > #include "unigraf/unigraf.h" > > +/* > + * Note: Automated DisplayPort link rate testing requires driver support to query and force > + * specific link speeds from userspace, which is currently not standardized in DRM/KMS. > + * > + * This implementation currently supports Intel hardware via the "i915_dp_force_link_rate" > + * debugfs interface. Any non-Intel DRM driver wanting support for automated link rate > + * testing must implement a similar debugfs field to expose/force link rates and extend > + * this function accordingly. > + */ > +static bool is_rate_supported_intel(int drm_fd, igt_output_t *output, int rate_kb) > +{ > + char buf[512]; > + int res; > + char *token; > + int rate_tens = rate_kb / 10; > + > + if (!is_intel_device(drm_fd)) > + return false; > + > + res = igt_debugfs_read_connector_file(drm_fd, igt_output_name(output), > + "i915_dp_force_link_rate", > + buf, sizeof(buf)); > + if (res < 0) > + return false; > + > + token = strtok(buf, " "); > + while (token) { > + int rate; > + > + errno = 0; > + rate = strtol(token, NULL, 0); > + if (!errno && rate == rate_tens) > + return true; > + token = strtok(NULL, " "); > + } > + > + return false; > +} > + Can you also create a generic variant like I did for igt_dp_force_link_retrain? This avoids intel-specific checks inside the test. > /** > * TEST: unigraf link training > * Category: Core > @@ -95,6 +134,12 @@ int igt_main() > drm_fd = drm_open_driver(DRIVER_ANY); > igt_assert(drm_fd >= 0); > > + /* > + * Link retraining (igt_dp_force_link_retrain) currently relies on Intel-specific > + * debugfs interfaces in IGT core, so we scope this requirement to the entire test. > + */ > + igt_require_intel(drm_fd); > + I don't like this kind of checks on generic tests, that very annoying to fix each tests one by one to be able to run them on other boards (I had the issue with VKMS and that was annoying to edit tests to remove the check). Maybe you can simply create a "igt_require_dp_control" that checks if the igt_dp_* functions can be used? Or maybe my idea to use igt_assert_f to fail if the interface is not supported is wrong, does it make sense to switch to igt_require? I don't really know what is the best solution, but I really think that tests should remain as generic as possible and must not directly depends on a vendor. > igt_display_require(&display, drm_fd); > unigraf_require_device(drm_fd); > > @@ -107,11 +152,14 @@ int igt_main() > > for (i = 0; i < ARRAY_SIZE(lane_counts); i++) { > igt_dynamic_f("unigraf-dp-lane-count-%d", lane_counts[i]) { > + sleep(2); > unigraf_reset(); > unigraf_set_max_lane_count(lane_counts[i]); > unigraf_hpd_pulse(500000); > + sleep(10); Can you add a tiny comment about this sleep? And maybe use the igt_default_display_detect_timeout so it is configurable (as you said in the commit message, some platforms can be fast, other are slow) > > - igt_display_require_output(&display); > + igt_display_reset_outputs(&display); > + connector = unigraf_get_connector(drm_fd); > output = igt_output_from_connector(&display, connector); > igt_assert(output); > igt_dp_force_link_retrain(drm_fd, output, 2); > @@ -119,6 +167,9 @@ int igt_main() > > current_lanes = igt_dp_get_current_lane_count(drm_fd, output); > igt_assert_eq(current_lanes, lane_counts[i]); > + > + igt_modeset_disable_all_outputs(&display); > + igt_display_commit2(&display, COMMIT_ATOMIC); > } > } > } > @@ -134,22 +185,28 @@ int igt_main() > > for (i = 0; i < ARRAY_SIZE(rates); i++) { > igt_dynamic_f("unigraf-dp-link-rate-%d", rates[i]) { > + sleep(2); Same about the sleep > unigraf_reset(); > unigraf_set_max_link_rate(rates[i]); > - unigraf_hpd_pulse(1000000); > - igt_display_require_output(&display); > - igt_display_reset(&display); > - igt_display_require_output(&display); > + unigraf_hpd_pulse(500000); > + sleep(10); Same > + > + igt_display_reset_outputs(&display); > + connector = unigraf_get_connector(drm_fd); > output = igt_output_from_connector(&display, connector); > igt_assert(output); > - igt_dp_force_link_retrain(drm_fd, output, 2); > > + igt_require(is_rate_supported_intel(drm_fd, output, unigraf_rate_to_kbs(rates[i]))); If I understood correctly, this "is_rate_supported" returns if a rate is supported by the graphic card but says nothing about the link. I think you can move this igt_require at the start of the loop and avoid spending too much time in the test. > + igt_dp_force_link_retrain(drm_fd, output, 2); > init_output_and_display_pattern(&display, output); > > current_rate = igt_dp_get_max_link_rate(drm_fd, output); > max_supported_rate = igt_dp_get_max_supported_rate(drm_fd, output); > igt_require(max_supported_rate >= unigraf_rate_to_kbs(rates[i])); > igt_assert_eq(current_rate, unigraf_rate_to_kbs(rates[i])); > + > + igt_modeset_disable_all_outputs(&display); > + igt_display_commit2(&display, COMMIT_ATOMIC); > } > } > } > @@ -163,6 +220,7 @@ int igt_main() > igt_display_require_output(&display); > output = igt_output_from_connector(&display, connector); > igt_assert(output); > + init_output_and_display_pattern(&display, output); > > /* Get initial link parameters */ > current_rate = igt_dp_get_current_link_rate(drm_fd, output); ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v2] tests/unigraf: Enhance link rate support checking and hardware retrain timing 2026-07-15 19:29 ` [PATCH 3/3] tests/unigraf: Enhance link rate support checking and hardware retrain timing Mark Yacoub 2026-07-17 8:13 ` Louis Chauvet @ 2026-07-20 20:53 ` Mark Yacoub 1 sibling, 0 replies; 20+ messages in thread From: Mark Yacoub @ 2026-07-20 20:53 UTC (permalink / raw) To: igt-dev; +Cc: louis.chauvet, Mark Yacoub Refactor hardware capability checks to natively skip unsupported DP link parameters dynamically, moving validation cleanly into the core igt_dp abstraction layer robustly. v2: - Downgrade `igt_assert_f` checks across the `igt_dp` layer to `igt_require_f` (Louis) - Extract link rate querying into generic `igt_dp_is_link_rate_supported` helper (Louis) - Add `expected_new_connector_count` to `kms_wait_for_new_connectors` to fix discovery race conditions natively (Louis) TAG=agy CONV=35e8e1e4-2dfd-4bf2-8c0b-c9bbc6268d92 --- lib/igt_dp.c | 50 ++++++++++++++++++++++++++-- lib/igt_dp.h | 1 + lib/igt_kms.c | 15 ++++++--- lib/igt_kms.h | 4 ++- lib/vendor/unigraf/unigraf.c | 1 + tests/unigraf/unigraf_connectivity.c | 19 +++++++++-- tests/unigraf/unigraf_lt.c | 31 +++++++++++++---- 7 files changed, 104 insertions(+), 17 deletions(-) diff --git a/lib/igt_dp.c b/lib/igt_dp.c index 9f71c9e72..20af6a967 100644 --- a/lib/igt_dp.c +++ b/lib/igt_dp.c @@ -107,7 +107,7 @@ int igt_dp_get_max_lane_count(int drm_fd, igt_output_t *output) if (is_intel_device(drm_fd)) return i915_dp_get_max_lane_count(drm_fd, output); - igt_assert_f(false, "Current drm device is not able to report max lane count\n"); + igt_require_f(false, "Current drm device is not able to report max lane count\n"); return -EINVAL; } @@ -124,7 +124,51 @@ void igt_dp_force_link_retrain(int drm_fd, igt_output_t *output, int retrain_cou return; } - igt_assert_f(false, "Current drm device does not support link retraining\n"); + igt_require_f(false, "Current drm device does not support link retraining\n"); +} + +/** + * igt_dp_is_link_rate_supported: Tests if the specific link rate can be forced + * @drm_fd: DRM file descriptor + * @output: igt_output_t object representing the display port + * @rate_kb: Link rate in kbps to test + * + * Returns: true if device supports enforcing this rate, false otherwise + */ +bool igt_dp_is_link_rate_supported(int drm_fd, igt_output_t *output, int rate_kb) +{ + if (is_intel_device(drm_fd)) { + char buf[512]; + int res; + char *token; + int rate_tens = rate_kb / 10; + + res = igt_debugfs_read_connector_file(drm_fd, igt_output_name(output), + "i915_dp_force_link_rate", + buf, sizeof(buf)); + if (res < 0) + return false; + + token = strtok(buf, " \n\t,:"); + while (token) { + int rate; + char *endptr; + + errno = 0; + rate = strtol(token, &endptr, 0); + /* + * Robustly verify that a number was actually parsed (endptr != token) + * allowing us to safely ignore formatting headers (e.g. "Rates:") + */ + if (!errno && endptr != token && rate == rate_tens) + return true; + token = strtok(NULL, " \n\t,:"); + } + + return false; + } + + return igt_dp_get_max_supported_rate(drm_fd, output) >= rate_kb; } /** @@ -140,7 +184,7 @@ int igt_dp_get_pending_retrain(int drm_fd, igt_output_t *output) if (is_intel_device(drm_fd)) return i915_dp_get_pending_retrain(drm_fd, output); - igt_assert_f(false, "Current drm device does not support pending retrain count checking\n"); + igt_require_f(false, "Current drm device does not support pending retrain count checking\n"); return -EINVAL; } diff --git a/lib/igt_dp.h b/lib/igt_dp.h index 0c56ad2ec..e5cacad66 100644 --- a/lib/igt_dp.h +++ b/lib/igt_dp.h @@ -22,6 +22,7 @@ int igt_dp_get_max_supported_rate(int drm_fd, igt_output_t *output); int igt_dp_get_max_lane_count(int drm_fd, igt_output_t *output); void igt_dp_force_link_retrain(int drm_fd, igt_output_t *output, int retrain_count); +bool igt_dp_is_link_rate_supported(int drm_fd, igt_output_t *output, int rate_kb); int igt_dp_get_pending_retrain(int drm_fd, igt_output_t *output); diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 2eefb773b..041a3356b 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -8255,10 +8255,17 @@ get_array_diff(const uint32_t *array_a, int array_a_len, const uint32_t *array_b */ int kms_wait_for_new_connectors(uint32_t **newly_connected, const uint32_t *already_connected, - int already_connected_count, int drm_fd) + int already_connected_count, + int expected_new_connector_count, + int drm_fd) { int newly_connected_count; struct timespec start, end; + int timeout = igt_default_display_detect_timeout(); + + /* MST discovery may be serialized in the kernel; allocate extra time for topology settling */ + if (expected_new_connector_count > 1) + timeout *= 2; igt_assert(newly_connected); igt_assert_fd(drm_fd); @@ -8269,10 +8276,10 @@ int kms_wait_for_new_connectors(uint32_t **newly_connected, free(*newly_connected); newly_connected_count = igt_get_connected_connectors(drm_fd, newly_connected); igt_assert_eq(igt_gettime(&end), 0); - } while (!get_array_diff(*newly_connected, newly_connected_count, + } while (get_array_diff(*newly_connected, newly_connected_count, already_connected, already_connected_count, - NULL) && - igt_time_elapsed(&start, &end) <= igt_default_display_detect_timeout()); + NULL) < expected_new_connector_count && + igt_time_elapsed(&start, &end) <= timeout); return newly_connected_count; } diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 521a03c01..09cec556f 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1382,7 +1382,9 @@ uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path); int kms_wait_for_new_connectors(uint32_t **newly_connected, const uint32_t *already_connected, - int already_connected_count, int drm_fd); + int already_connected_count, + int expected_new_connector_count, + int drm_fd); int get_array_diff(const uint32_t *array_a, int array_a_len, const uint32_t *array_b, int array_b_len, uint32_t **diff); diff --git a/lib/vendor/unigraf/unigraf.c b/lib/vendor/unigraf/unigraf.c index 30ee3c72b..bfb06bd0c 100644 --- a/lib/vendor/unigraf/unigraf.c +++ b/lib/vendor/unigraf/unigraf.c @@ -270,6 +270,7 @@ static void unigraf_autodetect_connector(int drm_fd) newly_connected_count = kms_wait_for_new_connectors(&newly_connected, already_connected, already_connected_count, + 1, drm_fd); diff_len = get_array_diff(newly_connected, newly_connected_count, diff --git a/tests/unigraf/unigraf_connectivity.c b/tests/unigraf/unigraf_connectivity.c index 8ae9a2593..e813c9973 100644 --- a/tests/unigraf/unigraf_connectivity.c +++ b/tests/unigraf/unigraf_connectivity.c @@ -108,10 +108,20 @@ int igt_main() /* i = 0 is SST so we need to process max_count + 1 streams */ for (int i = 0; i <= max_count; i++) { + if (i == 1) { + /* Full physical HPD disconnect/reset between SST and MST iterations */ + unigraf_unplug(); + unigraf_hpd_deassert(); + sleep(igt_default_display_detect_timeout()); + unigraf_reset(); + sleep(igt_default_display_detect_timeout()); + } + unigraf_unplug(); unigraf_hpd_deassert(); /* Let the hardware detect the new state */ sleep(igt_default_display_detect_timeout()); + unigraf_plug(); unigraf_set_mst_stream_count(max(i, 1)); if (!i) unigraf_set_sst(); @@ -125,13 +135,18 @@ int igt_main() newly_connected_count = kms_wait_for_new_connectors(&newly_connected, already_connected, already_connected_count, + max(i, 1), drm_fd); diff_len = get_array_diff(newly_connected, newly_connected_count, already_connected, already_connected_count, &diff); - igt_assert_f(diff_len == max(i, 1), - "Invalid connected connector count, expected %d found %d\n", + /* + * We allow diff_len to be between 1 and max(i, 1) because the DRM driver may incrementally + * expose MST stream nodes rather than surfacing the entire topology at once. + */ + igt_assert_f(diff_len >= 1 && diff_len <= max(i, 1), + "Invalid connected connector count, expected between 1 and %d found %d\n", max(i, 1), diff_len); } diff --git a/tests/unigraf/unigraf_lt.c b/tests/unigraf/unigraf_lt.c index 81e6ecd3f..b5989503d 100644 --- a/tests/unigraf/unigraf_lt.c +++ b/tests/unigraf/unigraf_lt.c @@ -107,11 +107,15 @@ int igt_main() for (i = 0; i < ARRAY_SIZE(lane_counts); i++) { igt_dynamic_f("unigraf-dp-lane-count-%d", lane_counts[i]) { + /* Hardware PHY requires physical settle time before and after link constraints */ + sleep(igt_default_display_detect_timeout()); unigraf_reset(); unigraf_set_max_lane_count(lane_counts[i]); unigraf_hpd_pulse(500000); + sleep(igt_default_display_detect_timeout()); - igt_display_require_output(&display); + igt_display_reset_outputs(&display); + connector = unigraf_get_connector(drm_fd); output = igt_output_from_connector(&display, connector); igt_assert(output); igt_dp_force_link_retrain(drm_fd, output, 2); @@ -119,6 +123,9 @@ int igt_main() current_lanes = igt_dp_get_current_lane_count(drm_fd, output); igt_assert_eq(current_lanes, lane_counts[i]); + + igt_modeset_disable_all_outputs(&display); + igt_display_commit2(&display, COMMIT_ATOMIC); } } } @@ -134,14 +141,21 @@ int igt_main() for (i = 0; i < ARRAY_SIZE(rates); i++) { igt_dynamic_f("unigraf-dp-link-rate-%d", rates[i]) { - unigraf_reset(); - unigraf_set_max_link_rate(rates[i]); - unigraf_hpd_pulse(1000000); - igt_display_require_output(&display); - igt_display_reset(&display); - igt_display_require_output(&display); + connector = unigraf_get_connector(drm_fd); output = igt_output_from_connector(&display, connector); igt_assert(output); + + /* Fast-fail if graphic card does not support enforcing this link rate natively */ + igt_require(igt_dp_is_link_rate_supported(drm_fd, output, unigraf_rate_to_kbs(rates[i]))); + + /* Hardware PHY requires physical settle time before and after link constraints */ + sleep(igt_default_display_detect_timeout()); + unigraf_reset(); + unigraf_set_max_link_rate(rates[i]); + unigraf_hpd_pulse(500000); + sleep(igt_default_display_detect_timeout()); + + igt_display_reset_outputs(&display); igt_dp_force_link_retrain(drm_fd, output, 2); init_output_and_display_pattern(&display, output); @@ -150,6 +164,9 @@ int igt_main() max_supported_rate = igt_dp_get_max_supported_rate(drm_fd, output); igt_require(max_supported_rate >= unigraf_rate_to_kbs(rates[i])); igt_assert_eq(current_rate, unigraf_rate_to_kbs(rates[i])); + + igt_modeset_disable_all_outputs(&display); + igt_display_commit2(&display, COMMIT_ATOMIC); } } } -- 2.55.0.229.g6434b31f56-goog ^ permalink raw reply related [flat|nested] 20+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub 2026-07-15 19:29 ` [PATCH 2/3] tests/unigraf: Fix DRM master and heap memory leaks in tests Mark Yacoub 2026-07-15 19:29 ` [PATCH 3/3] tests/unigraf: Enhance link rate support checking and hardware retrain timing Mark Yacoub @ 2026-07-15 20:27 ` Patchwork 2026-07-15 20:54 ` ✓ i915.CI.BAT: " Patchwork ` (9 subsequent siblings) 12 siblings, 0 replies; 20+ messages in thread From: Patchwork @ 2026-07-15 20:27 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1032 bytes --] == Series Details == Series: series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim URL : https://patchwork.freedesktop.org/series/170509/ State : success == Summary == CI Bug Log - changes from XEIGT_9007_BAT -> XEIGTPW_15537_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_9007 -> IGTPW_15537 * Linux: xe-5412-116ce94f4e028e50e3523c46a8ce1e665ce47cb9 -> xe-5413-d5e28ab6d95745792768007429a07204680b6623 IGTPW_15537: 15537 IGT_9007: 9007 xe-5412-116ce94f4e028e50e3523c46a8ce1e665ce47cb9: 116ce94f4e028e50e3523c46a8ce1e665ce47cb9 xe-5413-d5e28ab6d95745792768007429a07204680b6623: d5e28ab6d95745792768007429a07204680b6623 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/index.html [-- Attachment #2: Type: text/html, Size: 1591 bytes --] ^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (2 preceding siblings ...) 2026-07-15 20:27 ` ✓ Xe.CI.BAT: success for series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Patchwork @ 2026-07-15 20:54 ` Patchwork 2026-07-15 23:40 ` ✓ Xe.CI.FULL: " Patchwork ` (8 subsequent siblings) 12 siblings, 0 replies; 20+ messages in thread From: Patchwork @ 2026-07-15 20:54 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2176 bytes --] == Series Details == Series: series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim URL : https://patchwork.freedesktop.org/series/170509/ State : success == Summary == CI Bug Log - changes from IGT_9007 -> IGTPW_15537 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/index.html Participating hosts (41 -> 38) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_15537 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@too-high: - bat-apl-1: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +38 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9007/bat-apl-1/igt@kms_addfb_basic@too-high.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/bat-apl-1/igt@kms_addfb_basic@too-high.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1: - bat-apl-1: [PASS][3] -> [DMESG-WARN][4] ([i915#13735] / [i915#180]) +38 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9007/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1.html [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9007 -> IGTPW_15537 * Linux: CI_DRM_18830 -> CI_DRM_18832 CI-20190529: 20190529 CI_DRM_18830: 116ce94f4e028e50e3523c46a8ce1e665ce47cb9 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18832: c5949557d2bad72487d7e443212ab4964b34b242 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15537: 15537 IGT_9007: 9007 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/index.html [-- Attachment #2: Type: text/html, Size: 2889 bytes --] ^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ Xe.CI.FULL: success for series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (3 preceding siblings ...) 2026-07-15 20:54 ` ✓ i915.CI.BAT: " Patchwork @ 2026-07-15 23:40 ` Patchwork 2026-07-16 3:27 ` ✓ i915.CI.Full: " Patchwork ` (7 subsequent siblings) 12 siblings, 0 replies; 20+ messages in thread From: Patchwork @ 2026-07-15 23:40 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 27701 bytes --] == Series Details == Series: series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim URL : https://patchwork.freedesktop.org/series/170509/ State : success == Summary == CI Bug Log - changes from XEIGT_9007_FULL -> XEIGTPW_15537_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15537_FULL: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_cw_post_sync@walker-post-sync}: - shard-bmg: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-5/igt@xe_cw_post_sync@walker-post-sync.html Known issues ------------ Here are the changes found in XEIGTPW_15537_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327]) +2 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +9 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7679]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2887]) +10 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#3432]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-2/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7358]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-6/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_frames@dp-crc-single: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2252]) +5 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-2/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#6507]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7642]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#4354] / [Intel XE#5870]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#8265]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-10/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4422] / [Intel XE#7442]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2373] / [Intel XE#7448]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-5/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][19] -> [FAIL][20] ([Intel XE#301]) +3 other tests fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4141]) +10 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2311]) +45 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7061]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2313]) +38 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7399]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4298] / [Intel XE#5873]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6911] / [Intel XE#7378]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7283]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#5020] / [Intel XE#7348]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2505] / [Intel XE#7447]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1489]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-5/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7795]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3904] / [Intel XE#7342]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2168] / [Intel XE#7444]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-1/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1499]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_basic@once-basic: - shard-lnl: [PASS][43] -> [ABORT][44] ([Intel XE#8007]) +1 other test abort [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-5/igt@xe_exec_basic@once-basic.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-lnl-7/igt@xe_exec_basic@once-basic.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8374]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#8364]) +28 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-1/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html * igt@xe_exec_reset@cm-multi-queue-close-fd: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#8369]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@xe_exec_reset@cm-multi-queue-close-fd.html * igt@xe_exec_system_allocator@threads-many-stride-mmap-new-huge-nomemset: - shard-bmg: [PASS][48] -> [INCOMPLETE][49] ([Intel XE#7928] / [Intel XE#8159]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-stride-mmap-new-huge-nomemset.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-stride-mmap-new-huge-nomemset.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#8378]) +8 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html * igt@xe_module_load@many-reload: - shard-bmg: [PASS][51] -> [ABORT][52] ([Intel XE#8007]) +5 other tests abort [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-7/igt@xe_module_load@many-reload.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-4/igt@xe_module_load@many-reload.html * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6964]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-10/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html * igt@xe_page_reclaim@binds-large-split: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7793]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-8/igt@xe_page_reclaim@binds-large-split.html * igt@xe_pat@l2-flush-opt-svm-pat-restrict: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7590]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-10/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html * igt@xe_pat@pat-sw-hw-compare: - shard-bmg: NOTRUN -> [FAIL][56] ([Intel XE#7695]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-2/igt@xe_pat@pat-sw-hw-compare.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4733] / [Intel XE#7417]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-1/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-config: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#944]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@xe_query@multigpu-query-config.html * igt@xe_wedged@basic-wedged: - shard-lnl: [PASS][59] -> [ABORT][60] ([Intel XE#3119]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-3/igt@xe_wedged@basic-wedged.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-lnl-5/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: NOTRUN -> [DMESG-WARN][61] ([Intel XE#5545]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-lnl: [FAIL][62] ([Intel XE#3718] / [Intel XE#7265]) -> [PASS][63] +1 other test pass [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-7/igt@kms_async_flips@alternate-sync-async-flip.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-lnl-1/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][64] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][65] [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [SKIP][66] ([Intel XE#7308]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][68] ([Intel XE#8399]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][70] ([Intel XE#2142]) -> [PASS][71] +1 other test pass [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_exec_reset@long-spin-reuse-many-preempt-threads: - shard-bmg: [FAIL][72] ([Intel XE#7850]) -> [PASS][73] [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-5/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-3/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-race: - shard-bmg: [ABORT][74] ([Intel XE#8007]) -> [PASS][75] +2 other tests pass [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-race.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-race.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random: - shard-bmg: [FAIL][76] ([Intel XE#7992]) -> [PASS][77] +3 other tests pass [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-1/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-6/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [FAIL][78] ([Intel XE#6569]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-9/igt@xe_sriov_flr@flr-vf1-clear.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt1-vcs0: - shard-bmg: [FAIL][80] ([Intel XE#8526]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-9/igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt1-vcs0.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-bmg-1/igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt1-vcs0.html #### Warnings #### * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][82] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][83] ([Intel XE#301]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [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#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870 [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850 [Intel XE#7928]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7928 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8526 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9007 -> IGTPW_15537 * Linux: xe-5412-116ce94f4e028e50e3523c46a8ce1e665ce47cb9 -> xe-5413-d5e28ab6d95745792768007429a07204680b6623 IGTPW_15537: 15537 IGT_9007: 9007 xe-5412-116ce94f4e028e50e3523c46a8ce1e665ce47cb9: 116ce94f4e028e50e3523c46a8ce1e665ce47cb9 xe-5413-d5e28ab6d95745792768007429a07204680b6623: d5e28ab6d95745792768007429a07204680b6623 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15537/index.html [-- Attachment #2: Type: text/html, Size: 30321 bytes --] ^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ i915.CI.Full: success for series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (4 preceding siblings ...) 2026-07-15 23:40 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-07-16 3:27 ` Patchwork 2026-07-17 8:20 ` [PATCH 1/3] " Louis Chauvet ` (6 subsequent siblings) 12 siblings, 0 replies; 20+ messages in thread From: Patchwork @ 2026-07-16 3:27 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 155668 bytes --] == Series Details == Series: series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim URL : https://patchwork.freedesktop.org/series/170509/ State : success == Summary == CI Bug Log - changes from CI_DRM_18832_full -> IGTPW_15537_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between CI_DRM_18832_full and IGTPW_15537_full: ### New IGT tests (2) ### * igt@kms_big_fb@cursor-sliding-64x21: - Statuses : - Exec time: [None] s * igt@kms_big_fb@psrhdr-1p-primscrn-shrfb-plflip-blt: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_15537_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#14544] / [i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@dmabuf@all-tests: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#15931]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@dmabuf@all-tests.html - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#15931]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-3/igt@dmabuf@all-tests.html - shard-dg2: NOTRUN -> [SKIP][7] ([i915#15931]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@dmabuf@all-tests.html - shard-rkl: NOTRUN -> [SKIP][8] ([i915#14544] / [i915#15931]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@dmabuf@all-tests.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#15931]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@dmabuf@all-tests.html * igt@drm_buddy@drm_buddy: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#15678]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-7/igt@drm_buddy@drm_buddy.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#7697]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-14/igt@gem_basic@multigpu-create-close.html - shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-10/igt@gem_basic@multigpu-create-close.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#4873]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@gem_caching@writes.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#13356] / [i915#16348]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#14544] / [i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#8562]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-10/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg1: [PASS][26] -> [FAIL][27] ([i915#16505]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-17/igt@gem_ctx_freq@sysfs@gt0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-18/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk11: NOTRUN -> [INCOMPLETE][28] ([i915#13356] / [i915#16466]) +1 other test incomplete [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk11/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@process: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-snb7/igt@gem_ctx_persistence@process.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#5882]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@suspend: - shard-dg2: [PASS][32] -> [ABORT][33] ([i915#15131]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-1/igt@gem_eio@suspend.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@gem_eio@suspend.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@gem_exec_balancer@parallel.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-14/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@gem_exec_reloc@basic-wc-cpu.html - shard-rkl: NOTRUN -> [SKIP][45] ([i915#14544] / [i915#3281]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#7276]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify: - shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk5/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#12193]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4565]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +10 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-3/igt@gem_mmap_gtt@fault-concurrent-y.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@gem_mmap_gtt@fault-concurrent-y.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-5/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][61] -> [INCOMPLETE][62] ([i915#16021] / [i915#16108] / [i915#16202]) +1 other test incomplete [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@gem_mmap_wc@write-gtt-read-wc.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-13/igt@gem_mmap_wc@write-gtt-read-wc.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#14544] / [i915#3282]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][69] ([i915#2658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-snb5/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#13717]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: [PASS][73] -> [SKIP][74] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-5/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4879]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#3323]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-8/igt@gem_userptr_blits@dmabuf-sync.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][84] ([i915#3323]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][85] ([i915#14544] / [i915#3297] / [i915#3323]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-17/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@gem_userptr_blits@dmabuf-unsync.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html - shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-9/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282] / [i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3281] / [i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@gem_userptr_blits@relocations.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][93] -> [ABORT][94] ([i915#15131]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@gem_workarounds@suspend-resume-context.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@gem_workarounds@suspend-resume-context.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][95] +12 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#2527]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-14/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-large: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-3/igt@gen9_exec_parse@bb-start-out.html * igt@i915_drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#14123]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@i915_drm_fdinfo@all-busy-check-all.html * igt@i915_drm_fdinfo@busy-hang@ccs0: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#14073]) +13 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-7/igt@i915_drm_fdinfo@busy-hang@ccs0.html * igt@i915_drm_fdinfo@busy-hang@vcs0: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#14073]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@i915_drm_fdinfo@busy-hang@vcs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#14073]) +15 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#14118]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#14118]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-tglu: NOTRUN -> [ABORT][107] ([i915#15342]) +1 other test abort [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-10/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-glk: NOTRUN -> [ABORT][108] ([i915#15342]) +1 other test abort [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk5/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#15479]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-10/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#6412]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#8399]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html - shard-tglu: NOTRUN -> [SKIP][112] ([i915#8399]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-3/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#8399]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: NOTRUN -> [FAIL][114] ([i915#12964]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][115] ([i915#13356] / [i915#15172]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][116] -> [TIMEOUT][117] ([i915#16162]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-snb7/igt@i915_pm_rps@reset.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-snb7/igt@i915_pm_rps@reset.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4387]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][119] ([i915#4387]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4387]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#4387]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-10/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8437]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][123] -> [SKIP][124] ([i915#7984]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-mtlp-6/igt@i915_power@sanity.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-8/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#6245]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-6/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#16079]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@i915_query@query-topology-unsupported.html - shard-rkl: NOTRUN -> [SKIP][127] ([i915#16079]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@i915_query@query-topology-unsupported.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#16079]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-12/igt@i915_query@query-topology-unsupported.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#16079]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-9/igt@i915_query@query-topology-unsupported.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#16079]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-3/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][131] ([i915#4817] / [i915#7443]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][132] ([i915#16182] / [i915#4817]) +3 other tests incomplete [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk5/igt@i915_suspend@forcewake.html - shard-rkl: [PASS][133] -> [INCOMPLETE][134] ([i915#4817]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@i915_suspend@forcewake.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7707]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#5190]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][137] ([i915#12761]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][138] ([i915#12761] / [i915#14995]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][140] ([i915#1769]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk11: NOTRUN -> [SKIP][142] ([i915#1769]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb: - shard-snb: NOTRUN -> [INCOMPLETE][143] ([i915#16545]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-snb7/igt@kms_big_fb.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14544] / [i915#5286]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#5286]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#5286]) +6 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5286]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][148] ([i915#5286]) +8 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3638]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#14544] / [i915#3638]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3828]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3828]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-12/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3828]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-addfb-size-offset-overflow: - shard-dg1: [PASS][154] -> [DMESG-WARN][155] ([i915#4423]) +1 other test dmesg-warn [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-13/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-18/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3638]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-16/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-tglu-1: NOTRUN -> [SKIP][157] +25 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#4538] / [i915#5190]) +7 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#4538]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#14544] / [i915#6095]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#14098] / [i915#6095]) +54 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#10307] / [i915#6095]) +125 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][163] +625 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-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][164] ([i915#6095]) +69 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#12313]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][166] ([i915#12313]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][167] ([i915#12313]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#12313]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#6095]) +19 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#12805]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#12805] / [i915#14544]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#12805]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][173] ([i915#12805]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#12805]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][176] ([i915#14694] / [i915#15582]) +1 other test incomplete [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-rkl: [PASS][177] -> [ABORT][178] ([i915#15132]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#6095]) +7 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [ABORT][180] ([i915#15132]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][181] ([i915#15582]) +1 other test incomplete [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#12313]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#6095]) +84 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#6095]) +24 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#6095]) +194 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#12313] / [i915#14544]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3742]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3742]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-16/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3742]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-2/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#16017]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#16017]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#13781]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#13781]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#13783]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#11151]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#14544]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][198] +15 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#16471]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#16471]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-2/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +6 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-glk11: NOTRUN -> [SKIP][203] +34 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk11/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#11151] / [i915#7828]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#11151] / [i915#7828]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#11151] / [i915#7828]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#11151] / [i915#14544] / [i915#7828]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-rkl: [PASS][209] -> [SKIP][210] ([i915#12655] / [i915#3555]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_color@deep-color.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_color@deep-color.html * igt@kms_color_pipeline@plane-lut1d: - shard-snb: NOTRUN -> [SKIP][211] +203 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-snb6/igt@kms_color_pipeline@plane-lut1d.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#15865]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#15330]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#15865]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-5/igt@kms_content_protection@legacy-hdcp14.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#15865]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_content_protection@legacy-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#15865]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-12/igt@kms_content_protection@legacy-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#15865]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-2/igt@kms_content_protection@legacy-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#15865]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-7/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][219] ([i915#7173]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#8814]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: [PASS][221] -> [FAIL][222] ([i915#13566]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8814]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#13049]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#3555]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: NOTRUN -> [FAIL][228] ([i915#13566]) +3 other tests fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#13049]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#13049]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3555]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#13046] / [i915#5354]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#4103]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#9809]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic: - shard-dg1: [PASS][235] -> [FAIL][236] ([i915#15999]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-13/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#9067]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#4103]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#9723]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#9723]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#13691]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#13749]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-4/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#13707]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#16361]) +6 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#16361]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-3/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#16361]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#16361]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#16361]) +4 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#16361]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [PASS][250] -> [INCOMPLETE][251] ([i915#9878]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#3469]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@dsc: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#16600]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_feature_discovery@dsc.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#16600]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-16/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#658]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#4881]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#9934]) +12 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#3637] / [i915#9934]) +5 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#3637] / [i915#9934]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#9934]) +6 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#9934]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-14/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html - shard-tglu: NOTRUN -> [SKIP][262] ([i915#9934]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#9934]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#14544] / [i915#9934]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#3637] / [i915#9934]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: [PASS][266] -> [FAIL][267] ([i915#13027]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][268] ([i915#13027]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-dg2: [PASS][269] -> [FAIL][270] ([i915#14600]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-8/igt@kms_flip@plain-flip-ts-check-interruptible.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][271] ([i915#14600]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544] / [i915#15643]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#15643]) +5 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15643]) +3 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#15643]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/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-rkl: NOTRUN -> [SKIP][276] ([i915#15643]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#15643]) +4 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#15643]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#15643] / [i915#5190]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_force_connector_basic@force-edid: - shard-mtlp: [PASS][281] -> [SKIP][282] ([i915#15672]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-mtlp-6/igt@kms_force_connector_basic@force-edid.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#15990] / [i915#8708]) +10 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][284] ([i915#14544] / [i915#1825]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#15990] / [i915#8708]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#15990]) +11 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15991]) +18 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#15990]) +4 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#15989]) +14 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#15104] / [i915#15990]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#15104] / [i915#15990]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#15991] / [i915#1825]) +12 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][293] +37 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#14544]) +7 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][295] +76 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#15990]) +21 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#15989]) +5 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#15989]) +21 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][299] +99 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-9/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: [PASS][300] -> [SKIP][301] +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk9/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-farfromfence-mmap-gtt: - shard-rkl: [PASS][302] -> [SKIP][303] ([i915#15989]) +10 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-farfromfence-mmap-gtt.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#15989]) +19 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#15989]) +9 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-17/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#15102]) +16 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#15102]) +42 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-glk10: NOTRUN -> [SKIP][308] +36 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#15102] / [i915#3023]) +20 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#15102]) +10 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#14544] / [i915#15102] / [i915#3023]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#15102]) +38 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#1825]) +7 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#15991] / [i915#5354]) +27 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#15990] / [i915#8708]) +5 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#15989]) +17 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#15102]) +24 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#15991]) +31 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8228]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8228]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@kms_hdr@invalid-hdr.html - shard-dg1: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8228]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-12/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#16518] / [i915#3555] / [i915#8228]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#15459]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#15458]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#15458]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk10: NOTRUN -> [INCOMPLETE][326] ([i915#12756] / [i915#13409] / [i915#13476]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [INCOMPLETE][327] ([i915#13409] / [i915#13476]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-xtiled: - shard-glk: NOTRUN -> [DMESG-FAIL][328] ([i915#118]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk3/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-glk: NOTRUN -> [DMESG-FAIL][329] ([i915#118] / [i915#16396]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg2: NOTRUN -> [SKIP][330] ([i915#14712]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#15709]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#14544] / [i915#15709]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#16386]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#15709]) +4 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html - shard-dg1: NOTRUN -> [SKIP][335] ([i915#15709]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html - shard-tglu: NOTRUN -> [SKIP][336] ([i915#15709]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#16386]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#15709]) +4 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#15709]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#16386]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#16386]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#16112]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-rkl: NOTRUN -> [SKIP][343] ([i915#16112]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-dg1: NOTRUN -> [SKIP][344] ([i915#16112]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-18/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-tglu: NOTRUN -> [SKIP][345] ([i915#16112]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-8/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#16112]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-6/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-glk: [PASS][347] -> [INCOMPLETE][348] ([i915#13026]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#13958]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][350] ([i915#13958]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#13958]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-6/igt@kms_plane_multiple@2x-tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][352] ([i915#13958]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#14259]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#15329]) +3 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#15329]) +4 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#12343] / [i915#5354]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#12343] / [i915#5354]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#12343] / [i915#5354]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-19/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#15751]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [FAIL][360] ([i915#16479]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html - shard-tglu-1: NOTRUN -> [FAIL][361] ([i915#16479]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][362] ([i915#3361]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#15948]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#9340]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][365] ([i915#9340]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][366] ([i915#3828]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#15403]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][368] -> [INCOMPLETE][369] ([i915#14419]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#6524]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#6524] / [i915#6805]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][372] ([i915#11520]) +17 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][373] ([i915#11520]) +6 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#11520]) +7 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#11520]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][376] ([i915#11520]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#9808]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#12316]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][379] ([i915#11520]) +2 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-snb1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-dg1: NOTRUN -> [SKIP][380] ([i915#11520]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-13/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu: NOTRUN -> [SKIP][381] ([i915#11520]) +5 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9683]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9683]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][384] ([i915#9683]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#1072] / [i915#9732]) +22 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-6/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][386] ([i915#9732]) +20 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-sprite-render: - shard-mtlp: NOTRUN -> [SKIP][387] ([i915#9688]) +13 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-1/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][388] ([i915#9732]) +3 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#1072] / [i915#9732]) +19 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr-sprite-render: - shard-dg1: NOTRUN -> [SKIP][390] ([i915#1072] / [i915#9732]) +12 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@kms_psr@psr-sprite-render.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][392] ([i915#15500] / [i915#16184]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: NOTRUN -> [INCOMPLETE][393] ([i915#15492] / [i915#16184]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk8/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#12755] / [i915#15867]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][395] ([i915#5289]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][396] ([i915#5289]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][397] ([i915#5289]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][398] ([i915#13179]) +1 other test abort [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][399] ([i915#8623]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][400] ([i915#12276]) +1 other test incomplete [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk11/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][401] ([i915#12276]) +1 other test incomplete [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk5/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#9906]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-6/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][403] ([i915#9906]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][404] ([i915#9906]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-8/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][405] ([i915#8808] / [i915#9906]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][406] ([i915#3555]) +5 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-10/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][407] ([i915#15243] / [i915#3555]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][408] ([i915#11920]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][409] ([i915#3555] / [i915#9906]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@kms_vrr@negative-basic.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][410] ([i915#2436]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-8/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][411] ([i915#4349]) +2 other tests fail [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-5/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [PASS][412] -> [FAIL][413] ([i915#15997]) +1 other test fail [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-7/igt@perf_pmu@most-busy-idle-check-all.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@perf_pmu@most-busy-idle-check-all.html - shard-dg1: [PASS][414] -> [FAIL][415] ([i915#15997]) +1 other test fail [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-15/igt@perf_pmu@most-busy-idle-check-all.html - shard-mtlp: [PASS][416] -> [FAIL][417] ([i915#15997]) +1 other test fail [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][418] ([i915#8516]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][419] ([i915#3708]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][420] ([i915#3291] / [i915#3708]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][421] ([i915#3708]) +1 other test skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][422] ([i915#16066]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][423] ([i915#13356]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html - shard-rkl: [INCOMPLETE][425] ([i915#13356]) -> [PASS][426] +2 other tests pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s3@smem: - shard-snb: [ABORT][427] ([i915#15840]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-snb5/igt@gem_exec_suspend@basic-s3@smem.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-snb6/igt@gem_exec_suspend@basic-s3@smem.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][429] ([i915#5566]) -> [PASS][430] [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-glk6/igt@gen9_exec_parse@allowed-single.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk2/igt@gen9_exec_parse@allowed-single.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [INCOMPLETE][431] ([i915#4817]) -> [PASS][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@i915_suspend@sysfs-reader.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@i915_suspend@sysfs-reader.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [ABORT][433] ([i915#15132]) -> [PASS][434] [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][435] ([i915#13566]) -> [PASS][436] +2 other tests pass [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [FAIL][437] ([i915#13566]) -> [PASS][438] +1 other test pass [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_flip@flip-vs-dpms-on-nop-interruptible: - shard-snb: [FAIL][439] ([i915#10826]) -> [PASS][440] +1 other test pass [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-snb6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-snb5/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: [SKIP][441] ([i915#15989]) -> [PASS][442] +14 other tests pass [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt: - shard-glk: [SKIP][443] -> [PASS][444] +5 other tests pass [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-glk9/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary: - shard-dg2: [SKIP][445] ([i915#15989]) -> [PASS][446] +10 other tests pass [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][447] ([i915#15073]) -> [PASS][448] [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][449] ([i915#15073]) -> [PASS][450] +1 other test pass [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg1: [SKIP][451] ([i915#15073]) -> [PASS][452] +1 other test pass [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [INCOMPLETE][453] ([i915#14419]) -> [PASS][454] [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@kms_pm_rpm@system-suspend-idle.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [FAIL][455] ([i915#15453]) -> [PASS][456] [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-mtlp-4/igt@perf_pmu@all-busy-idle-check-all.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html #### Warnings #### * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][457] ([i915#3555] / [i915#9323]) -> [SKIP][458] ([i915#14544] / [i915#3555] / [i915#9323]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: [SKIP][459] ([i915#6344]) -> [SKIP][460] ([i915#14544] / [i915#6344]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@gem_exec_capture@capture-recoverable.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_reloc@basic-concurrent16: - shard-rkl: [SKIP][461] ([i915#14544] / [i915#3281]) -> [SKIP][462] ([i915#3281]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent16.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][463] ([i915#3281]) -> [SKIP][464] ([i915#14544] / [i915#3281]) +5 other tests skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-7/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][465] ([i915#14544] / [i915#2190]) -> [SKIP][466] ([i915#2190]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@gem_huc_copy@huc-copy.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][467] ([i915#4613]) -> [SKIP][468] ([i915#14544] / [i915#4613]) +1 other test skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: [SKIP][469] ([i915#3282]) -> [SKIP][470] ([i915#14544] / [i915#3282]) +1 other test skip [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@gem_partial_pwrite_pread@reads.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html * igt@gem_readwrite@new-obj: - shard-rkl: [SKIP][471] ([i915#14544] / [i915#3282]) -> [SKIP][472] ([i915#3282]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@gem_readwrite@new-obj.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@gem_readwrite@new-obj.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][473] ([i915#14544] / [i915#8411]) -> [SKIP][474] ([i915#8411]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][475] ([i915#14544] / [i915#3297]) -> [SKIP][476] ([i915#3297]) [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-rkl: [SKIP][477] ([i915#3297]) -> [SKIP][478] ([i915#14544] / [i915#3297]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: [SKIP][479] ([i915#2527]) -> [SKIP][480] ([i915#14544] / [i915#2527]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@gen9_exec_parse@bb-start-param.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@unaligned-jump: - shard-rkl: [SKIP][481] ([i915#14544] / [i915#2527]) -> [SKIP][482] ([i915#2527]) +2 other tests skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@gen9_exec_parse@unaligned-jump.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@fault-injection: - shard-dg1: [ABORT][483] ([i915#11814] / [i915#15481]) -> [ABORT][484] ([i915#11814]) +1 other test abort [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-13/igt@i915_module_load@fault-injection.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-16/igt@i915_module_load@fault-injection.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][485] ([i915#14544] / [i915#8399]) -> [SKIP][486] ([i915#8399]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_power@sanity: - shard-rkl: [SKIP][487] ([i915#14544] / [i915#7984]) -> [SKIP][488] ([i915#7984]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@i915_power@sanity.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@i915_power@sanity.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][489] ([i915#5286]) -> [SKIP][490] ([i915#14544] / [i915#5286]) +2 other tests skip [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-rkl: [SKIP][491] ([i915#14544] / [i915#5286]) -> [SKIP][492] ([i915#5286]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][493] ([i915#14544] / [i915#3638]) -> [SKIP][494] ([i915#3638]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][495] ([i915#3638]) -> [SKIP][496] ([i915#14544] / [i915#3638]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][497] ([i915#14544] / [i915#6095]) -> [SKIP][498] ([i915#6095]) +1 other test skip [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][499] ([i915#6095]) -> [SKIP][500] ([i915#14544] / [i915#6095]) +3 other tests skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-rkl: [SKIP][501] ([i915#12313]) -> [SKIP][502] ([i915#12313] / [i915#14544]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: [SKIP][503] ([i915#12805]) -> [SKIP][504] ([i915#12805] / [i915#14544]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][505] ([i915#14098] / [i915#6095]) -> [SKIP][506] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][507] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][508] ([i915#14098] / [i915#6095]) +4 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4: - shard-rkl: [SKIP][509] ([i915#16471]) -> [SKIP][510] ([i915#14544] / [i915#16471]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-rkl: [SKIP][511] ([i915#14544] / [i915#16471]) -> [SKIP][512] ([i915#16471]) [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-rkl: [SKIP][513] ([i915#11151] / [i915#7828]) -> [SKIP][514] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-5/igt@kms_chamelium_edid@dp-mode-timings.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: [SKIP][515] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][516] ([i915#11151] / [i915#7828]) +1 other test skip [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][517] ([i915#15330]) -> [SKIP][518] ([i915#14544] / [i915#15330]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][519] ([i915#15865]) -> [SKIP][520] ([i915#9433]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-15/igt@kms_content_protection@mei-interface.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][521] ([i915#15865]) -> [SKIP][522] ([i915#14544] / [i915#15865]) +2 other tests skip [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@kms_content_protection@type1.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent-hdcp14: - shard-dg2: [SKIP][523] ([i915#15865]) -> [FAIL][524] ([i915#7173]) [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-5/igt@kms_content_protection@uevent-hdcp14.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: [SKIP][525] ([i915#13049] / [i915#14544]) -> [SKIP][526] ([i915#13049]) +1 other test skip [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][527] ([i915#3555]) -> [SKIP][528] ([i915#14544] / [i915#3555]) +1 other test skip [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][529] ([i915#14544] / [i915#3555]) -> [SKIP][530] ([i915#3555]) +1 other test skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][531] -> [SKIP][532] ([i915#14544]) +33 other tests skip [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_dsc@dsc-fractional-bpp-ultrajoiner: - shard-rkl: [SKIP][533] ([i915#14544] / [i915#16361]) -> [SKIP][534] ([i915#16361]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: [SKIP][535] ([i915#16361]) -> [SKIP][536] ([i915#14544] / [i915#16361]) +2 other tests skip [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@psr2: - shard-rkl: [SKIP][537] ([i915#14544] / [i915#658]) -> [SKIP][538] ([i915#658]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_feature_discovery@psr2.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-modeset: - shard-rkl: [SKIP][539] ([i915#14544] / [i915#9934]) -> [SKIP][540] ([i915#9934]) +1 other test skip [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: [INCOMPLETE][541] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][542] ([i915#12745] / [i915#4839]) [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk9/igt@kms_flip@2x-flip-vs-suspend.html - shard-rkl: [SKIP][543] ([i915#9934]) -> [SKIP][544] ([i915#14544] / [i915#9934]) +1 other test skip [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-7/igt@kms_flip@2x-flip-vs-suspend.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][545] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][546] ([i915#12745]) [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-glk9/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: [SKIP][547] ([i915#15643]) -> [SKIP][548] ([i915#14544] / [i915#15643]) +1 other test skip [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][549] ([i915#14544] / [i915#1825]) -> [SKIP][550] ([i915#1825]) +3 other tests skip [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt: - shard-rkl: [SKIP][551] ([i915#14544]) -> [SKIP][552] +31 other tests skip [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-dg1: [SKIP][553] ([i915#4423]) -> [SKIP][554] [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-dg2: [SKIP][555] ([i915#15102]) -> [SKIP][556] ([i915#10433] / [i915#15102]) [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-rkl: [SKIP][557] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][558] ([i915#15102] / [i915#3023]) +4 other tests skip [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][559] ([i915#15102]) -> [SKIP][560] ([i915#14544] / [i915#15102]) +13 other tests skip [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][561] ([i915#14544] / [i915#15102]) -> [SKIP][562] ([i915#15102]) +7 other tests skip [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4: - shard-rkl: [SKIP][563] ([i915#5439]) -> [SKIP][564] ([i915#14544] / [i915#5439]) [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][565] ([i915#10433] / [i915#15102]) -> [SKIP][566] ([i915#15102]) +2 other tests skip [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][567] ([i915#1825]) -> [SKIP][568] ([i915#14544] / [i915#1825]) [567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: [SKIP][569] ([i915#15102] / [i915#3023]) -> [SKIP][570] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip [569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-shrfb-scaledprimary: - shard-dg1: [SKIP][571] ([i915#15102]) -> [SKIP][572] ([i915#15102] / [i915#4423]) [571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-shrfb-scaledprimary.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-shrfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][573] ([i915#12713]) -> [SKIP][574] ([i915#1187] / [i915#12713]) [573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][575] ([i915#14544] / [i915#15460]) -> [SKIP][576] ([i915#15460]) [575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: [SKIP][577] ([i915#14544] / [i915#14712]) -> [SKIP][578] ([i915#14712]) [577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-4/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-rkl: [SKIP][579] ([i915#15709]) -> [SKIP][580] ([i915#14544] / [i915#15709]) +1 other test skip [579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: [SKIP][581] ([i915#14544] / [i915#15709]) -> [SKIP][582] ([i915#15709]) +1 other test skip [581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: [SKIP][583] ([i915#13958] / [i915#14544]) -> [SKIP][584] ([i915#13958]) [583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: [SKIP][585] ([i915#15329]) -> [SKIP][586] ([i915#14544] / [i915#15329]) +6 other tests skip [585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: [SKIP][587] ([i915#15329] / [i915#3555]) -> [SKIP][588] ([i915#14544] / [i915#15329] / [i915#3555]) [587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][589] ([i915#3828]) -> [SKIP][590] ([i915#14544] / [i915#3828]) [589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-1/igt@kms_pm_dc@dc5-retention-flops.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][591] ([i915#15073]) -> [SKIP][592] ([i915#14544] / [i915#15073]) [591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][593] ([i915#11520]) -> [SKIP][594] ([i915#11520] / [i915#14544]) +4 other tests skip [593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][595] ([i915#11520] / [i915#14544]) -> [SKIP][596] ([i915#11520]) +2 other tests skip [595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/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-dg1: [SKIP][597] ([i915#11520]) -> [SKIP][598] ([i915#11520] / [i915#4423]) [597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg1-18/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg1-16/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][599] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][600] ([i915#1072] / [i915#9732]) +6 other tests skip [599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-rkl: [SKIP][601] ([i915#1072] / [i915#9732]) -> [SKIP][602] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip [601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@kms_psr@psr2-primary-mmap-gtt.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][603] ([i915#5289]) -> [SKIP][604] ([i915#14544] / [i915#5289]) [603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][605] ([i915#14544] / [i915#5289]) -> [SKIP][606] ([i915#5289]) [605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: [SKIP][607] ([i915#12755] / [i915#15867]) -> [SKIP][608] ([i915#15867]) [607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: [SKIP][609] ([i915#14544] / [i915#8623]) -> [SKIP][610] ([i915#8623]) [609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][611] ([i915#15243] / [i915#3555]) -> [SKIP][612] ([i915#14544] / [i915#15243] / [i915#3555]) [611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-5/igt@kms_vrr@flip-dpms.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][613] ([i915#9906]) -> [SKIP][614] ([i915#14544] / [i915#9906]) [613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][615] ([i915#2435]) -> [SKIP][616] ([i915#14544] / [i915#2435]) [615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][617] ([i915#14544] / [i915#2433]) -> [SKIP][618] ([i915#2433]) [617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: [SKIP][619] ([i915#3708]) -> [SKIP][620] ([i915#14544] / [i915#3708]) [619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18832/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html [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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751 [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997 [i915#15999]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15999 [i915#16017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16017 [i915#16021]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16021 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16108]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16108 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16162 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16202 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16396]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16396 [i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16505]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16505 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16545 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [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#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#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [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#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#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#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [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#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [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#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [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_9007 -> IGTPW_15537 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18832: c5949557d2bad72487d7e443212ab4964b34b242 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15537: 15537 IGT_9007: 9007 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15537/index.html [-- Attachment #2: Type: text/html, Size: 207505 bytes --] ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (5 preceding siblings ...) 2026-07-16 3:27 ` ✓ i915.CI.Full: " Patchwork @ 2026-07-17 8:20 ` Louis Chauvet 2026-07-17 10:18 ` Kamil Konieczny 2026-07-17 10:27 ` Kamil Konieczny ` (5 subsequent siblings) 12 siblings, 1 reply; 20+ messages in thread From: Louis Chauvet @ 2026-07-17 8:20 UTC (permalink / raw) To: Mark Yacoub, igt-dev On 7/15/26 21:29, Mark Yacoub wrote: > [Why] > Android's Bionic C library lacks libglib2, requiring IGT to build against > an Android-specific mock header (include/android/glib.h). The existing mock > implementation of GKeyFile and g_key_file_load_from_file is a hardcoded > no-op returning NULL, which prevents tests relying on configuration files > (such as .igtrc) from dynamically retrieving values on Android. Hello Mark, I don't think it's a good idea to keep a custom parser inside IGT that isn't always used, especially when it behaves differently (no character escaping, first key value is used versus the last, 1/true/yes versus 1/true for booleans, spaces around =, etc.). I agree that external dependencies can be a pain to manage and are sometimes unavailable. After a quick look, extracting the full GLib parser doesn't seem feasible (it's tightly coupled to GLib internals). However, IGT could easily implement a minimal subset, as you have already done. That way, GLib would only be required for a few tests. I don't know what maintainers thinks about it? > [How] > Expand the dummy GKeyFile structure to record the file path upon calling > g_key_file_load_from_file. Implement a minimal internal INI parser function > (__android_g_key_file_get) inside g_key_file_get_string to traverse the file > line-by-line, matching requested [group] and key strings, stripping trailing > newlines, and returning a heap-allocated duplicate string (strdup). > > Signed-off-by: Mark Yacoub <markyacoub@google.com> Anyway, if there is a v2 of this patch, can you run checkpatch and fix the issues? > --- > include/android/glib.h | 120 +++++++++++++++++++++++++++++++++++++---- > 1 file changed, 111 insertions(+), 9 deletions(-) > > diff --git a/include/android/glib.h b/include/android/glib.h > index 0b6658287..5b8ba86c7 100644 > --- a/include/android/glib.h > +++ b/include/android/glib.h > @@ -16,8 +16,7 @@ typedef struct _GError { > } GError; > > typedef struct _GKeyFile { > - char *key; > - char *value; > + char path[512]; > } GKeyFile; > > typedef struct _GMatchInfo { > @@ -45,16 +44,119 @@ static inline void g_error_free(GError *error) { } > > static inline const char *g_get_home_dir(void) { return "/data/local/tmp/igt"; } > > -static inline void g_key_file_free(GKeyFile *file) { } > -static inline GKeyFile *g_key_file_new(void) { return NULL; } > +/* > + * __android_g_key_file_get: Minimal INI parser to mock GLib's GKeyFile getters. > + * > + * This function manually traverses a provided INI-style configuration file > + * (e.g., .igtrc) searching for a specific [group] and key. It parses line-by-line > + * without relying on the heavy libglib2 parsing dictionary framework natively > + * required by standard IGT. > + * > + * It operates strictly on the specific file path saved in the GKeyFile struct during > + * g_key_file_load_from_file(). This ensures it properly acts as a decoupled file > + * parser and prevents it from hijacking other distinct config operations. > + * > + * Parameters: > + * - key_file: The mocked GKeyFile struct holding the parsed file path. > + * - target_group: The [group] section to search within (e.g. "Unigraf"). > + * - target_key: The key to matching inside the group (e.g. "Connector"). > + * > + * Returns: > + * A newly allocated string (`strdup`) containing the right-side value of the > + * matched key, or NULL if not found. The caller is responsible for freeing it. > + */ > +static inline char *__android_g_key_file_get(GKeyFile *key_file, const char *target_group, const char *target_key) > +{ > + /* Ensure a valid file path was actively loaded into our GKeyFile mock */ > + if (!key_file || !key_file->path[0]) return NULL; > + > + FILE *fp = fopen(key_file->path, "r"); > + if (!fp) > + return NULL; > + > + char line[256]; > + bool in_group = false; > + size_t key_len = strlen(target_key); > + > + while (fgets(line, sizeof(line), fp)) { You may read twice the same line if the line is longer than 256 chars (probably not an issue, but that a limitation that should be documented somewhere). > + char *trim = line; > + > + /* Skip any leading whitespace (spaces or tabs) for the current line */ > + while (*trim == ' ' || *trim == '\t') trim++; > + > + /* Check if this line declares a new [Group] section */ > + if (trim[0] == '[') { > + /* Verify if it perfectly matches the user's requested [target_group] */ > + in_group = (strncmp(trim + 1, target_group, strlen(target_group)) == 0 && > + trim[1 + strlen(target_group)] == ']'); > + continue; /* Move to the next line of the file */ > + } > + > + /* If we are inside the correct group, evaluate if the line starts with `target_key=` */ > + if (in_group && strncmp(trim, target_key, key_len) == 0 && trim[key_len] == '=') { If you want to stick with glib behavior: there could be a space between the key and the = > + /* Pointer to the start of the value (immediately right of '=') */ > + char *val = trim + key_len + 1; Same, there can be spaces after the = > + char *end = val + strlen(val); The line may ends with some spaces. > + /* Strip any trailing whitespace, carriage returns, or newlines by inserting null terminators */ > + while (end > val && (end[-1] == '\r' || end[-1] == '\n' || end[-1] == ' ' || end[-1] == '\t')) > + end[-1] = '\0'; Why did you use a while and not a if here? > + > + fclose(fp); > + /* Return a standard heap-allocated copy of the value string just as GLib would */ > + return strdup(val); If you want to stick with glib behavior: you must return the last value, not the first. > + } > + } > + > + fclose(fp); > + return NULL; > +} > + > +static inline void g_key_file_free(GKeyFile *file) { free(file); } > + > +static inline GKeyFile *g_key_file_new(void) { return (GKeyFile *)calloc(1, sizeof(GKeyFile)); } > + > static inline int g_key_file_get_integer(GKeyFile *key_file, > - const char *group_name, const char *key, GError **error) { return 0; } > + const char *group_name, const char *key, GError **error) { That could be nice to fill error in case of error, many places rely on the error pointer content to detect issues during parsing. > + char *val = __android_g_key_file_get(key_file, group_name, key); > + if (!val) return 0; > + int res = atoi(val); If you fill the error pointer, you can use strtol to check the result. > + free(val); > + return res; > +} > + > static inline char *g_key_file_get_string(GKeyFile *key_file, > - const char *group_name, const char *key, GError **error) { return NULL; } > + const char *group_name, const char *key, GError **error) { > + return __android_g_key_file_get(key_file, group_name, key); > +} > + > static inline double g_key_file_get_double(GKeyFile *key_file, > - const char *group_name, const char *key, GError **error) { return 0.0; } > -static inline bool g_key_file_load_from_file(GKeyFile *key_file, > - const char *file, int flags, GError **error) { return false; } > + const char *group_name, const char *key, GError **error) { > + char *val = __android_g_key_file_get(key_file, group_name, key); > + if (!val) return 0.0; The caller need to know if the value is set to 0 (then use 0) or not present (then use some default value), see usage for DisplayDetectTimeout. > + double res = strtod(val, NULL); > + free(val); > + return res; > +} > + > +static inline bool g_key_file_get_boolean(GKeyFile *key_file, > + const char *group_name, const char *key, GError **error) { > + char *val = __android_g_key_file_get(key_file, group_name, key); > + if (!val) return false; > + bool res = (strcmp(val, "true") == 0 || strcmp(val, "1") == 0 || strcmp(val, "yes") == 0); To stick with glib behavior: only true/1 and false/0 are valid booleans. > + free(val); > + return res; > +} > + > +static inline bool > + g_key_file_load_from_file(GKeyFile *key_file, > + const char *file, int flags, GError **error) { > + if (key_file && file) { > + snprintf(key_file->path, sizeof(key_file->path), "%s", file); > + return true; > + } > + return false; > +} > > static inline GRegex *g_regex_new(const char *pattern, int compile_options, > int match_options, GError **error) { return NULL; } ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim 2026-07-17 8:20 ` [PATCH 1/3] " Louis Chauvet @ 2026-07-17 10:18 ` Kamil Konieczny 2026-07-17 19:23 ` Louis Chauvet 0 siblings, 1 reply; 20+ messages in thread From: Kamil Konieczny @ 2026-07-17 10:18 UTC (permalink / raw) To: Louis Chauvet Cc: Mark Yacoub, igt-dev, Ashutosh Dixit, Karthik B S, Swati Sharma, Zbigniew Kempczyński Hi Louis, On 2026-07-17 at 10:20:30 +0200, Louis Chauvet wrote: > > > On 7/15/26 21:29, Mark Yacoub wrote: > > [Why] > > Android's Bionic C library lacks libglib2, requiring IGT to build against > > an Android-specific mock header (include/android/glib.h). The existing mock > > implementation of GKeyFile and g_key_file_load_from_file is a hardcoded > > no-op returning NULL, which prevents tests relying on configuration files > > (such as .igtrc) from dynamically retrieving values on Android. > > Hello Mark, > > I don't think it's a good idea to keep a custom parser inside IGT that isn't > always used, especially when it behaves differently (no character escaping, > first key value is used versus the last, 1/true/yes versus 1/true for > booleans, spaces around =, etc.). > > I agree that external dependencies can be a pain to manage and are sometimes > unavailable. After a quick look, extracting the full GLib parser doesn't > seem feasible (it's tightly coupled to GLib internals). However, IGT could > easily implement a minimal subset, as you have already done. That way, GLib > would only be required for a few tests. > > I don't know what maintainers thinks about it? > This is a good idea to have as little as possible number of external libs linked. I am afraid removing glib would be hard as there are some other parts used in igt, like udev changes monitoring. What about placing this code in lib with name igt_ini.c? Or igt_config.c? +cc Ashutosh, Karthik, Swati and Zbigniew > > [How] > > Expand the dummy GKeyFile structure to record the file path upon calling > > g_key_file_load_from_file. Implement a minimal internal INI parser function > > (__android_g_key_file_get) inside g_key_file_get_string to traverse the file > > line-by-line, matching requested [group] and key strings, stripping trailing > > newlines, and returning a heap-allocated duplicate string (strdup). > > > > Signed-off-by: Mark Yacoub <markyacoub@google.com> > > Anyway, if there is a v2 of this patch, can you run checkpatch and fix the > issues? > > > --- > > include/android/glib.h | 120 +++++++++++++++++++++++++++++++++++++---- > > 1 file changed, 111 insertions(+), 9 deletions(-) > > > > diff --git a/include/android/glib.h b/include/android/glib.h > > index 0b6658287..5b8ba86c7 100644 > > --- a/include/android/glib.h > > +++ b/include/android/glib.h > > @@ -16,8 +16,7 @@ typedef struct _GError { > > } GError; > > typedef struct _GKeyFile { > > - char *key; > > - char *value; > > + char path[512]; Why did you drop key/value from here? > > } GKeyFile; > > typedef struct _GMatchInfo { [cut] Regards, Kamil ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim 2026-07-17 10:18 ` Kamil Konieczny @ 2026-07-17 19:23 ` Louis Chauvet 2026-07-20 12:25 ` Kamil Konieczny 0 siblings, 1 reply; 20+ messages in thread From: Louis Chauvet @ 2026-07-17 19:23 UTC (permalink / raw) To: Kamil Konieczny, Mark Yacoub, igt-dev, Ashutosh Dixit, Karthik B S, Swati Sharma, Zbigniew Kempczyński On 7/17/26 12:18, Kamil Konieczny wrote: > Hi Louis, > On 2026-07-17 at 10:20:30 +0200, Louis Chauvet wrote: >> >> >> On 7/15/26 21:29, Mark Yacoub wrote: >>> [Why] >>> Android's Bionic C library lacks libglib2, requiring IGT to build against >>> an Android-specific mock header (include/android/glib.h). The existing mock >>> implementation of GKeyFile and g_key_file_load_from_file is a hardcoded >>> no-op returning NULL, which prevents tests relying on configuration files >>> (such as .igtrc) from dynamically retrieving values on Android. >> >> Hello Mark, >> >> I don't think it's a good idea to keep a custom parser inside IGT that isn't >> always used, especially when it behaves differently (no character escaping, >> first key value is used versus the last, 1/true/yes versus 1/true for >> booleans, spaces around =, etc.). >> >> I agree that external dependencies can be a pain to manage and are sometimes >> unavailable. After a quick look, extracting the full GLib parser doesn't >> seem feasible (it's tightly coupled to GLib internals). However, IGT could >> easily implement a minimal subset, as you have already done. That way, GLib >> would only be required for a few tests. >> >> I don't know what maintainers thinks about it? >> > > This is a good idea to have as little as possible number of > external libs linked. I am afraid removing glib would be hard as > there are some other parts used in igt, like udev changes > monitoring. I did not explore the whole codebase, just android/glib.h. I think that the tests requiring udev don't use glib but libudev? > What about placing this code in lib with name igt_ini.c? > Or igt_config.c? There is already igt_rc.h, why not igt_rc.c? > +cc Ashutosh, Karthik, Swati and Zbigniew > >>> [How] >>> Expand the dummy GKeyFile structure to record the file path upon calling >>> g_key_file_load_from_file. Implement a minimal internal INI parser function >>> (__android_g_key_file_get) inside g_key_file_get_string to traverse the file >>> line-by-line, matching requested [group] and key strings, stripping trailing >>> newlines, and returning a heap-allocated duplicate string (strdup). >>> >>> Signed-off-by: Mark Yacoub <markyacoub@google.com> >> >> Anyway, if there is a v2 of this patch, can you run checkpatch and fix the >> issues? >> >>> --- >>> include/android/glib.h | 120 +++++++++++++++++++++++++++++++++++++---- >>> 1 file changed, 111 insertions(+), 9 deletions(-) >>> >>> diff --git a/include/android/glib.h b/include/android/glib.h >>> index 0b6658287..5b8ba86c7 100644 >>> --- a/include/android/glib.h >>> +++ b/include/android/glib.h >>> @@ -16,8 +16,7 @@ typedef struct _GError { >>> } GError; >>> typedef struct _GKeyFile { >>> - char *key; >>> - char *value; >>> + char path[512]; > > Why did you drop key/value from here? > >>> } GKeyFile; >>> typedef struct _GMatchInfo { > [cut] > > Regards, > Kamil ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim 2026-07-17 19:23 ` Louis Chauvet @ 2026-07-20 12:25 ` Kamil Konieczny 0 siblings, 0 replies; 20+ messages in thread From: Kamil Konieczny @ 2026-07-20 12:25 UTC (permalink / raw) To: Louis Chauvet Cc: Mark Yacoub, igt-dev, Ashutosh Dixit, Karthik B S, Swati Sharma, Sebastian Brzezinka, Zbigniew Kempczyński Hi Louis, On 2026-07-17 at 21:23:17 +0200, Louis Chauvet wrote: > > > On 7/17/26 12:18, Kamil Konieczny wrote: > > Hi Louis, > > On 2026-07-17 at 10:20:30 +0200, Louis Chauvet wrote: > > > > > > > > > On 7/15/26 21:29, Mark Yacoub wrote: > > > > [Why] > > > > Android's Bionic C library lacks libglib2, requiring IGT to build against > > > > an Android-specific mock header (include/android/glib.h). The existing mock > > > > implementation of GKeyFile and g_key_file_load_from_file is a hardcoded > > > > no-op returning NULL, which prevents tests relying on configuration files > > > > (such as .igtrc) from dynamically retrieving values on Android. > > > > > > Hello Mark, > > > > > > I don't think it's a good idea to keep a custom parser inside IGT that isn't > > > always used, especially when it behaves differently (no character escaping, > > > first key value is used versus the last, 1/true/yes versus 1/true for > > > booleans, spaces around =, etc.). > > > > > > I agree that external dependencies can be a pain to manage and are sometimes > > > unavailable. After a quick look, extracting the full GLib parser doesn't > > > seem feasible (it's tightly coupled to GLib internals). However, IGT could > > > easily implement a minimal subset, as you have already done. That way, GLib > > > would only be required for a few tests. > > > > > > I don't know what maintainers thinks about it? > > > > > > > This is a good idea to have as little as possible number of > > external libs linked. I am afraid removing glib would be hard as > > there are some other parts used in igt, like udev changes > > monitoring. > > I did not explore the whole codebase, just android/glib.h. I think that the > tests requiring udev don't use glib but libudev? > > > What about placing this code in lib with name igt_ini.c? > > Or igt_config.c? > > There is already igt_rc.h, why not igt_rc.c? > Right, it is a good place. +cc Sebastian Brzezinka <sebastian.brzezinka@intel.com> Regards, Kamil > > +cc Ashutosh, Karthik, Swati and Zbigniew > > > > > > [How] > > > > Expand the dummy GKeyFile structure to record the file path upon calling > > > > g_key_file_load_from_file. Implement a minimal internal INI parser function > > > > (__android_g_key_file_get) inside g_key_file_get_string to traverse the file > > > > line-by-line, matching requested [group] and key strings, stripping trailing > > > > newlines, and returning a heap-allocated duplicate string (strdup). > > > > > > > > Signed-off-by: Mark Yacoub <markyacoub@google.com> > > > > > > Anyway, if there is a v2 of this patch, can you run checkpatch and fix the > > > issues? > > > > > > > --- > > > > include/android/glib.h | 120 +++++++++++++++++++++++++++++++++++++---- > > > > 1 file changed, 111 insertions(+), 9 deletions(-) > > > > > > > > diff --git a/include/android/glib.h b/include/android/glib.h > > > > index 0b6658287..5b8ba86c7 100644 > > > > --- a/include/android/glib.h > > > > +++ b/include/android/glib.h > > > > @@ -16,8 +16,7 @@ typedef struct _GError { > > > > } GError; > > > > typedef struct _GKeyFile { > > > > - char *key; > > > > - char *value; > > > > + char path[512]; > > > > Why did you drop key/value from here? > > > > > > } GKeyFile; > > > > typedef struct _GMatchInfo { > > [cut] > > > > Regards, > > Kamil > ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (6 preceding siblings ...) 2026-07-17 8:20 ` [PATCH 1/3] " Louis Chauvet @ 2026-07-17 10:27 ` Kamil Konieczny 2026-07-20 18:50 ` [PATCH v2] lib/igt_rc: Introduce generic config parser Mark Yacoub ` (4 subsequent siblings) 12 siblings, 0 replies; 20+ messages in thread From: Kamil Konieczny @ 2026-07-17 10:27 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev, louis.chauvet Hi Mark, On 2026-07-15 at 15:29:47 -0400, Mark Yacoub wrote: I will comment on only a few small nits spotted. > [Why] > Android's Bionic C library lacks libglib2, requiring IGT to build against > an Android-specific mock header (include/android/glib.h). The existing mock > implementation of GKeyFile and g_key_file_load_from_file is a hardcoded > no-op returning NULL, which prevents tests relying on configuration files > (such as .igtrc) from dynamically retrieving values on Android. > > [How] > Expand the dummy GKeyFile structure to record the file path upon calling > g_key_file_load_from_file. Implement a minimal internal INI parser function > (__android_g_key_file_get) inside g_key_file_get_string to traverse the file > line-by-line, matching requested [group] and key strings, stripping trailing > newlines, and returning a heap-allocated duplicate string (strdup). > > Signed-off-by: Mark Yacoub <markyacoub@google.com> > --- > include/android/glib.h | 120 +++++++++++++++++++++++++++++++++++++---- > 1 file changed, 111 insertions(+), 9 deletions(-) > > diff --git a/include/android/glib.h b/include/android/glib.h > index 0b6658287..5b8ba86c7 100644 > --- a/include/android/glib.h > +++ b/include/android/glib.h > @@ -16,8 +16,7 @@ typedef struct _GError { > } GError; > > typedef struct _GKeyFile { > - char *key; > - char *value; > + char path[512]; Why it was dropped? Why is there a path name, it suggest one purpose use only now. > } GKeyFile; > [cut] > + > + /* Strip any trailing whitespace, carriage returns, or newlines by inserting null terminators */ > + while (end > val && (end[-1] == '\r' || end[-1] == '\n' || end[-1] == ' ' || end[-1] == '\t')) > + end[-1] = '\0'; Where is a decrement for end? Now it looks like an endless loop. imho simple should be better: while (--end >= val) if (*end == '\r' || *end == '\n' || *end == ' ' || *end == '\t') *end = '\0'; else break; Or place this function in igt_strings.c? Regards, Kamil [cut] ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v2] lib/igt_rc: Introduce generic config parser 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (7 preceding siblings ...) 2026-07-17 10:27 ` Kamil Konieczny @ 2026-07-20 18:50 ` Mark Yacoub 2026-07-21 3:25 ` ✓ Xe.CI.BAT: success for series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) Patchwork ` (3 subsequent siblings) 12 siblings, 0 replies; 20+ messages in thread From: Mark Yacoub @ 2026-07-20 18:50 UTC (permalink / raw) To: igt-dev; +Cc: louis.chauvet, kamil.konieczny, Mark Yacoub Currently, libraries like unigraf explicitly rely on GKeyFile for reading configuration from .igtrc. Android builds do not natively supply glib, meaning these tools cannot be cleanly compiled. This patch abstracts config parsing into a dedicated `igt_rc` module. On standard Linux, `igt_rc` seamlessly wraps glib's native methods. On Android environments, `igt_rc` natively parses `.igtrc` using a stripped-down, thread-safe linked-list implementation (lib/android/igt_rc.c). v2: - Drop the GKeyFile abstraction fakes from android/glib.h (Review feedback) - Introduce a generic wrapper (igt_rc.h) instead of modifying glib.h. - Provide a pure glib backend for Linux to avoid regressions. - Isolate Android parsing implementation cleanly into lib/android/igt_rc.c. --- lib/android/igt_rc.c | 172 +++++++++++++++++++++++++++++++++++ lib/igt_rc.c | 61 +++++++++++++ lib/igt_rc.h | 5 + lib/meson.build | 1 + lib/vendor/unigraf/unigraf.c | 92 ++++++++----------- 5 files changed, 279 insertions(+), 52 deletions(-) create mode 100644 lib/android/igt_rc.c create mode 100644 lib/igt_rc.c diff --git a/lib/android/igt_rc.c b/lib/android/igt_rc.c new file mode 100644 index 000000000..6d9b348f7 --- /dev/null +++ b/lib/android/igt_rc.c @@ -0,0 +1,172 @@ +#include "igt_rc.h" +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <strings.h> +#include <ctype.h> +#include <pthread.h> + +struct igt_key_entry { + char *group; + char *key; + char *value; + struct igt_key_entry *next; +}; + +static struct igt_key_entry *rc_entries = NULL; +static pthread_once_t rc_once_control = PTHREAD_ONCE_INIT; + +static char *trim_whitespace(char *str) +{ + char *end; + + while (isspace((unsigned char)*str)) + str++; + + if (*str == 0) + return str; + + end = str + strlen(str) - 1; + while (end > str && isspace((unsigned char)*end)) + end--; + + end[1] = '\0'; + return str; +} + +static void load_igtrc_once(void) +{ + FILE *fp; + char *line = NULL; + size_t len = 0; + ssize_t read; + char *current_group = NULL; + struct igt_key_entry *tail = NULL; + char path[512]; + + snprintf(path, sizeof(path), "%s/.igtrc", "/data/local/tmp/igt"); + + fp = fopen(path, "r"); + if (!fp) + return; + + while ((read = getline(&line, &len, fp)) != -1) { + char *trimmed = trim_whitespace(line); + + if (*trimmed == '\0' || *trimmed == '#' || *trimmed == ';') + continue; + + if (trimmed[0] == '[' && trimmed[strlen(trimmed) - 1] == ']') { + free(current_group); + trimmed[strlen(trimmed) - 1] = '\0'; + current_group = strdup(trimmed + 1); + continue; + } + + if (current_group) { + char *eq = strchr(trimmed, '='); + + if (eq) { + char *key; + char *value; + struct igt_key_entry *entry; + + *eq = '\0'; + key = trim_whitespace(trimmed); + value = trim_whitespace(eq + 1); + + entry = calloc(1, sizeof(*entry)); + entry->group = strdup(current_group); + entry->key = strdup(key); + entry->value = strdup(value); + entry->next = NULL; + + if (!rc_entries) { + rc_entries = entry; + tail = entry; + } else { + tail->next = entry; + tail = entry; + } + } + } + } + + free(current_group); + free(line); + fclose(fp); +} + +__attribute__((destructor)) +static void free_igtrc(void) +{ + struct igt_key_entry *curr, *next; + + curr = rc_entries; + while (curr) { + next = curr->next; + free(curr->group); + free(curr->key); + free(curr->value); + free(curr); + curr = next; + } + rc_entries = NULL; +} + +char *igt_rc_get_string(const char *group_name, const char *key) +{ + char *last_match = NULL; + struct igt_key_entry *curr; + + pthread_once(&rc_once_control, load_igtrc_once); + + curr = rc_entries; + while (curr) { + if (strcmp(curr->group, group_name) == 0 && strcmp(curr->key, key) == 0) + last_match = curr->value; + curr = curr->next; + } + + return last_match ? strdup(last_match) : NULL; +} + +bool igt_rc_get_boolean(const char *group_name, const char *key, bool *out) +{ + char *val = igt_rc_get_string(group_name, key); + + if (!val) + return false; + + if (strcasecmp(val, "true") == 0 || strcmp(val, "1") == 0) { + *out = true; + } else if (strcasecmp(val, "false") == 0 || strcmp(val, "0") == 0) { + *out = false; + } else { + free(val); + return false; + } + + free(val); + return true; +} + +int igt_rc_get_integer(const char *group_name, const char *key, int *out) +{ + char *val = igt_rc_get_string(group_name, key); + char *endptr; + long lval; + + if (!val) + return false; + + lval = strtol(val, &endptr, 10); + if (*endptr != '\0') { + free(val); + return false; + } + + *out = (int)lval; + free(val); + return true; +} diff --git a/lib/igt_rc.c b/lib/igt_rc.c new file mode 100644 index 000000000..31eb07bc0 --- /dev/null +++ b/lib/igt_rc.c @@ -0,0 +1,61 @@ +#include "igt_rc.h" +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <strings.h> +#include <ctype.h> + +#include <glib.h> + +char *igt_rc_get_string(const char *group_name, const char *key) +{ + GError *error = NULL; + char *val; + + if (!igt_key_file) + return NULL; + + val = g_key_file_get_string(igt_key_file, group_name, key, &error); + if (error) { + g_error_free(error); + return NULL; + } + + return val; +} + +bool igt_rc_get_boolean(const char *group_name, const char *key, bool *out) +{ + GError *error = NULL; + gboolean val; + + if (!igt_key_file) + return false; + + val = g_key_file_get_boolean(igt_key_file, group_name, key, &error); + if (error) { + g_error_free(error); + return false; + } + + *out = val; + return true; +} + +int igt_rc_get_integer(const char *group_name, const char *key, int *out) +{ + GError *error = NULL; + int val; + + if (!igt_key_file) + return false; + + val = g_key_file_get_integer(igt_key_file, group_name, key, &error); + if (error) { + g_error_free(error); + return false; + } + + *out = val; + return true; +} diff --git a/lib/igt_rc.h b/lib/igt_rc.h index d871b3b26..a0942f8d0 100644 --- a/lib/igt_rc.h +++ b/lib/igt_rc.h @@ -1,3 +1,4 @@ +#include <stdbool.h> /* * Copyright © 2017 Intel Corporation * @@ -33,4 +34,8 @@ extern GKeyFile *igt_key_file; +char *igt_rc_get_string(const char *group_name, const char *key); +bool igt_rc_get_boolean(const char *group_name, const char *key, bool *out); +int igt_rc_get_integer(const char *group_name, const char *key, int *out); + #endif /* IGT_RC_H */ diff --git a/lib/meson.build b/lib/meson.build index 8db9fffde..20c2f34d7 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -97,6 +97,7 @@ lib_sources = [ 'igt_kms.c', 'igt_fb.c', 'igt_core.c', + 'igt_rc.c', 'igt_dir.c', 'igt_draw.c', 'igt_list.c', diff --git a/lib/vendor/unigraf/unigraf.c b/lib/vendor/unigraf/unigraf.c index 30ee3c72b..64268db34 100644 --- a/lib/vendor/unigraf/unigraf.c +++ b/lib/vendor/unigraf/unigraf.c @@ -364,7 +364,6 @@ int unigraf_get_connector_id_by_stream(int drm_fd, int stream_id) bool unigraf_open_device(int drm_fd) { TSI_RESULT r; - GError *cfg_error = NULL; char *cfg_device = NULL; char *cfg_role = NULL; char *cfg_input = NULL; @@ -382,63 +381,52 @@ bool unigraf_open_device(int drm_fd) unigraf_init(); - if (igt_key_file) { - cfg_device = g_key_file_get_string(igt_key_file, UNIGRAF_CONFIG_GROUP, - UNIGRAF_CONFIG_DEVICE_NAME, &cfg_error); - if (cfg_error) { - unigraf_debug("No device name configured, uses first device available.\n"); - cfg_device = NULL; - } + cfg_device = igt_rc_get_string(UNIGRAF_CONFIG_GROUP, + UNIGRAF_CONFIG_DEVICE_NAME); + if (!cfg_device) { + unigraf_debug("No device name configured, uses first device available.\n"); + cfg_device = NULL; + } - cfg_error = NULL; - cfg_role = g_key_file_get_string(igt_key_file, UNIGRAF_CONFIG_GROUP, - UNIGRAF_CONFIG_DEVICE_ROLE, &cfg_error); - if (cfg_error) { - unigraf_debug("No device role configured.\n"); - cfg_role = NULL; - } + cfg_role = igt_rc_get_string(UNIGRAF_CONFIG_GROUP, + UNIGRAF_CONFIG_DEVICE_ROLE); + if (!cfg_role) { + unigraf_debug("No device role configured.\n"); + cfg_role = NULL; + } - cfg_error = NULL; - cfg_input = g_key_file_get_string(igt_key_file, UNIGRAF_CONFIG_GROUP, - UNIGRAF_CONFIG_INPUT_NAME, &cfg_error); - if (cfg_error) { - unigraf_debug("No input name configured.\n"); - cfg_input = NULL; - } + cfg_input = igt_rc_get_string(UNIGRAF_CONFIG_GROUP, + UNIGRAF_CONFIG_INPUT_NAME); + if (!cfg_input) { + unigraf_debug("No input name configured.\n"); + cfg_input = NULL; + } - cfg_error = NULL; - unigraf_connector_name = g_key_file_get_string(igt_key_file, UNIGRAF_CONFIG_GROUP, - UNIGRAF_CONFIG_CONNECTOR_NAME, - &cfg_error); - if (cfg_error) { - unigraf_debug("No connector name configured, will autodetect.\n"); - unigraf_connector_name = NULL; - } + unigraf_connector_name = igt_rc_get_string(UNIGRAF_CONFIG_GROUP, + UNIGRAF_CONFIG_CONNECTOR_NAME); + if (!unigraf_connector_name) { + unigraf_debug("No connector name configured, will autodetect.\n"); + unigraf_connector_name = NULL; + } - cfg_error = NULL; - cfg_edid_name = g_key_file_get_string(igt_key_file, UNIGRAF_CONFIG_GROUP, - UNIGRAF_CONFIG_EDID_NAME, &cfg_error); - if (cfg_error) { - unigraf_debug("No default EDID set, use IGT default.\n"); - cfg_edid_name = NULL; - } + cfg_edid_name = igt_rc_get_string(UNIGRAF_CONFIG_GROUP, + UNIGRAF_CONFIG_EDID_NAME); + if (!cfg_edid_name) { + unigraf_debug("No default EDID set, use IGT default.\n"); + cfg_edid_name = NULL; + } - cfg_error = NULL; - unigraf_crc = g_key_file_get_boolean(igt_key_file, UNIGRAF_CONFIG_GROUP, - UNIGRAF_CONFIG_USE_CRC_NAME, &cfg_error); - if (cfg_error) { - unigraf_debug("CRC usage not configured, using unigraf CRC.\n"); - unigraf_crc = true; - } + if (!igt_rc_get_boolean(UNIGRAF_CONFIG_GROUP, + UNIGRAF_CONFIG_USE_CRC_NAME, &unigraf_crc)) { + unigraf_debug("CRC usage not configured, using unigraf CRC.\n"); + unigraf_crc = true; + } - cfg_error = NULL; - unigraf_stream_count = g_key_file_get_integer(igt_key_file, UNIGRAF_CONFIG_GROUP, - UNIGRAF_CONFIG_MST_STREAM_COUNT, - &cfg_error); - if (cfg_error) { - unigraf_debug("MST usage not configured, using SST.\n"); - unigraf_stream_count = 0; - } + if (!igt_rc_get_integer(UNIGRAF_CONFIG_GROUP, + UNIGRAF_CONFIG_MST_STREAM_COUNT, + &unigraf_stream_count)) { + unigraf_debug("MST usage not configured, using SST.\n"); + unigraf_stream_count = 0; } unigraf_assert(TSIX_DEV_RescanDevices(0, TSI_DEVCAP_VIDEO_CAPTURE, 0)); -- 2.55.0.229.g6434b31f56-goog ^ permalink raw reply related [flat|nested] 20+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (8 preceding siblings ...) 2026-07-20 18:50 ` [PATCH v2] lib/igt_rc: Introduce generic config parser Mark Yacoub @ 2026-07-21 3:25 ` Patchwork 2026-07-21 3:53 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 12 siblings, 0 replies; 20+ messages in thread From: Patchwork @ 2026-07-21 3:25 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 897 bytes --] == Series Details == Series: series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) URL : https://patchwork.freedesktop.org/series/170509/ State : success == Summary == CI Bug Log - changes from XEIGT_9015_BAT -> XEIGTPW_15567_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_9015 -> IGTPW_15567 IGTPW_15567: 15567 IGT_9015: c656c9ccd7e45834f4ca191dbf729e7ba4676f6b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5443-b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405: b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/index.html [-- Attachment #2: Type: text/html, Size: 1442 bytes --] ^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (9 preceding siblings ...) 2026-07-21 3:25 ` ✓ Xe.CI.BAT: success for series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) Patchwork @ 2026-07-21 3:53 ` Patchwork 2026-07-21 11:48 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-21 17:40 ` ✓ i915.CI.Full: " Patchwork 12 siblings, 0 replies; 20+ messages in thread From: Patchwork @ 2026-07-21 3:53 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4219 bytes --] == Series Details == Series: series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) URL : https://patchwork.freedesktop.org/series/170509/ State : success == Summary == CI Bug Log - changes from IGT_9015 -> IGTPW_15567 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-adls-6 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15567 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic@basic: - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#15656]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@gem_tiled_pread_basic@basic.html * igt@intel_hwmon@hwmon-read: - bat-adls-6: NOTRUN -> [SKIP][3] ([i915#7707]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@intel_hwmon@hwmon-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][4] ([i915#4103]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][5] ([i915#16361]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][7] ([i915#5354]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][8] ([i915#1072] / [i915#9732]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][9] ([i915#3555]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][10] ([i915#3291]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/bat-adls-6/igt@prime_vgem@basic-fence-read.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9015 -> IGTPW_15567 CI-20190529: 20190529 CI_DRM_18861: b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15567: 15567 IGT_9015: c656c9ccd7e45834f4ca191dbf729e7ba4676f6b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/index.html [-- Attachment #2: Type: text/html, Size: 5068 bytes --] ^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ Xe.CI.FULL: success for series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (10 preceding siblings ...) 2026-07-21 3:53 ` ✓ i915.CI.BAT: " Patchwork @ 2026-07-21 11:48 ` Patchwork 2026-07-21 17:40 ` ✓ i915.CI.Full: " Patchwork 12 siblings, 0 replies; 20+ messages in thread From: Patchwork @ 2026-07-21 11:48 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30174 bytes --] == Series Details == Series: series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) URL : https://patchwork.freedesktop.org/series/170509/ State : success == Summary == CI Bug Log - changes from XEIGT_9015_FULL -> XEIGTPW_15567_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15567_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#7059] / [Intel XE#7085]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2328] / [Intel XE#7367]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-10/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +8 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#7679]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#367]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +10 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3: - shard-bmg: [PASS][8] -> [INCOMPLETE][9] ([Intel XE#7084] / [Intel XE#8150]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-a-dp-2: - shard-bmg: [PASS][11] -> [INCOMPLETE][12] ([Intel XE#6819] / [Intel XE#8150]) +1 other test incomplete [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-a-dp-2.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-a-dp-2.html * igt@kms_cdclk@plane-scaling: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2724] / [Intel XE#7449]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-5/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-10/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#7358]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-1/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#6974]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2390] / [Intel XE#6974]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2321] / [Intel XE#7355]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#7571]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#8265]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2374] / [Intel XE#6128]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-5/igt@kms_feature_discovery@psr2.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][26] -> [FAIL][27] ([Intel XE#301]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7351]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2311]) +52 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4141]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7061] / [Intel XE#7356]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2352] / [Intel XE#7399]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2313]) +39 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7061]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-1/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7308]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#6911] / [Intel XE#7466]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2486]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-7/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7283]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-9/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-2/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-after-dc6: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#8395]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-4/igt@kms_pm_dc@dc3co-after-dc6.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#8399]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1489]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-2/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [PASS][49] -> [SKIP][50] ([Intel XE#8361]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2413]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_sharpness_filter@filter-scaler-upscale: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#6503]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-upscale.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2168] / [Intel XE#7444]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-1/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1499]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-4/igt@kms_vrr@max-min.html * igt@xe_evict@evict-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#8370]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@xe_evict@evict-small-multi-queue.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#8374]) +13 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_multi_queue@two-queues-priority: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#8364]) +18 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-priority.html * igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads: - shard-bmg: [PASS][59] -> [FAIL][60] ([Intel XE#7850]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-8/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-9/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html * igt@xe_exec_reset@multi-queue-cat-error: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#8369]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-5/igt@xe_exec_reset@multi-queue-cat-error.html * igt@xe_exec_threads@threads-multi-queue-fd-basic: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#8378]) +7 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-fd-basic.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init: - shard-bmg: [PASS][63] -> [ABORT][64] ([Intel XE#8007]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html * igt@xe_multigpu_svm@mgpu-latency-copy-basic: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6964]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html * igt@xe_pat@pat-sw-hw-compare: - shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#7695]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-5/igt@xe_pat@pat-sw-hw-compare.html * igt@xe_peer2peer@read: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-7/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2284] / [Intel XE#7370]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-9/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-3/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html * igt@xe_query@multigpu-query-topology: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#944]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-7/igt@xe_query@multigpu-query-topology.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-3: - shard-bmg: [INCOMPLETE][71] ([Intel XE#6819] / [Intel XE#8174]) -> [PASS][72] +1 other test pass [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-3.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][73] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][75] ([Intel XE#1503]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-3/igt@kms_hdr@invalid-hdr.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-8/igt@kms_hdr@invalid-hdr.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][77] ([Intel XE#8399]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [FAIL][79] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][80] +1 other test pass [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html * igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode: - shard-bmg: [ABORT][81] -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [FAIL][83] ([Intel XE#6569]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-10/igt@xe_sriov_flr@flr-each-isolation.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_wedged@basic-wedged-read: - shard-bmg: [ABORT][85] ([Intel XE#8007]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-1/igt@xe_wedged@basic-wedged-read.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-8/igt@xe_wedged@basic-wedged-read.html #### Warnings #### * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][87] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][88] ([Intel XE#301]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][89] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][90] ([Intel XE#1729] / [Intel XE#7424]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][91] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][92] ([Intel XE#2426] / [Intel XE#5848]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8174 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8361 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395 [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9015 -> IGTPW_15567 IGTPW_15567: 15567 IGT_9015: c656c9ccd7e45834f4ca191dbf729e7ba4676f6b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5443-b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405: b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15567/index.html [-- Attachment #2: Type: text/html, Size: 33283 bytes --] ^ permalink raw reply [flat|nested] 20+ messages in thread
* ✓ i915.CI.Full: success for series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub ` (11 preceding siblings ...) 2026-07-21 11:48 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-07-21 17:40 ` Patchwork 12 siblings, 0 replies; 20+ messages in thread From: Patchwork @ 2026-07-21 17:40 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 150762 bytes --] == Series Details == Series: series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) URL : https://patchwork.freedesktop.org/series/170509/ State : success == Summary == CI Bug Log - changes from IGT_9015_full -> IGTPW_15567_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between IGT_9015_full and IGTPW_15567_full: ### New IGT tests (37) ### * igt@kms_async_flips@invalid-async-flip@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.49] s * igt@kms_async_flips@invalid-async-flip@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.14] s * igt@kms_async_flips@invalid-async-flip@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.14] s * igt@kms_async_flips@invalid-async-flip@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt@kms_async_flips@test-cursor@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.40] s * igt@kms_async_flips@test-cursor@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.10] s * igt@kms_async_flips@test-cursor@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.11] s * igt@kms_async_flips@test-cursor@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.10] s * igt@kms_flip@blocking-absolute-wf_vblank@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.76] s * igt@kms_flip@blocking-absolute-wf_vblank@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.71] s * igt@kms_flip@blocking-absolute-wf_vblank@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.71] s * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.71] s * igt@kms_flip@dpms-off-confusion@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.78] s * igt@kms_flip@dpms-off-confusion@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.71] s * igt@kms_flip@dpms-off-confusion@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.72] s * igt@kms_flip@dpms-off-confusion@d-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.72] s * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.96] s * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.71] s * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [7.70] s * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a4: - Statuses : 1 fail(s) - Exec time: [3.00] s * igt@kms_flip@nonexisting-fb-interruptible@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.30] s * igt@kms_flip@nonexisting-fb-interruptible@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.20] s * igt@kms_flip@nonexisting-fb-interruptible@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.20] s * igt@kms_flip@nonexisting-fb-interruptible@d-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.22] s * igt@kms_flip@nonexisting-fb@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.28] s * igt@kms_flip@nonexisting-fb@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.24] s * igt@kms_flip@nonexisting-fb@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.22] s * igt@kms_flip@nonexisting-fb@d-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.24] s * igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.53] s * igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.53] s * igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.54] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.84] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.63] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.66] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.59] s * igt@kms_setmode@basic@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [2.16] s Known issues ------------ Here are the changes found in IGTPW_15567_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][2] ([i915#7697]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-4/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][3] ([i915#3555] / [i915#9323]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][4] ([i915#13356] / [i915#16348]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#7697]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#7697]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#6335]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#6335]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][9] ([i915#13356] / [i915#16466]) +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk3/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8555]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-many.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8555]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-many.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][13] ([i915#1099]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-snb1/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@gem_ctx_sseu@engines.html - shard-rkl: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#280]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#4812]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#14544] / [i915#4525]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html - shard-tglu: NOTRUN -> [SKIP][21] ([i915#4525]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-8/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [FAIL][22] ([i915#15816]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-2/igt@gem_exec_big@single.html - shard-mtlp: NOTRUN -> [FAIL][23] ([i915#15871]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#6344]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#6344]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-8/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-3/igt@gem_exec_fence@concurrent.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-10/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-15/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3711]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-15/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-softpin: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc-active: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#3281]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@gem_exec_reloc@basic-wc-active.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +6 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-19/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0: - shard-rkl: [PASS][40] -> [INCOMPLETE][41] ([i915#13356]) +1 other test incomplete [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-8/igt@gem_exec_suspend@basic-s0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-x.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-9/igt@gem_lmem_swapping@smem-oom.html * igt@gem_madvise@dontneed-before-pwrite: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-1/igt@gem_madvise@dontneed-before-pwrite.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-12/igt@gem_madvise@dontneed-before-pwrite.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-1/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8289]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][54] ([i915#8289]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@gem_media_fill@media-fill.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-18/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +9 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +11 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][58] -> [INCOMPLETE][59] ([i915#16021] / [i915#16108] / [i915#16202]) +1 other test incomplete [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@gem_mmap_wc@write.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#14544] / [i915#3282]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][64] ([i915#2658]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-snb6/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-5/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#13398]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@gem_set_tiling_vs_gtt.html - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4885]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-19/igt@gem_softpin@evict-snoop.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4885]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-8/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@access-control: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-9/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#14544] / [i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282] / [i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-10/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4958]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4958]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@gen9_exec_parse@batch-without-end.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@gen9_exec_parse@batch-without-end.html - shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-5/igt@gen9_exec_parse@batch-without-end.html - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-7/igt@gen9_exec_parse@batch-without-end.html * igt@gpu_buddy@gpu_buddy: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#15678]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-10/igt@gpu_buddy@gpu_buddy.html * igt@i915_drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#14123]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-6/igt@i915_drm_fdinfo@all-busy-check-all.html * igt@i915_drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#11527]) +6 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@i915_drm_fdinfo@busy-check-all@ccs0.html * igt@i915_drm_fdinfo@busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#11527]) +7 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@i915_drm_fdinfo@busy-check-all@vecs0.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#14073]) +11 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#14073]) +6 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-7/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#14073]) +7 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#14118]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@i915_drm_fdinfo@virtual-busy-idle-all.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#14118]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-idle-all.html - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#14118]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk10: NOTRUN -> [ABORT][99] ([i915#15342]) +1 other test abort [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk10/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@fault-injection@intel_gt_init-enodev: - shard-glk10: NOTRUN -> [SKIP][100] +175 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk10/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][101] -> [DMESG-WARN][102] ([i915#13029] / [i915#14545]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-1/igt@i915_module_load@reload-no-display.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-10/igt@i915_module_load@reload-no-display.html - shard-dg1: [PASS][103] -> [DMESG-WARN][104] ([i915#13029] / [i915#14545]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-18/igt@i915_module_load@reload-no-display.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@i915_module_load@reload-no-display.html - shard-tglu: [PASS][105] -> [DMESG-WARN][106] ([i915#13029] / [i915#14545]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-tglu-3/igt@i915_module_load@reload-no-display.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-10/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#8399]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#8399]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][109] ([i915#13356] / [i915#13820]) +1 other test incomplete [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#6590]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][111] ([i915#6590]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-10/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6590]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2: [PASS][113] -> [ABORT][114] ([i915#15060]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-5/igt@i915_pm_rpm@system-suspend-execbuf.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-10/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#11681]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#14544] / [i915#5723]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#5723]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-16/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5723]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-8/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][120] ([i915#16182] / [i915#4817]) +1 other test incomplete [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk2/igt@i915_suspend@forcewake.html - shard-rkl: [PASS][121] -> [INCOMPLETE][122] ([i915#4817]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@i915_suspend@forcewake.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4212]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#4212]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-19/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][126] ([i915#1769]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5286]) +9 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3638]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#3828]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3638]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-15/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-16/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][135] +11 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +11 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6095]) +34 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#6095]) +108 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +29 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +220 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][142] +41 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +67 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#6095]) +69 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [INCOMPLETE][146] ([i915#15582]) +3 other tests incomplete [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk11/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [PASS][147] -> [INCOMPLETE][148] ([i915#15582]) +1 other test incomplete [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#6095]) +23 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [PASS][150] -> [INCOMPLETE][151] ([i915#14694] / [i915#15582]) +1 other test incomplete [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#14544] / [i915#6095]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#14098] / [i915#6095]) +43 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#11151]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-3/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +6 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-10/igt@kms_chamelium_audio@hdmi-audio-edid.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][159] +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#16464] / [i915#16471]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-2/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#16471]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-6/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#16471]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-10/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#16471]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#16471]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-12/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html - shard-rkl: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#12655] / [i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-hdcp14: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#15865]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-3/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#15330]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#15330] / [i915#3299]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#15330] / [i915#3116]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#15330] / [i915#3299]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#15330] / [i915#3116] / [i915#3299]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#15330] / [i915#3299]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#15865]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#15865]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#13049]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: NOTRUN -> [FAIL][179] ([i915#13566]) +3 other tests fail [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3555]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3555]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8814]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][184] -> [FAIL][185] ([i915#13566]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][186] ([i915#13566]) +1 other test fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#14544] / [i915#3555]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8814]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#13049]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#13049]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#13049]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html - shard-tglu: NOTRUN -> [SKIP][192] ([i915#13049]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#13049]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][194] ([i915#13566]) +1 other test fail [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#4103]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#9809]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#13046] / [i915#5354]) +6 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#9067]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#9067]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#4103]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#4103]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#16119] / [i915#4213]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#13691]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#13691]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@kms_display_modes@extended-mode-basic.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#13691]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-6/igt@kms_display_modes@extended-mode-basic.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#13691]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#1769] / [i915#3555] / [i915#3804]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3804]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3804]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#13749]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#13748]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_dp_link_training@uhbr-sst.html - shard-dg1: NOTRUN -> [SKIP][212] ([i915#13748]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-18/igt@kms_dp_link_training@uhbr-sst.html - shard-tglu: NOTRUN -> [SKIP][213] ([i915#13748]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-8/igt@kms_dp_link_training@uhbr-sst.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#13749]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-1/igt@kms_dp_link_training@uhbr-sst.html - shard-dg2: NOTRUN -> [SKIP][215] ([i915#13748]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][216] -> [SKIP][217] ([i915#13707]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#16361]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#16361]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#16361]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-dg1: NOTRUN -> [SKIP][221] ([i915#16361]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#16361]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#16361]) +5 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#9878]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3955]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#16084]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#16599]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][228] ([i915#16599]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#16599]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-18/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][230] ([i915#16599]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-8/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#16599]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@hdr: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#16600]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-8/igt@kms_feature_discovery@hdr.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#658]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-16/igt@kms_feature_discovery@psr2.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#658]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-2/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][235] ([i915#658]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][236] ([i915#658]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3637] / [i915#9934]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3637] / [i915#9934]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#8381]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][240] ([i915#8381]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12314] / [i915#12745] / [i915#4839]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][242] ([i915#12314] / [i915#12745]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#9934]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3637] / [i915#9934]) +10 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#9934]) +6 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_flip@2x-plain-flip-ts-check.html - shard-rkl: NOTRUN -> [SKIP][246] ([i915#9934]) +5 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg1: [PASS][247] -> [FAIL][248] ([i915#13027]) +1 other test fail [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-19/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-mtlp: [PASS][249] -> [FAIL][250] ([i915#13027]) +1 other test fail [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#8381]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-7/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][252] ([i915#12745] / [i915#4839] / [i915#6113]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][253] ([i915#12745] / [i915#6113]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#15643]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#15643]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][256] ([i915#15643]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#15643]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#15643]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#15643] / [i915#5190]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#15643]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-mtlp: [PASS][262] -> [SKIP][263] ([i915#15672]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-8/igt@kms_force_connector_basic@force-connector-state.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#15990] / [i915#8708]) +7 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#15990] / [i915#8708]) +5 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][266] ([i915#10056]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][267] ([i915#10056] / [i915#16593]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk9/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#15989]) +26 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#15989]) +21 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#15989]) +19 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-glk: [PASS][271] -> [SKIP][272] +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][273] +133 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][274] +43 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#15991] / [i915#1825]) +18 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#15991] / [i915#5354]) +36 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][277] +78 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html - shard-tglu-1: NOTRUN -> [SKIP][278] +37 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#15102]) +21 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-glk: NOTRUN -> [SKIP][280] +423 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#14544] / [i915#15102]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#15102]) +17 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#15990]) +10 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#15102]) +35 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#15989]) +8 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#15989]) +6 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-rkl: [PASS][287] -> [SKIP][288] ([i915#15989]) +12 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#15990]) +25 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#15990]) +14 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#15989]) +13 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#15104] / [i915#15990]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#1825]) +5 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15990] / [i915#8708]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#15102]) +54 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#15102] / [i915#3023]) +10 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#15991]) +22 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#14544]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#15991]) +31 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#15102]) +19 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-19/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#8228]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#12713] / [i915#16518]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [INCOMPLETE][304] ([i915#15436]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#15460]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#13688]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-10/igt@kms_joiner@basic-max-non-joiner.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#13688]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-12/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#15458]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_joiner@basic-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#15458]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#15458]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-4/igt@kms_joiner@basic-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#15458]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#15460]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-2/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#15459]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#6301]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: NOTRUN -> [INCOMPLETE][315] ([i915#12756] / [i915#13476]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][316] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][317] ([i915#13476]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#14712]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#16386]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#15709]) +3 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html - shard-dg1: NOTRUN -> [SKIP][321] ([i915#15709]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html - shard-tglu: NOTRUN -> [SKIP][322] ([i915#15709]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#15709]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#15709]) +3 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#15709]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane@planar-pixel-format-settings: - shard-snb: NOTRUN -> [SKIP][326] +214 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-snb6/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#16112]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-rkl: NOTRUN -> [SKIP][328] ([i915#16112]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#16112]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#16112]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#16112]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk11: NOTRUN -> [FAIL][332] ([i915#10647] / [i915#12169]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [FAIL][333] ([i915#10647]) +1 other test fail [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#13958]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-10/igt@kms_plane_multiple@2x-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][335] ([i915#13958]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][336] ([i915#13958]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#13958]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#15329]) +4 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#15329]) +3 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#15329] / [i915#6953]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#15329]) +3 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#12343] / [i915#5354]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-10/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#12343]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#12343] / [i915#5354]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#15751]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: [PASS][346] -> [SKIP][347] ([i915#15073]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#15073]) +2 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-5/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#15073]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#15073]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#4077]) +9 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@kms_pm_rpm@pm-caching.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: [PASS][352] -> [INCOMPLETE][353] ([i915#10553]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk2/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#6524] / [i915#6805]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#6524]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#11520]) +9 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][357] ([i915#11520]) +4 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#11520]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#12316]) +4 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html - shard-glk11: NOTRUN -> [SKIP][360] ([i915#11520]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#11520]) +8 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#11520]) +11 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][363] ([i915#11520]) +7 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk3/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][364] ([i915#11520]) +6 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-snb6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-dg1: NOTRUN -> [SKIP][365] ([i915#11520]) +6 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-12/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9683]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9683]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#9683]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-render: - shard-tglu: NOTRUN -> [SKIP][369] ([i915#9732]) +25 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-5/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#9688]) +13 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-2/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#9732]) +16 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html - shard-dg1: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +12 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-12/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#4077] / [i915#9688]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr-sprite-render: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#1072] / [i915#9732]) +21 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@kms_psr@psr-sprite-render.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#9732]) +8 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-dpms: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#1072] / [i915#14544] / [i915#9732]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_psr@psr2-dpms.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk10: NOTRUN -> [INCOMPLETE][377] ([i915#15500] / [i915#16184]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#5289]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#5190]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][380] ([i915#5289]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#5289]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#3555]) +3 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_scaling_modes@scaling-mode-none.html - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#3555] / [i915#5030] / [i915#9041]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#5030]) +2 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-7/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][385] ([i915#5030] / [i915#9041]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][386] ([i915#15106]) +6 other tests fail [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-snb7/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#3555]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#8623]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#8623]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#8623]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][391] ([i915#8623]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#15243] / [i915#3555]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@kms_vrr@flip-basic.html - shard-rkl: NOTRUN -> [SKIP][393] ([i915#15243] / [i915#3555]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_vrr@flip-basic.html - shard-mtlp: NOTRUN -> [SKIP][394] ([i915#3555] / [i915#8808]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#9906]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-3/igt@kms_vrr@max-min.html - shard-rkl: NOTRUN -> [SKIP][396] ([i915#14544] / [i915#9906]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_vrr@max-min.html - shard-dg1: NOTRUN -> [SKIP][397] ([i915#9906]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-16/igt@kms_vrr@max-min.html - shard-tglu: NOTRUN -> [SKIP][398] ([i915#9906]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-8/igt@kms_vrr@max-min.html - shard-mtlp: NOTRUN -> [SKIP][399] ([i915#8808] / [i915#9906]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][400] ([i915#3555] / [i915#9906]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][401] ([i915#3555] / [i915#9906]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@kms_vrr@negative-basic.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [PASS][402] -> [FAIL][403] ([i915#4349]) +4 other tests fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-1/igt@perf_pmu@busy-double-start@vcs1.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@module-unload: - shard-tglu-1: NOTRUN -> [ABORT][404] ([i915#13029] / [i915#15778]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-glk: [PASS][405] -> [INCOMPLETE][406] ([i915#13356] / [i915#16236]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk3/igt@perf_pmu@rc6-suspend.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk6/igt@perf_pmu@rc6-suspend.html * igt@prime_udl@share-import-addfb: - shard-mtlp: NOTRUN -> [SKIP][407] ([i915#16420]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-3/igt@prime_udl@share-import-addfb.html - shard-dg2: NOTRUN -> [SKIP][408] ([i915#16420]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-7/igt@prime_udl@share-import-addfb.html - shard-rkl: NOTRUN -> [SKIP][409] ([i915#16420]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@prime_udl@share-import-addfb.html - shard-dg1: NOTRUN -> [SKIP][410] ([i915#16420]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-13/igt@prime_udl@share-import-addfb.html - shard-tglu: NOTRUN -> [SKIP][411] ([i915#16420]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-10/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][412] ([i915#3291] / [i915#3708]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][413] ([i915#3708] / [i915#4077]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@prime_vgem@basic-gtt.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#4818]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][415] ([i915#4818]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-19/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][416] ([i915#13356] / [i915#16348]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][418] ([i915#13390]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_suspend@basic-s3: - shard-glk: [INCOMPLETE][420] ([i915#13196] / [i915#13356]) -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk4/igt@gem_exec_suspend@basic-s3.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk4/igt@gem_exec_suspend@basic-s3.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][422] ([i915#15542] / [i915#7975]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][424] ([i915#7984]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-2/igt@i915_power@sanity.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-5/igt@i915_power@sanity.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-rkl: [ABORT][426] ([i915#15131]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_3d@basic: - shard-mtlp: [SKIP][428] ([i915#15726]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-1/igt@kms_3d@basic.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-3/igt@kms_3d@basic.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [FAIL][430] ([i915#5956]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][432] ([i915#15662]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][434] ([i915#15733] / [i915#5138]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-snb: [FAIL][436] ([i915#16662]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-snb5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-snb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-dg1: [DMESG-WARN][438] ([i915#4423]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-18/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][440] ([i915#13566]) -> [PASS][441] +4 other tests pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][442] ([i915#13566]) -> [PASS][443] +3 other tests pass [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_feature_discovery@hdr: - shard-rkl: [SKIP][444] ([i915#16600]) -> [PASS][445] [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-8/igt@kms_feature_discovery@hdr.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_feature_discovery@hdr.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [SKIP][446] ([i915#15672]) -> [PASS][447] [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy: - shard-dg2: [SKIP][448] ([i915#15989]) -> [PASS][449] +5 other tests pass [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][450] ([i915#15989]) -> [PASS][451] +5 other tests pass [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-wc.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render: - shard-glk: [SKIP][452] -> [PASS][453] +8 other tests pass [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk9/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: [SKIP][454] ([i915#16644] / [i915#3555] / [i915#8228]) -> [PASS][455] [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][456] ([i915#15073]) -> [PASS][457] +2 other tests pass [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][458] ([i915#15073]) -> [PASS][459] [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][460] ([i915#15073]) -> [PASS][461] [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [INCOMPLETE][462] ([i915#14419]) -> [PASS][463] [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_pm_rpm@system-suspend-modeset.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [FAIL][464] ([i915#4349]) -> [PASS][465] +6 other tests pass [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@ccs0.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][466] ([i915#4349]) -> [PASS][467] +8 other tests pass [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-5/igt@perf_pmu@busy-idle-check-all@vcs0.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-5/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][468] ([i915#4349]) -> [PASS][469] +3 other tests pass [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vecs0.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html #### Warnings #### * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#4525]) -> [SKIP][471] ([i915#4525]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_exec_balancer@parallel.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@gem_exec_balancer@parallel.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-rkl: [SKIP][472] ([i915#3281]) -> [SKIP][473] ([i915#14544] / [i915#3281]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@gem_exec_reloc@basic-wc-cpu-active.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#3281]) -> [SKIP][475] ([i915#3281]) +2 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][476] ([i915#14544] / [i915#7276]) -> [SKIP][477] ([i915#7276]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_lmem_swapping@massive: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#4613]) -> [SKIP][479] ([i915#4613]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_lmem_swapping@massive.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: [SKIP][480] ([i915#4613]) -> [SKIP][481] ([i915#14544] / [i915#4613]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@gem_lmem_swapping@random-engines.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][482] ([i915#14544] / [i915#3282]) -> [SKIP][483] ([i915#3282]) +2 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#8411]) -> [SKIP][485] ([i915#8411]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][486] ([i915#8411]) -> [SKIP][487] ([i915#14544] / [i915#8411]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_pread_pwrite: - shard-rkl: [SKIP][488] ([i915#3282]) -> [SKIP][489] ([i915#14544] / [i915#3282]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-2/igt@gem_tiled_pread_pwrite.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@gem_tiled_pread_pwrite.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: [SKIP][490] ([i915#2527]) -> [SKIP][491] ([i915#14544] / [i915#2527]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#8399]) -> [SKIP][493] ([i915#8399]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_query@query-topology-known-pci-ids: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#16109]) -> [SKIP][495] ([i915#16109]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@i915_query@query-topology-known-pci-ids.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-rkl: [SKIP][496] ([i915#14544] / [i915#16079]) -> [SKIP][497] ([i915#16079]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@i915_query@query-topology-unsupported.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@i915_query@query-topology-unsupported.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][498] ([i915#14544] / [i915#5286]) -> [SKIP][499] ([i915#5286]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][500] ([i915#5286]) -> [SKIP][501] ([i915#14544] / [i915#5286]) +1 other test skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#3828]) -> [SKIP][503] ([i915#3828]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][504] ([i915#14544]) -> [SKIP][505] +27 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][506] ([i915#6095]) -> [SKIP][507] ([i915#14544] / [i915#6095]) +1 other test skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][508] ([i915#14098] / [i915#6095]) -> [SKIP][509] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#6095]) -> [SKIP][511] ([i915#6095]) +7 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][512] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][513] ([i915#14098] / [i915#6095]) +9 other tests skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-rkl: [SKIP][514] ([i915#11151] / [i915#7828]) -> [SKIP][515] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-4/igt@kms_chamelium_audio@dp-audio-edid.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][516] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][517] ([i915#11151] / [i915#7828]) +6 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][518] ([i915#15865]) -> [SKIP][519] ([i915#9433]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-14/igt@kms_content_protection@mei-interface.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#15865]) -> [SKIP][521] ([i915#15865]) +1 other test skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_content_protection@type1.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-3/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#4103]) -> [SKIP][523] ([i915#4103]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][524] ([i915#13707] / [i915#14544]) -> [SKIP][525] ([i915#13707]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-formats-bigjoiner: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#16361]) -> [SKIP][527] ([i915#16361]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_dsc@dsc-with-formats-bigjoiner.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@kms_dsc@dsc-with-formats-bigjoiner.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#16081]) -> [SKIP][529] ([i915#16081]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_feature_discovery@display-4x.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#9934]) -> [SKIP][531] ([i915#9934]) +1 other test skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-5/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: [SKIP][532] ([i915#14544] / [i915#15643]) -> [SKIP][533] ([i915#15643]) +1 other test skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: [SKIP][534] ([i915#15643]) -> [SKIP][535] ([i915#14544] / [i915#15643]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][537] ([i915#15102] / [i915#3023]) +8 other tests skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][538] ([i915#15102] / [i915#3023]) -> [SKIP][539] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][540] ([i915#1825]) -> [SKIP][541] ([i915#14544] / [i915#1825]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte: - shard-rkl: [SKIP][542] ([i915#14544] / [i915#15102]) -> [SKIP][543] ([i915#15102]) +8 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][544] -> [SKIP][545] ([i915#14544]) +11 other tests skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange: - shard-rkl: [SKIP][546] ([i915#15102]) -> [SKIP][547] ([i915#14544] / [i915#15102]) +4 other tests skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [SKIP][548] ([i915#15102]) -> [SKIP][549] ([i915#10433] / [i915#15102]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][550] ([i915#14544] / [i915#1825]) -> [SKIP][551] ([i915#1825]) +1 other test skip [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][552] ([i915#1187] / [i915#12713]) -> [SKIP][553] ([i915#12713]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-16/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][554] ([i915#16644] / [i915#3555] / [i915#8228]) -> [INCOMPLETE][555] ([i915#15436]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: [SKIP][556] ([i915#14712]) -> [SKIP][557] ([i915#14544] / [i915#14712]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: [SKIP][558] ([i915#15709]) -> [SKIP][559] ([i915#14544] / [i915#15709]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-rkl: [SKIP][560] ([i915#13958]) -> [SKIP][561] ([i915#13958] / [i915#14544]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-yf.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][562] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][563] ([i915#12343] / [i915#5354]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][564] ([i915#15403]) -> [SKIP][565] ([i915#14544] / [i915#15403]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@kms_pm_rpm@package-g7.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_pm_rpm@package-g7.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: [SKIP][566] ([i915#14544] / [i915#6524]) -> [SKIP][567] ([i915#6524]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-rkl: [SKIP][568] ([i915#11520] / [i915#14544]) -> [SKIP][569] ([i915#11520]) +3 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][570] ([i915#11520]) -> [SKIP][571] ([i915#11520] / [i915#14544]) +2 other tests skip [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: [SKIP][572] ([i915#1072] / [i915#9732]) -> [SKIP][573] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_psr@psr-sprite-plane-onoff.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-rkl: [SKIP][574] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][575] ([i915#1072] / [i915#9732]) +6 other tests skip [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-7/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: [SKIP][576] ([i915#15867] / [i915#5190]) -> [SKIP][577] ([i915#12755] / [i915#15867] / [i915#5190]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_framebuffer: - shard-dg1: [ABORT][578] ([i915#13179] / [i915#16508]) -> [ABORT][579] ([i915#13179]) +1 other test abort [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-14/igt@kms_selftest@drm_framebuffer.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-dg1-16/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: [SKIP][580] ([i915#14544] / [i915#3555]) -> [SKIP][581] ([i915#3555]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/shard-rkl-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [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#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16021]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16021 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16108]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16108 [i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16202 [i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464 [i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16508 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593 [i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#16662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16662 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [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#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [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#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [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#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#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [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#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [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#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [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_9015 -> IGTPW_15567 CI-20190529: 20190529 CI_DRM_18861: b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15567: 15567 IGT_9015: c656c9ccd7e45834f4ca191dbf729e7ba4676f6b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15567/index.html [-- Attachment #2: Type: text/html, Size: 198992 bytes --] ^ permalink raw reply [flat|nested] 20+ messages in thread
end of thread, other threads:[~2026-07-21 17:40 UTC | newest] Thread overview: 20+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-15 19:29 [PATCH 1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Mark Yacoub 2026-07-15 19:29 ` [PATCH 2/3] tests/unigraf: Fix DRM master and heap memory leaks in tests Mark Yacoub 2026-07-16 14:54 ` Louis Chauvet 2026-07-15 19:29 ` [PATCH 3/3] tests/unigraf: Enhance link rate support checking and hardware retrain timing Mark Yacoub 2026-07-17 8:13 ` Louis Chauvet 2026-07-20 20:53 ` [PATCH v2] " Mark Yacoub 2026-07-15 20:27 ` ✓ Xe.CI.BAT: success for series starting with [1/3] android: Implement lightweight GKeyFile INI string parser in glib shim Patchwork 2026-07-15 20:54 ` ✓ i915.CI.BAT: " Patchwork 2026-07-15 23:40 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-16 3:27 ` ✓ i915.CI.Full: " Patchwork 2026-07-17 8:20 ` [PATCH 1/3] " Louis Chauvet 2026-07-17 10:18 ` Kamil Konieczny 2026-07-17 19:23 ` Louis Chauvet 2026-07-20 12:25 ` Kamil Konieczny 2026-07-17 10:27 ` Kamil Konieczny 2026-07-20 18:50 ` [PATCH v2] lib/igt_rc: Introduce generic config parser Mark Yacoub 2026-07-21 3:25 ` ✓ Xe.CI.BAT: success for series starting with [v2] lib/igt_rc: Introduce generic config parser (rev3) Patchwork 2026-07-21 3:53 ` ✓ i915.CI.BAT: " Patchwork 2026-07-21 11:48 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-21 17:40 ` ✓ i915.CI.Full: " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.