* [PATCH v1 0/1] Added IGT support to validate global histogram
@ 2024-07-05 9:13 Mohammed Thasleem
2024-07-05 9:13 ` [PATCH v1 1/1] tests/kms_histogram: " Mohammed Thasleem
` (24 more replies)
0 siblings, 25 replies; 40+ messages in thread
From: Mohammed Thasleem @ 2024-07-05 9:13 UTC (permalink / raw)
To: igt-dev; +Cc: arun.r.murthy, Mohammed Thasleem
Display histogram is a hardware functionality where a statistics for 'x'
number of frames is generated to form a histogram data. This is notified
to the user via histogram event. Compositor then upon sensing the histogram
event will read the histogram data from KMD via crtc property.
A library can be developed to take this generated histogram as an input and
apply some algorithm to generate an Image Enhancement(IET).
This is further fed back to the KMD via crtc property. KMD will feed this
bask to the hardware. Hardware will use this as a multiplicand factor to
multiply with the incoming pixels at the end of the pipe which is then
pushed onto the display.
One such library Global Histogram Enhancement(GHE) will take the histogram
as input and applied the algorithm to enhance the density and then return
the enhanced factor.
"This library can be located https://github.com/intel/ghe"
The corresponding mutter changes to enable/disable histogram, read the
histogram data, communicate with the library and write the enhanced data
back to the KMD is also pushed for review.
Mohammed Thasleem (1):
tests/kms_histogram: Added IGT support to validate global histogram
lib/igt_kms.c | 23 +++
lib/igt_kms.h | 5 +
meson.build | 7 +
tests/kms_histogram.c | 354 ++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 2 +
5 files changed, 391 insertions(+)
create mode 100644 tests/kms_histogram.c
--
2.34.1
^ permalink raw reply [flat|nested] 40+ messages in thread
* [PATCH v1 1/1] tests/kms_histogram: Added IGT support to validate global histogram
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
@ 2024-07-05 9:13 ` Mohammed Thasleem
2024-09-11 5:21 ` Kulkarni, Vandita
2024-09-24 12:25 ` [PATCH i-g-t v2] " Mohammed Thasleem
2024-07-05 15:11 ` ✗ CI.xeBAT: failure for " Patchwork
` (23 subsequent siblings)
24 siblings, 2 replies; 40+ messages in thread
From: Mohammed Thasleem @ 2024-07-05 9:13 UTC (permalink / raw)
To: igt-dev; +Cc: arun.r.murthy, Mohammed Thasleem, Adarsh G M, Bhanuprakash Modem
The IGT changes included tests for enabling/disabling histogram.
Validating the histogram event generation and if any One such library
Global Histogram Enhancement(GHE) present, will feed the histogram to
the library, get the enhanced LUT data and feed it back to the KMD.
For histogram generation, black/white and color images are flipped.
TODO: Extend the tests for different formats/modifiers.
Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
lib/igt_kms.c | 23 +++
lib/igt_kms.h | 5 +
meson.build | 7 +
tests/kms_histogram.c | 354 ++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 2 +
5 files changed, 391 insertions(+)
create mode 100644 tests/kms_histogram.c
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 2e6f44e3c..6b904e19c 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -700,6 +700,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_EN",
+ [IGT_CRTC_GLOBAL_HISTOGRAM] = "Global Histogram",
+ [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "Global IET",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2562,6 +2565,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
+ if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
+ igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
+
pipe->out_fence_fd = -1;
}
@@ -5590,6 +5596,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
ARRAY_SIZE(props));
}
+/**
+ * igt_global_histogram_event_detected:
+ * @mon: A udev monitor initialized with #igt_watch_uevents
+ * @timeout_secs: How long to wait for a lease change event to occur.
+ *
+ * Detect if a global Histogram event was received since we last checked the monitor.
+ *
+ * Returns: true if a sysfs global Histogram event was received, false if we timed out
+ */
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
+{
+ const char *props[1] = {"HISTOGRAM"};
+ int expected_val = 1;
+
+ return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
+}
+
/**
* igt_flush_uevents:
* @mon: A udev monitor initialized with #igt_watch_uevents
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 01604dac9..345d672da 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -163,6 +163,9 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
IGT_NUM_CRTC_PROPS
};
@@ -1111,6 +1114,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
+
/**
* igt_vblank_after_eq:
* @a: First vblank sequence number.
diff --git a/meson.build b/meson.build
index ab44aadb1..9b331ba21 100644
--- a/meson.build
+++ b/meson.build
@@ -193,6 +193,13 @@ else
chamelium = disabler()
endif
+libghe = dependency('libghe', required : false)
+if libghe.found()
+ config.set('HAVE_LIBGHE', 1)
+else
+ warning('LIBGHE not found')
+endif
+
build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
pthreads = dependency('threads')
diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
new file mode 100644
index 000000000..066be8c6e
--- /dev/null
+++ b/tests/kms_histogram.c
@@ -0,0 +1,354 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: kms histogram
+ * Category: Display
+ * Description: Test to verify histogram features.
+ * Driver requirement: i915, xe
+ * Functionality: histogram
+ * Mega feature: Display
+ * Test category: functionality test
+*/
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_vec.h"
+#ifdef HAVE_LIBGHE
+#include "ghe.h"
+#endif
+
+#define GLOBAL_HIST_DISABLE 0
+#define GLOBAL_HIST_ENABLE 1
+#define GLOBAL_HIST_DELAY 2
+#define FLIP_COUNT 20
+
+/**
+ * SUBTEST: global-histogram-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: global-histogram-color
+ * Description: Test to enable histogram, flip color fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: histogram-algo-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data and enhance pixels by
+ * multiplying by a pixel factor using algo
+ *
+ * SUBTEST: histogram-algo-color
+ * Description: Test to enable histogram, flip color fbs, wait for histogram event
+ * and then read the histogram data and enhance pixels by multiplying
+ * by a pixel factor using algo
+ */
+
+IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
+
+typedef struct data {
+ igt_display_t display;
+ int drm_fd;
+ igt_fb_t fb[5];
+} data_t;
+
+typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
+void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size);
+
+static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Enable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is enabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
+}
+
+static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Disable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is disabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
+}
+
+static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *plane;
+
+ disable_and_verify_global_histogram(data, pipe);
+
+ for_each_plane_on_pipe(&data->display, pipe, plane)
+ igt_plane_set_fb(plane, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_remove_fb(data->display.drm_fd, &data->fb[0]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[1]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[2]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[3]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[4]);
+}
+
+static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
+{
+ uint64_t blob_id;
+
+ blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
+ IGT_CRTC_GLOBAL_HISTOGRAM);
+ if (blob_id == 0)
+ return NULL;
+
+ return drmModeGetPropertyBlob(data->drm_fd, blob_id);
+}
+
+static void read_global_histogram(data_t *data, enum pipe pipe,
+ drmModePropertyBlobRes **hist_blob_ptr)
+{
+ uint32_t *histogram_ptr;
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
+ do {
+ global_hist_blob = get_global_histogram_data(data, pipe);
+ } while (global_hist_blob == NULL);
+ igt_reset_timeout();
+
+ *hist_blob_ptr = global_hist_blob;
+ histogram_ptr = (uint32_t *) global_hist_blob->data;
+ for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
+ igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
+}
+
+void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
+{
+ uint32_t i;
+
+ for (i = 0; i < size; i++) {
+ /* Displaying IET LUT */
+ igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
+ }
+ igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
+ dietfactor, size);
+}
+
+#ifdef HAVE_LIBGHE
+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
+ igt_output_t *output)
+{
+ struct globalhist_args *argsPtr =
+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
+
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
+ argsPtr->resolution_x = mode->hdisplay;
+ argsPtr->resolution_y = mode->vdisplay;
+
+ igt_debug("Making call to global histogram algorithm.\n");
+ set_histogram_data_bin(argsPtr);
+
+ return argsPtr;
+}
+
+static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
+ igt_output_t *output,
+ drmModePropertyBlobRes *global_hist_blob)
+{
+ struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
+
+ igt_assert(args);
+ igt_debug("Writing pixel factor blob.\n");
+
+ set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
+ ARRAY_SIZE(args->dietfactor));
+ free(args);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+#endif
+
+static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip monochrome fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 0, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 1, 1, &data->fb[1]));
+}
+
+static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip color fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.5, 0, 0.5, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 0, &data->fb[1]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 1, 0, &data->fb[2]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 1, &data->fb[3]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 1, &data->fb[4]));
+}
+
+static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
+{
+ igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
+{
+ int i;
+ struct udev_monitor *mon = igt_watch_uevents();
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ bool event_detected = false;
+ int fb_count = color_fb ? 5 : 2;
+
+ if (color_fb)
+ create_color_fbs(data, mode);
+ else
+ create_monochrome_fbs(data, mode);
+
+ flip_fb(data, pipe, output, &data->fb[0]);
+ enable_and_verify_global_histogram(data, pipe);
+
+ igt_flush_uevents(mon);
+ for (i = 1; i <= FLIP_COUNT; i++) {
+ flip_fb(data, pipe, output, &data->fb[i % fb_count]);
+
+ /* Check for histogram event on every flip and break the loop if detected. */
+ if (igt_global_histogram_event_detected(mon, 0)) {
+ event_detected = true;
+ break;
+ }
+ }
+
+ igt_cleanup_uevents(mon);
+ igt_assert_f(event_detected, "Histogram event not generated.\n");
+}
+
+static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
+ bool color_fb, test_t test_pixel_factor)
+{
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ prepare_pipe(data, pipe, output, color_fb);
+
+ read_global_histogram(data, pipe, &global_hist_blob);
+
+ if (test_pixel_factor)
+ test_pixel_factor(data, pipe, output, global_hist_blob);
+
+ drmModeFreePropertyBlob(global_hist_blob);
+ cleanup_pipe(data, pipe, output);
+}
+
+static void run_tests_for_global_histogram(data_t *data, bool color_fb,
+ test_t test_pixel_factor)
+{
+ enum pipe pipe;
+ drmModeConnectorPtr connector;
+ igt_output_t *output;
+
+ for_each_connected_output(&data->display, output) {
+ connector = output->config.connector;
+ if (connector->connector_type != DRM_MODE_CONNECTOR_eDP)
+ continue;
+
+ for_each_pipe(&data->display, pipe) {
+ if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
+ continue;
+
+ igt_display_reset(&data->display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(&data->display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
+ run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
+ }
+ }
+}
+
+static void run_algo_test(data_t *data, bool color_fb)
+{
+#ifdef HAVE_LIBGHE
+ run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
+#else
+ igt_skip("Histogram algorithm library not found.\n");
+#endif
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ igt_require(data.display.is_atomic);
+ }
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data.");
+ igt_subtest_with_dynamic("global-histogram-basic")
+ run_tests_for_global_histogram(&data, false, NULL);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data.");
+ igt_subtest_with_dynamic("global-histogram-color")
+ run_tests_for_global_histogram(&data, true, NULL);
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("histogram-algo-basic")
+ run_algo_test(&data, false);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("histogram-algo-color")
+ run_algo_test(&data, true);
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 758ae090c..3c0859f29 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -35,6 +35,7 @@ test_progs = [
'kms_flip_event_leak',
'kms_force_connector_basic',
'kms_getfb',
+ 'kms_histogram',
'kms_hdmi_inject',
'kms_hdr',
'kms_invalid_mode',
@@ -373,6 +374,7 @@ extra_dependencies = {
'gem_eio': [ realtime ],
'gem_exec_balancer': [ lib_igt_perf ],
'gem_mmap_offset': [ libatomic ],
+ 'kms_histogram': [ libghe ],
'i915_pm_freq_mult': [ lib_igt_perf ],
'i915_pm_rc6_residency': [ lib_igt_perf ],
'perf': [ lib_igt_i915_perf ],
--
2.34.1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* ✗ CI.xeBAT: failure for Added IGT support to validate global histogram
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
2024-07-05 9:13 ` [PATCH v1 1/1] tests/kms_histogram: " Mohammed Thasleem
@ 2024-07-05 15:11 ` Patchwork
2024-07-05 15:11 ` ✓ Fi.CI.BAT: success " Patchwork
` (22 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-07-05 15:11 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1834 bytes --]
== Series Details ==
Series: Added IGT support to validate global histogram
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7917_BAT -> XEIGTPW_11374_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11374_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11374_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11374_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind:
- bat-pvc-2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/bat-pvc-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/bat-pvc-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind.html
Build changes
-------------
* IGT: IGT_7917 -> IGTPW_11374
IGTPW_11374: 3c3bfb5ee3fed33b23fc64724497c015bb2fe382 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7917: a1743ac7ed91ce40d742a351b1600da4f75972b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1567-cdd1a80a2d16d5213af20a29eb7570a7651db7dc: cdd1a80a2d16d5213af20a29eb7570a7651db7dc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/index.html
[-- Attachment #2: Type: text/html, Size: 2416 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✓ Fi.CI.BAT: success for Added IGT support to validate global histogram
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
2024-07-05 9:13 ` [PATCH v1 1/1] tests/kms_histogram: " Mohammed Thasleem
2024-07-05 15:11 ` ✗ CI.xeBAT: failure for " Patchwork
@ 2024-07-05 15:11 ` Patchwork
2024-07-05 16:59 ` ✓ CI.xeFULL: " Patchwork
` (21 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-07-05 15:11 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 18604 bytes --]
== Series Details ==
Series: Added IGT support to validate global histogram
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from IGT_7917 -> IGTPW_11374
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/index.html
Participating hosts (37 -> 41)
------------------------------
Additional (6): bat-arlh-2 fi-kbl-8809g fi-elk-e7500 bat-jsl-3 bat-mtlp-8 bat-mtlp-6
Missing (2): fi-cfl-8109u fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11374 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
- bat-arlh-2: NOTRUN -> [SKIP][2] ([i915#9318])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@debugfs_test@basic-hwmon.html
- bat-jsl-3: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-jsl-3/igt@debugfs_test@basic-hwmon.html
- bat-mtlp-6: NOTRUN -> [SKIP][4] ([i915#9318])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@eof:
- bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11345]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#1849])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@fbdev@info.html
- bat-mtlp-6: NOTRUN -> [SKIP][7] ([i915#1849] / [i915#2582])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@fbdev@info.html
* igt@fbdev@write:
- bat-mtlp-6: NOTRUN -> [SKIP][8] ([i915#2582]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@fbdev@write.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][9] ([i915#2190])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
- bat-jsl-3: NOTRUN -> [SKIP][10] ([i915#2190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-jsl-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- bat-jsl-3: NOTRUN -> [SKIP][11] ([i915#4613]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-jsl-3/igt@gem_lmem_swapping@basic.html
- fi-kbl-8809g: NOTRUN -> [SKIP][12] ([i915#4613]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-arlh-2: NOTRUN -> [SKIP][13] ([i915#10213]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-6: NOTRUN -> [SKIP][14] ([i915#4613]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#4613]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-arlh-2: NOTRUN -> [SKIP][16] ([i915#11343])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@gem_mmap@basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#4083])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@gem_mmap@basic.html
- bat-mtlp-6: NOTRUN -> [SKIP][18] ([i915#4083])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#4077]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][20] ([i915#10197])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@gem_render_tiled_blits@basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#4079]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][22] ([i915#4077]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][23] ([i915#10196]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arlh-2: NOTRUN -> [SKIP][24] ([i915#10206])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@gem_tiled_pread_basic.html
- bat-mtlp-6: NOTRUN -> [SKIP][25] ([i915#4079]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arlh-2: NOTRUN -> [SKIP][26] ([i915#10209])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@i915_pm_rps@basic-api.html
- bat-mtlp-8: NOTRUN -> [SKIP][27] ([i915#6621])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
- bat-mtlp-6: NOTRUN -> [SKIP][28] ([i915#6621])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][29] ([i915#4212] / [i915#9792]) +8 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][30] ([i915#5190])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-mtlp-6: NOTRUN -> [SKIP][31] ([i915#5190] / [i915#9792])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][32] ([i915#10200]) +9 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][33] ([i915#4212]) +8 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-3: NOTRUN -> [SKIP][34] ([i915#4103]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-jsl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-mtlp-8: NOTRUN -> [SKIP][35] ([i915#4213]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][36] ([i915#9792]) +17 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][37] ([i915#3555] / [i915#3840] / [i915#9159])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
- bat-jsl-3: NOTRUN -> [SKIP][38] ([i915#3555] / [i915#9886])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-jsl-3/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-mtlp-6: NOTRUN -> [SKIP][39] ([i915#3637] / [i915#9792]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-kbl-8809g: NOTRUN -> [SKIP][40] +30 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html
- bat-jsl-3: NOTRUN -> [SKIP][41]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-jsl-3/igt@kms_force_connector_basic@force-load-detect.html
- bat-mtlp-8: NOTRUN -> [SKIP][42]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][43] ([i915#5274])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-6: NOTRUN -> [SKIP][44] ([i915#5274] / [i915#9792])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-arls-2: [PASS][45] -> [DMESG-WARN][46] ([i915#7507])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html
- bat-mtlp-6: NOTRUN -> [SKIP][47] ([i915#4342] / [i915#5354] / [i915#9792])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-arls-5: NOTRUN -> [SKIP][48] ([i915#11346]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arls-5/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_pm_backlight@basic-brightness:
- bat-arlh-2: NOTRUN -> [SKIP][49] ([i915#11346]) +32 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@kms_pm_backlight@basic-brightness.html
- bat-mtlp-6: NOTRUN -> [SKIP][50] ([i915#5354] / [i915#9792])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-elk-e7500: NOTRUN -> [SKIP][51] +24 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/fi-elk-e7500/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-mtlp-6: NOTRUN -> [SKIP][52] ([i915#1072] / [i915#9673] / [i915#9732] / [i915#9792]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-mtlp-8: NOTRUN -> [SKIP][53] ([i915#4077] / [i915#9688])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: NOTRUN -> [SKIP][54] ([i915#10208] / [i915#8809])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-3: NOTRUN -> [SKIP][55] ([i915#3555])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-jsl-3/igt@kms_setmode@basic-clone-single-crtc.html
- bat-mtlp-8: NOTRUN -> [SKIP][56] ([i915#3555] / [i915#8809])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
- bat-mtlp-6: NOTRUN -> [SKIP][57] ([i915#3555] / [i915#8809] / [i915#9792])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-mtlp-6: NOTRUN -> [SKIP][58] ([i915#3708] / [i915#9792])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-6: NOTRUN -> [SKIP][59] ([i915#3708] / [i915#4077]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
- bat-mtlp-8: NOTRUN -> [SKIP][60] ([i915#3708] / [i915#4077]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][61] ([i915#3708]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
- bat-arlh-2: NOTRUN -> [SKIP][62] ([i915#10212])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arlh-2: NOTRUN -> [SKIP][63] ([i915#10214])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@prime_vgem@basic-read.html
- bat-mtlp-6: NOTRUN -> [SKIP][64] ([i915#3708]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-mtlp-8: NOTRUN -> [SKIP][65] ([i915#10216] / [i915#3708])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-8/igt@prime_vgem@basic-write.html
- bat-mtlp-6: NOTRUN -> [SKIP][66] ([i915#10216] / [i915#3708])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-mtlp-6/igt@prime_vgem@basic-write.html
- bat-arlh-2: NOTRUN -> [SKIP][67] ([i915#10216])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/bat-arlh-2/igt@prime_vgem@basic-write.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[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#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7507
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7917 -> IGTPW_11374
CI-20190529: 20190529
CI_DRM_15036: cdd1a80a2d16d5213af20a29eb7570a7651db7dc @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11374: 3c3bfb5ee3fed33b23fc64724497c015bb2fe382 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7917: a1743ac7ed91ce40d742a351b1600da4f75972b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/index.html
[-- Attachment #2: Type: text/html, Size: 23348 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✓ CI.xeFULL: success for Added IGT support to validate global histogram
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (2 preceding siblings ...)
2024-07-05 15:11 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-07-05 16:59 ` Patchwork
2024-07-06 18:43 ` ✗ Fi.CI.IGT: failure " Patchwork
` (20 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-07-05 16:59 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 17798 bytes --]
== Series Details ==
Series: Added IGT support to validate global histogram
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7917_full -> XEIGTPW_11374_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11374_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_histogram@global-histogram-basic} (NEW):
- {shard-lnl}: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-3/igt@kms_histogram@global-histogram-basic.html
New tests
---------
New tests have been introduced between XEIGT_7917_full and XEIGTPW_11374_full:
### New IGT tests (4) ###
* igt@kms_histogram@global-histogram-basic:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-histogram-color:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@histogram-algo-basic:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@histogram-algo-color:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_11374_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][2] -> [INCOMPLETE][3] ([Intel XE#1195]) +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-6.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-6.html
* {igt@kms_histogram@global-histogram-color} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#1201] / [Intel XE#455])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-463/igt@kms_histogram@global-histogram-color.html
* {igt@kms_histogram@histogram-algo-color} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1201]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-463/igt@kms_histogram@histogram-algo-color.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [PASS][6] -> [FAIL][7] ([Intel XE#771] / [Intel XE#899])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][8] -> [FAIL][9] ([Intel XE#899])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-dg2-set2: [PASS][10] -> [INCOMPLETE][11] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-434/igt@xe_evict@evict-beng-mixed-threads-large.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-435/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_render-instance-0-tile-0-vram0-memory:
- shard-dg2-set2: [PASS][12] -> [DMESG-WARN][13] ([Intel XE#1214]) +2 other tests dmesg-warn
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-435/igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_render-instance-0-tile-0-vram0-memory.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-464/igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_render-instance-0-tile-0-vram0-memory.html
* igt@xe_gt_freq@freq_fixed_exec:
- shard-dg2-set2: [PASS][14] -> [FAIL][15] ([Intel XE#1414])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-435/igt@xe_gt_freq@freq_fixed_exec.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-435/igt@xe_gt_freq@freq_fixed_exec.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#1192] / [Intel XE#1201])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-433/igt@xe_live_ktest@xe_bo.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-435/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][18] ([Intel XE#1999]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-433/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- {shard-lnl}: [FAIL][19] ([Intel XE#1659]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-lnl}: [INCOMPLETE][21] -> [PASS][22] +1 other test pass
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-2/igt@kms_fbcon_fbt@psr-suspend.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-3/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- {shard-lnl}: [FAIL][23] ([Intel XE#886]) -> [PASS][24] +2 other tests pass
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [DMESG-WARN][25] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-464/igt@kms_pipe_crc_basic@suspend-read-crc.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-463/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4:
- shard-dg2-set2: [DMESG-WARN][27] ([Intel XE#1214]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-464/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-463/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
* {igt@kms_plane@plane-position-hole@pipe-a-plane-3}:
- {shard-lnl}: [DMESG-FAIL][29] ([Intel XE#324]) -> [PASS][30] +2 other tests pass
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html
* {igt@kms_plane@plane-position-hole@pipe-b-plane-2}:
- {shard-lnl}: [DMESG-WARN][31] ([Intel XE#324]) -> [PASS][32] +6 other tests pass
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html
* igt@kms_pm_backlight@fade-with-suspend:
- {shard-lnl}: [SKIP][33] ([Intel XE#870]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-4/igt@kms_pm_backlight@fade-with-suspend.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms:
- {shard-lnl}: [FAIL][35] ([Intel XE#718]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- {shard-lnl}: [FAIL][37] ([Intel XE#899]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [TIMEOUT][39] ([Intel XE#1473]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][41] ([Intel XE#1600]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-463/igt@xe_evict@evict-large-multi-vm-cm.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-436/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [TIMEOUT][43] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][44] +1 other test pass
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-464/igt@xe_evict@evict-threads-large.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-435/igt@xe_evict@evict-threads-large.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [DMESG-WARN][45] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-464/igt@xe_pm@s3-vm-bind-userptr.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-433/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-exec-after:
- {shard-lnl}: [ABORT][47] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-2/igt@xe_pm@s4-exec-after.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-8/igt@xe_pm@s4-exec-after.html
* igt@xe_pm_residency@toggle-gt-c6:
- {shard-lnl}: [FAIL][49] ([Intel XE#958]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-lnl-2/igt@xe_pm_residency@toggle-gt-c6.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
#### Warnings ####
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [FAIL][51] ([Intel XE#361]) -> [SKIP][52] ([Intel XE#1201] / [Intel XE#455])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][53] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][54] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) +1 other test incomplete
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [SKIP][55] ([Intel XE#1192] / [Intel XE#1201]) -> [FAIL][56] ([Intel XE#1999])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7917/shard-dg2-464/igt@xe_live_ktest@xe_mocs.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/shard-dg2-433/igt@xe_live_ktest@xe_mocs.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1414
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#1960]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1960
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#660]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/660
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_7917 -> IGTPW_11374
IGTPW_11374: 3c3bfb5ee3fed33b23fc64724497c015bb2fe382 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7917: a1743ac7ed91ce40d742a351b1600da4f75972b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1567-cdd1a80a2d16d5213af20a29eb7570a7651db7dc: cdd1a80a2d16d5213af20a29eb7570a7651db7dc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11374/index.html
[-- Attachment #2: Type: text/html, Size: 17613 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✗ Fi.CI.IGT: failure for Added IGT support to validate global histogram
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (3 preceding siblings ...)
2024-07-05 16:59 ` ✓ CI.xeFULL: " Patchwork
@ 2024-07-06 18:43 ` Patchwork
2024-09-26 3:19 ` ✗ Fi.CI.BAT: failure for Added IGT support to validate global histogram (rev2) Patchwork
` (19 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-07-06 18:43 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100266 bytes --]
== Series Details ==
Series: Added IGT support to validate global histogram
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7917_full -> IGTPW_11374_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11374_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11374_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11374_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_big@single:
- shard-tglu: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-tglu-9/igt@gem_exec_big@single.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-3/igt@gem_exec_big@single.html
* igt@gem_exec_schedule@wide@rcs0:
- shard-glk: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-glk1/igt@gem_exec_schedule@wide@rcs0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk1/igt@gem_exec_schedule@wide@rcs0.html
* {igt@kms_histogram@global-histogram-basic} (NEW):
- shard-mtlp: NOTRUN -> [SKIP][5] +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-2/igt@kms_histogram@global-histogram-basic.html
* {igt@kms_histogram@histogram-algo-basic} (NEW):
- shard-dg2: NOTRUN -> [SKIP][6] +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_histogram@histogram-algo-basic.html
- shard-rkl: NOTRUN -> [SKIP][7] +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_histogram@histogram-algo-basic.html
- shard-dg1: NOTRUN -> [SKIP][8] +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_histogram@histogram-algo-basic.html
* {igt@kms_histogram@histogram-algo-color} (NEW):
- shard-tglu: NOTRUN -> [SKIP][9] +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-9/igt@kms_histogram@histogram-algo-color.html
New tests
---------
New tests have been introduced between IGT_7917_full and IGTPW_11374_full:
### New IGT tests (5) ###
* igt@kms_histogram@global-histogram-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-histogram-color:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@histogram-algo-basic:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@histogram-algo-color:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
Known issues
------------
Here are the changes found in IGTPW_11374_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-rkl: [PASS][12] -> [ABORT][13] ([i915#5507])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html
- shard-tglu: [PASS][14] -> [ABORT][15] ([i915#5507])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-8/igt@device_reset@unbind-reset-rebind.html
- shard-glk: [PASS][16] -> [ABORT][17] ([i915#5507])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-glk3/igt@device_reset@unbind-reset-rebind.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk3/igt@device_reset@unbind-reset-rebind.html
- shard-mtlp: [PASS][18] -> [ABORT][19] ([i915#5507])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-mtlp-5/igt@device_reset@unbind-reset-rebind.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-7/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8414]) +22 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@busy-idle@vcs1:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@drm_fdinfo@busy-idle@vcs1.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-1/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#9323])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-10/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#7697])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#7697])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#6335])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-8/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8562])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#8562])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#8562])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#8555]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#8555]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][34] ([i915#1099]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-snb2/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#280])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#280])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@reset-stress:
- shard-dg2: [PASS][38] -> [FAIL][39] ([i915#5784]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-8/igt@gem_eio@reset-stress.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][40] -> [FAIL][41] ([i915#5784])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4771])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4036])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#4525]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-16/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][48] ([i915#6334])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][49] ([i915#10386]) +3 other tests fail
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][50] -> [FAIL][51] ([i915#2846])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html
- shard-glk: NOTRUN -> [FAIL][52] ([i915#2846])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk8/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: NOTRUN -> [FAIL][53] ([i915#2842]) +4 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk4/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][54] -> [FAIL][55] ([i915#2842])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: NOTRUN -> [FAIL][57] ([i915#2842])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: NOTRUN -> [FAIL][58] ([i915#2842]) +1 other test fail
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3539])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3539] / [i915#4852]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@gem_exec_flush@basic-uc-ro-default.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3539] / [i915#4852])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3281]) +15 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3281]) +12 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3281]) +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3281]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-3/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-1/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_schedule@thriceslice:
- shard-snb: NOTRUN -> [SKIP][67] +135 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-snb6/igt@gem_exec_schedule@thriceslice.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4860]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4860]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4860])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#2190])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-9/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613] / [i915#7582])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4613]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-2/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#4613]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#4613]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][76] -> [TIMEOUT][77] ([i915#5493])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][78] ([i915#4613]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk2/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8289])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-1/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#8289])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#284])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4083]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@gem_mmap@bad-object.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4083]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-7/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4077]) +12 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-16/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4083]) +6 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) +8 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-2/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3282]) +6 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@gem_pread@exhaustion.html
- shard-tglu: NOTRUN -> [WARN][89] ([i915#2658])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-3/igt@gem_pread@exhaustion.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-10/igt@gem_pread@self.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4270]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-1/igt@gem_pxp@display-protected-crc.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#4270]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-6/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4270])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#4270])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-9/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4270]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8428]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190] / [i915#8428]) +6 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#4885]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#4885])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4079])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@gem_tiled_pread_basic.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4077]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-4/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3297])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-8/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#3297])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][104] ([i915#3323])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#3282] / [i915#3297])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#3282] / [i915#3297])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297] / [i915#4880])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#3297]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#3297]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [PASS][110] -> [ABORT][111] ([i915#5566])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-glk4/igt@gen9_exec_parse@allowed-all.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk8/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#2856]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-4/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#2527]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#2856]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-6/igt@gen9_exec_parse@bb-start-far.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#2527]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-16/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_module_load@load:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#6227])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@i915_module_load@load.html
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#6227])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#6227])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][120] -> [ABORT][121] ([i915#9820])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [PASS][122] -> [ABORT][123] ([i915#9820])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][124] -> [ABORT][125] ([i915#9820])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#6412])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#8399])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#8399])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-5/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#6590])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#6590])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: NOTRUN -> [FAIL][131] ([i915#3591])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#6621])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-16/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#8925])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#6245])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-3/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#5723])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-snb: NOTRUN -> [DMESG-WARN][136] ([i915#9311])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-snb7/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4212])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#5190])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#4215] / [i915#5190])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3826])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#8709]) +11 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#5286]) +12 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][145] -> [FAIL][146] ([i915#5138])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5286]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#5286]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-9/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#5286])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#3638]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3638]) +5 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][152] +16 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#4538] / [i915#5190]) +8 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#4538]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][155] +5 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@invalid-modeset:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#10656])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/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-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#6095]) +95 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#6095]) +203 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#6095]) +67 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6095]) +15 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#6095]) +15 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#3742])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#3742])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-10/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#7213]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3742])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#4087]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#7828]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-6/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#7828]) +12 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#7828]) +9 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#7828]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#7828]) +14 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3299])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#7116] / [i915#9424])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#9424])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#9424])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_content_protection@mei-interface.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#9424]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#7118])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#7116])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@kms_content_protection@srm.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#7116] / [i915#7118])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-8/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#7118] / [i915#9424])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#11453]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3359])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#11453]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#11453])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#11453])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#4103] / [i915#4213])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][190] +57 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9067])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#9067])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#4103]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3804])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#1257])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-2/igt@kms_dp_aux_dev.html
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#1257])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@kms_dp_aux_dev.html
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#1257])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#8812])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#8812])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#3840] / [i915#9053])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3955])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3469])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#1839])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#9337])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#4881])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3637])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-3/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][209] +38 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#3637]) +4 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#9934]) +7 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#8381])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-rkl: [PASS][213] -> [FAIL][214] ([i915#2122])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1:
- shard-snb: [PASS][215] -> [FAIL][216] ([i915#2122])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-snb2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#2672]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2672])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#2672]) +5 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][224] +49 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#1825]) +10 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#1825]) +68 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3458]) +20 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#3458]) +22 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#8708]) +23 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#5354]) +35 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8708]) +3 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#10055])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#9766])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-16/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#9766])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#8708]) +24 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3023]) +30 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-3/igt@kms_hdr@static-toggle.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#6301])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#6301])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#6301])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][244] ([i915#10647]) +3 other tests fail
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#8806])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][246] ([i915#8292])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][247] ([i915#8292])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][248] +270 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#9423]) +7 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#5176]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#9423]) +11 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#5176] / [i915#9423]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#9423]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#5235]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#5235]) +7 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#5235]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#5235])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#5235]) +7 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#5235] / [i915#9423]) +11 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#5354]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#5354])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#9812])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#9293])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-7/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#9685]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][265] -> [FAIL][266] ([i915#9295])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][267] -> [SKIP][268] ([i915#4281])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#9340])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][270] ([i915#9301])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-10/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#8430])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#9519]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][273] -> [SKIP][274] ([i915#9519]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#9519]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#9519])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][277] -> [SKIP][278] ([i915#9519]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#6524])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#6524])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#6524]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#11520]) +4 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-1/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#11520]) +5 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#11520]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-8/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#11520]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#9683])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#9683])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#9683])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#9688]) +5 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-4/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +37 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#1072] / [i915#9732]) +23 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-2/igt@kms_psr@psr-primary-mmap-cpu.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#1072] / [i915#9732]) +22 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#9732]) +16 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-8/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#4884])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#5289])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#5190])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#5289]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#5289])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-4:
- shard-dg1: [PASS][300] -> [FAIL][301] ([i915#5465]) +1 other test fail
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg1-16/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#3555]) +2 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-14/igt@kms_setmode@clone-exclusive-crtc.html
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#3555]) +4 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][304] -> [FAIL][305] ([IGT#2])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#8623])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][307] -> [FAIL][308] ([i915#9196])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#9906]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#9906]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#9906])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-5/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#9906])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#2437])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#2437])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#2437])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#2437] / [i915#9412])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-9/igt@kms_writeback@writeback-pixel-formats.html
- shard-glk: NOTRUN -> [SKIP][317] ([i915#2437])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#2437] / [i915#9412])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#2434])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#2435])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][321] -> [FAIL][322] ([i915#4349])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-mtlp-3/igt@perf_pmu@busy-double-start@bcs0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-3/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#8850])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#8516])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#8516])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#3708] / [i915#4077])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#3708])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-7/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#3291] / [i915#3708])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#3708])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#3708])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-16/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#9917])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#9917])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#9917])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#9917])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-16/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-tglu: NOTRUN -> [FAIL][335] ([i915#9781])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-6/igt@syncobj_timeline@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][336] ([i915#9781])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk2/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-snb: NOTRUN -> [FAIL][337] ([i915#9781])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-snb4/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][338] ([i915#9846]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@hog-create@lmem0:
- shard-dg2: [INCOMPLETE][340] ([i915#10497]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-3/igt@gem_create@hog-create@lmem0.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-2/igt@gem_create@hog-create@lmem0.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: [ABORT][342] ([i915#7975] / [i915#8213]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [ABORT][344] ([i915#5566]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-glk3/igt@gen9_exec_parse@allowed-single.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk8/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [ABORT][346] ([i915#9820]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][348] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][350] ([i915#9820]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][352] ([i915#7984]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-mtlp-6/igt@i915_power@sanity.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-4/igt@i915_power@sanity.html
* igt@i915_selftest@mock@sanitycheck:
- shard-snb: [ABORT][354] -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-snb7/igt@i915_selftest@mock@sanitycheck.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-snb7/igt@i915_selftest@mock@sanitycheck.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][356] ([i915#5138]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][358] ([i915#2346]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-vga1:
- shard-snb: [ABORT][360] ([i915#8852]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-snb7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-vga1.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-snb5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a4:
- shard-dg1: [DMESG-WARN][362] ([i915#4423]) -> [PASS][363] +1 other test pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a4.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a4.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][364] ([i915#8292]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [FAIL][366] ([i915#9196]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
- shard-tglu: [FAIL][368] ([i915#9196]) -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
#### Warnings ####
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: [SKIP][370] ([i915#4423] / [i915#4565]) -> [SKIP][371] ([i915#4565])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [DMESG-WARN][372] ([i915#1982] / [i915#4936] / [i915#5493]) -> [TIMEOUT][373] ([i915#5493])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: [SKIP][374] ([i915#11453]) -> [SKIP][375] ([i915#11453] / [i915#3359]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][376] ([i915#10433] / [i915#3458]) -> [SKIP][377] ([i915#3458]) +3 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][378] ([i915#3458]) -> [SKIP][379] ([i915#10433] / [i915#3458]) +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt:
- shard-dg1: [SKIP][380] ([i915#4423]) -> [SKIP][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][382] ([i915#4281]) -> [SKIP][383] ([i915#3361])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: [SKIP][384] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][385] ([i915#1072] / [i915#9732]) +6 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-plane-move.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-10/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: [SKIP][386] ([i915#1072] / [i915#9732]) -> [SKIP][387] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-5/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: [SKIP][388] ([i915#11131] / [i915#4235]) -> [SKIP][389] ([i915#11131])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-11/igt@kms_rotation_crc@bad-tiling.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-10/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: [SKIP][390] ([i915#11131] / [i915#5190]) -> [SKIP][391] ([i915#11131] / [i915#4235] / [i915#5190])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7917/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10497]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10497
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[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#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[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#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#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#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#8852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8852
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9301
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11374/index.html
[-- Attachment #2: Type: text/html, Size: 123253 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* RE: [PATCH v1 1/1] tests/kms_histogram: Added IGT support to validate global histogram
2024-07-05 9:13 ` [PATCH v1 1/1] tests/kms_histogram: " Mohammed Thasleem
@ 2024-09-11 5:21 ` Kulkarni, Vandita
2024-09-24 12:25 ` [PATCH i-g-t v2] " Mohammed Thasleem
1 sibling, 0 replies; 40+ messages in thread
From: Kulkarni, Vandita @ 2024-09-11 5:21 UTC (permalink / raw)
To: Thasleem, Mohammed, igt-dev@lists.freedesktop.org
Cc: Murthy, Arun R, Thasleem, Mohammed, G M, Adarsh,
Modem, Bhanuprakash
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> Mohammed Thasleem
> Sent: Friday, July 5, 2024 2:44 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Murthy, Arun R <arun.r.murthy@intel.com>; Thasleem, Mohammed
> <mohammed.thasleem@intel.com>; G M, Adarsh <adarsh.g.m@intel.com>;
> Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Subject: [PATCH v1 1/1] tests/kms_histogram: Added IGT support to validate
> global histogram
>
> The IGT changes included tests for enabling/disabling histogram.
> Validating the histogram event generation and if any One such library Global
> Histogram Enhancement(GHE) present, will feed the histogram to the library,
> get the enhanced LUT data and feed it back to the KMD.
> For histogram generation, black/white and color images are flipped.
>
> TODO: Extend the tests for different formats/modifiers.
>
> Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> ---
> lib/igt_kms.c | 23 +++
> lib/igt_kms.h | 5 +
> meson.build | 7 +
> tests/kms_histogram.c | 354
> ++++++++++++++++++++++++++++++++++++++++++
> tests/meson.build | 2 +
> 5 files changed, 391 insertions(+)
> create mode 100644 tests/kms_histogram.c
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 2e6f44e3c..6b904e19c 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -700,6 +700,9 @@ const char * const
> igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
> [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
> [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
> [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
> + [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_EN",
> + [IGT_CRTC_GLOBAL_HISTOGRAM] = "Global Histogram",
> + [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "Global IET",
> };
>
> const char * const
> igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { @@ -2562,6
> +2565,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
> if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
> igt_pipe_obj_set_prop_enum(pipe,
> IGT_CRTC_SCALING_FILTER, "Default");
>
> + if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
> + igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM,
> 0);
> +
> pipe->out_fence_fd = -1;
> }
>
> @@ -5590,6 +5596,23 @@ bool igt_lease_change_detected(struct
> udev_monitor *mon, int timeout_secs)
> ARRAY_SIZE(props));
> }
>
> +/**
> + * igt_global_histogram_event_detected:
> + * @mon: A udev monitor initialized with #igt_watch_uevents
> + * @timeout_secs: How long to wait for a lease change event to occur.
> + *
> + * Detect if a global Histogram event was received since we last checked the
> monitor.
> + *
> + * Returns: true if a sysfs global Histogram event was received, false
> +if we timed out */ bool igt_global_histogram_event_detected(struct
> +udev_monitor *mon, int timeout_secs) {
> + const char *props[1] = {"HISTOGRAM"};
> + int expected_val = 1;
> +
> + return event_detected(mon, timeout_secs, props, &expected_val,
> +ARRAY_SIZE(props)); }
> +
> /**
> * igt_flush_uevents:
> * @mon: A udev monitor initialized with #igt_watch_uevents diff --git
> a/lib/igt_kms.h b/lib/igt_kms.h index 01604dac9..345d672da 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -163,6 +163,9 @@ enum igt_atomic_crtc_properties {
> IGT_CRTC_OUT_FENCE_PTR,
> IGT_CRTC_VRR_ENABLED,
> IGT_CRTC_SCALING_FILTER,
> + IGT_CRTC_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> IGT_NUM_CRTC_PROPS
> };
>
> @@ -1111,6 +1114,8 @@ void igt_cleanup_uevents(struct udev_monitor
> *mon); bool igt_display_has_format_mod(igt_display_t *display, uint32_t
> format, uint64_t modifier); bool igt_plane_has_format_mod(igt_plane_t
> *plane, uint32_t format, uint64_t modifier);
>
> +bool igt_global_histogram_event_detected(struct udev_monitor *mon, int
> +timeout_secs);
> +
> /**
> * igt_vblank_after_eq:
> * @a: First vblank sequence number.
> diff --git a/meson.build b/meson.build
> index ab44aadb1..9b331ba21 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -193,6 +193,13 @@ else
> chamelium = disabler()
> endif
>
> +libghe = dependency('libghe', required : false) if libghe.found()
> + config.set('HAVE_LIBGHE', 1)
> +else
> + warning('LIBGHE not found')
> +endif
> +
> build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
>
> pthreads = dependency('threads')
> diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c new file mode
> 100644 index 000000000..066be8c6e
> --- /dev/null
> +++ b/tests/kms_histogram.c
> @@ -0,0 +1,354 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms histogram
> + * Category: Display
> + * Description: Test to verify histogram features.
> + * Driver requirement: i915, xe
> + * Functionality: histogram
> + * Mega feature: Display
> + * Test category: functionality test
> +*/
> +
> +#include <errno.h>
> +#include <fcntl.h>
> +#include <limits.h>
> +#include <stdbool.h>
> +#include <stdio.h>
> +#include <string.h>
> +
> +#include "igt.h"
> +#include "igt_vec.h"
> +#ifdef HAVE_LIBGHE
> +#include "ghe.h"
> +#endif
> +
> +#define GLOBAL_HIST_DISABLE 0
> +#define GLOBAL_HIST_ENABLE 1
> +#define GLOBAL_HIST_DELAY 2
> +#define FLIP_COUNT 20
> +
> +/**
> + * SUBTEST: global-histogram-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: global-histogram-color
> + * Description: Test to enable histogram, flip color fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: histogram-algo-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data and
> enhance pixels by
> + * multiplying by a pixel factor using algo
> + *
> + * SUBTEST: histogram-algo-color
> + * Description: Test to enable histogram, flip color fbs, wait for histogram
> event
> + * and then read the histogram data and enhance pixels by
> multiplying
> + * by a pixel factor using algo
> + */
> +
> +IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
> +
> +typedef struct data {
> + igt_display_t display;
> + int drm_fd;
> + igt_fb_t fb[5];
> +} data_t;
> +
> +typedef void (*test_t)(data_t*, enum pipe, igt_output_t*,
> +drmModePropertyBlobRes*); void set_pixel_factor(igt_pipe_t *pipe,
> +uint32_t *dietfactor, size_t size);
> +
> +static void enable_and_verify_global_histogram(data_t *data, enum pipe
> +pipe) {
> + uint32_t global_hist_value;
> +
> + /* Enable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe,
> IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is enabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data-
> >display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to
> +enable global_hist\n"); }
> +
> +static void disable_and_verify_global_histogram(data_t *data, enum pipe
> +pipe) {
> + uint32_t global_hist_value;
> +
> + /* Disable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe,
> IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is disabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data-
> >display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to
> +disable global_hist\n"); }
> +
> +static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t
> +*output) {
> + igt_plane_t *plane;
> +
> + disable_and_verify_global_histogram(data, pipe);
> +
> + for_each_plane_on_pipe(&data->display, pipe, plane)
> + igt_plane_set_fb(plane, NULL);
> + igt_output_set_pipe(output, PIPE_NONE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> + igt_remove_fb(data->display.drm_fd, &data->fb[0]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[1]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[2]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[3]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[4]); }
> +
> +static drmModePropertyBlobRes *get_global_histogram_data(data_t *data,
> +enum pipe pipe) {
> + uint64_t blob_id;
> +
> + blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
> + IGT_CRTC_GLOBAL_HISTOGRAM);
> + if (blob_id == 0)
> + return NULL;
> +
> + return drmModeGetPropertyBlob(data->drm_fd, blob_id); }
> +
> +static void read_global_histogram(data_t *data, enum pipe pipe,
> + drmModePropertyBlobRes **hist_blob_ptr) {
> + uint32_t *histogram_ptr;
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global
> histogram blob.\n");
> + do {
> + global_hist_blob = get_global_histogram_data(data, pipe);
> + } while (global_hist_blob == NULL);
> + igt_reset_timeout();
> +
> + *hist_blob_ptr = global_hist_blob;
> + histogram_ptr = (uint32_t *) global_hist_blob->data;
> + for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr);
> i++)
> + igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++)); }
> +
> +void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t
> +size) {
> + uint32_t i;
> +
> + for (i = 0; i < size; i++) {
> + /* Displaying IET LUT */
> + igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
> + }
> + igt_pipe_obj_replace_prop_blob(pipe,
> IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> + dietfactor, size);
> +}
> +
> +#ifdef HAVE_LIBGHE
> +static struct globalhist_args
> *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
> + igt_output_t *output)
> +{
> + struct globalhist_args *argsPtr =
> + (struct globalhist_args *)malloc(sizeof(struct
> globalhist_args));
> +
> + drmModeModeInfo *mode;
> +
> + mode = igt_output_get_mode(output);
> +
> + memcpy(argsPtr->histogram, global_hist_blob->data,
> global_hist_blob->length);
> + argsPtr->resolution_x = mode->hdisplay;
> + argsPtr->resolution_y = mode->vdisplay;
> +
> + igt_debug("Making call to global histogram algorithm.\n");
> + set_histogram_data_bin(argsPtr);
> +
> + return argsPtr;
> +}
> +
> +static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
> + igt_output_t *output,
> + drmModePropertyBlobRes
> *global_hist_blob) {
> + struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob,
> +output);
> +
> + igt_assert(args);
> + igt_debug("Writing pixel factor blob.\n");
> +
> + set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
> + ARRAY_SIZE(args->dietfactor));
> + free(args);
> +
> + igt_display_commit2(&data->display, COMMIT_ATOMIC); } #endif
> +
> +static void create_monochrome_fbs(data_t *data, drmModeModeInfo
> *mode)
> +{
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip monochrome fbs to get histogram
> event. */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode-
> >hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 0, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode-
> >hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> DRM_FORMAT_MOD_LINEAR,
> + 1, 1, 1, &data->fb[1]));
> +}
> +
> +static void create_color_fbs(data_t *data, drmModeModeInfo *mode) {
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip color fbs to get histogram event.
> */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode-
> >hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> DRM_FORMAT_MOD_LINEAR,
> + 0.5, 0, 0.5, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode-
> >hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 0, &data->fb[1]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode-
> >hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> DRM_FORMAT_MOD_LINEAR,
> + 0, 1, 0, &data->fb[2]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode-
> >hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 1, &data->fb[3]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode-
> >hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 1, &data->fb[4]));
> +}
> +
> +static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output,
> +struct igt_fb *fb) {
> + igt_plane_set_fb(igt_output_get_plane_type(output,
> DRM_PLANE_TYPE_PRIMARY), fb);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC); }
> +
> +static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t
> +*output, bool color_fb) {
> + int i;
> + struct udev_monitor *mon = igt_watch_uevents();
> + drmModeModeInfo *mode = igt_output_get_mode(output);
> + bool event_detected = false;
> + int fb_count = color_fb ? 5 : 2;
> +
> + if (color_fb)
> + create_color_fbs(data, mode);
> + else
> + create_monochrome_fbs(data, mode);
> +
> + flip_fb(data, pipe, output, &data->fb[0]);
> + enable_and_verify_global_histogram(data, pipe);
> +
> + igt_flush_uevents(mon);
> + for (i = 1; i <= FLIP_COUNT; i++) {
> + flip_fb(data, pipe, output, &data->fb[i % fb_count]);
> +
> + /* Check for histogram event on every flip and break the loop
> if detected. */
> + if (igt_global_histogram_event_detected(mon, 0)) {
> + event_detected = true;
> + break;
> + }
> + }
> +
> + igt_cleanup_uevents(mon);
> + igt_assert_f(event_detected, "Histogram event not generated.\n"); }
> +
> +static void run_global_histogram_pipeline(data_t *data, enum pipe pipe,
> igt_output_t *output,
> + bool color_fb, test_t test_pixel_factor) {
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + prepare_pipe(data, pipe, output, color_fb);
> +
> + read_global_histogram(data, pipe, &global_hist_blob);
> +
> + if (test_pixel_factor)
> + test_pixel_factor(data, pipe, output, global_hist_blob);
> +
> + drmModeFreePropertyBlob(global_hist_blob);
> + cleanup_pipe(data, pipe, output);
> +}
> +
> +static void run_tests_for_global_histogram(data_t *data, bool color_fb,
> + test_t test_pixel_factor)
> +{
> + enum pipe pipe;
> + drmModeConnectorPtr connector;
> + igt_output_t *output;
> +
> + for_each_connected_output(&data->display, output) {
> + connector = output->config.connector;
> + if (connector->connector_type !=
> DRM_MODE_CONNECTOR_eDP)
> + continue;
As per the kernel changes I don’t see any restriction on eDP or any mention about the same?
If there is any such restriction, can you please add a comment for the same?
Thanks,
Vandita
> +
> + for_each_pipe(&data->display, pipe) {
> + if (!igt_pipe_obj_has_prop(&data-
> >display.pipes[pipe], IGT_CRTC_HISTOGRAM))
> + continue;
> +
> + igt_display_reset(&data->display);
> +
> + igt_output_set_pipe(output, pipe);
> + if (!intel_pipe_output_combo_valid(&data->display))
> + continue;
> +
> + igt_dynamic_f("pipe-%s-%s",
> kmstest_pipe_name(pipe), igt_output_name(output))
> + run_global_histogram_pipeline(data, pipe,
> output, color_fb, test_pixel_factor);
> + }
> + }
> +}
> +
> +static void run_algo_test(data_t *data, bool color_fb) { #ifdef
> +HAVE_LIBGHE
> + run_tests_for_global_histogram(data, color_fb,
> +algo_image_enhancement_factor); #else
> + igt_skip("Histogram algorithm library not found.\n"); #endif }
> +
> +igt_main
> +{
> + data_t data = {};
> +
> + igt_fixture {
> + data.drm_fd = drm_open_driver_master(DRIVER_INTEL |
> DRIVER_XE);
> + kmstest_set_vt_graphics_mode();
> + igt_display_require(&data.display, data.drm_fd);
> + igt_display_require_output(&data.display);
> + igt_require(data.display.is_atomic);
> + }
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait
> for histogram "
> + "event and then read the histogram data.");
> + igt_subtest_with_dynamic("global-histogram-basic")
> + run_tests_for_global_histogram(&data, false, NULL);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for
> histogram event "
> + "and then read the histogram data.");
> + igt_subtest_with_dynamic("global-histogram-color")
> + run_tests_for_global_histogram(&data, true, NULL);
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait
> for histogram "
> + "event and then read the histogram data and enhance
> pixels by multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("histogram-algo-basic")
> + run_algo_test(&data, false);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for
> histogram event "
> + "and then read the histogram data and enhance pixels by
> multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("histogram-algo-color")
> + run_algo_test(&data, true);
> +
> + igt_fixture {
> + igt_display_fini(&data.display);
> + drm_close_driver(data.drm_fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build index
> 758ae090c..3c0859f29 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -35,6 +35,7 @@ test_progs = [
> 'kms_flip_event_leak',
> 'kms_force_connector_basic',
> 'kms_getfb',
> + 'kms_histogram',
> 'kms_hdmi_inject',
> 'kms_hdr',
> 'kms_invalid_mode',
> @@ -373,6 +374,7 @@ extra_dependencies = {
> 'gem_eio': [ realtime ],
> 'gem_exec_balancer': [ lib_igt_perf ],
> 'gem_mmap_offset': [ libatomic ],
> + 'kms_histogram': [ libghe ],
> 'i915_pm_freq_mult': [ lib_igt_perf ],
> 'i915_pm_rc6_residency': [ lib_igt_perf ],
> 'perf': [ lib_igt_i915_perf ],
> --
> 2.34.1
^ permalink raw reply [flat|nested] 40+ messages in thread
* [PATCH i-g-t v2] tests/kms_histogram: Added IGT support to validate global histogram
2024-07-05 9:13 ` [PATCH v1 1/1] tests/kms_histogram: " Mohammed Thasleem
2024-09-11 5:21 ` Kulkarni, Vandita
@ 2024-09-24 12:25 ` Mohammed Thasleem
2024-10-09 11:39 ` Modem, Bhanuprakash
` (2 more replies)
1 sibling, 3 replies; 40+ messages in thread
From: Mohammed Thasleem @ 2024-09-24 12:25 UTC (permalink / raw)
To: igt-dev; +Cc: Mohammed Thasleem, Adarsh G M, Bhanuprakash Modem
The IGT changes included tests for enabling/disabling histogram.
Validating the histogram event generation and if any One such library
Global Histogram Enhancement(GHE) present, will feed the histogram to
the library, get the enhanced LUT data and feed it back to the KMD.
For histogram generation, black/white and color images are flipped.
TODO: Extend the tests for different formats/modifiers.
v2: Remove eDP restriction. (Vandita)
Update crtc property name. (Arun)
Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
lib/igt_kms.c | 23 +++
lib/igt_kms.h | 5 +
meson.build | 7 +
tests/kms_histogram.c | 349 ++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 2 +
5 files changed, 386 insertions(+)
create mode 100644 tests/kms_histogram.c
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index b40470c02..a7a990fc2 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -700,6 +700,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_HISTOGRAM] = "Histogram_Enable",
+ [IGT_CRTC_GLOBAL_HISTOGRAM] = "Global Histogram",
+ [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "Global IET",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2562,6 +2565,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
+ if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
+ igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
+
pipe->out_fence_fd = -1;
}
@@ -5590,6 +5596,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
ARRAY_SIZE(props));
}
+/**
+ * igt_global_histogram_event_detected:
+ * @mon: A udev monitor initialized with #igt_watch_uevents
+ * @timeout_secs: How long to wait for a lease change event to occur.
+ *
+ * Detect if a global Histogram event was received since we last checked the monitor.
+ *
+ * Returns: true if a sysfs global Histogram event was received, false if we timed out
+ */
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
+{
+ const char *props[1] = {"HISTOGRAM"};
+ int expected_val = 1;
+
+ return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
+}
+
/**
* igt_flush_uevents:
* @mon: A udev monitor initialized with #igt_watch_uevents
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 25ba50916..598aa4b33 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -163,6 +163,9 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
IGT_NUM_CRTC_PROPS
};
@@ -1111,6 +1114,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
+
/**
* igt_vblank_after_eq:
* @a: First vblank sequence number.
diff --git a/meson.build b/meson.build
index 0d06721b4..8ee4f6edc 100644
--- a/meson.build
+++ b/meson.build
@@ -195,6 +195,13 @@ else
chamelium = disabler()
endif
+libghe = dependency('libghe', required : false)
+if libghe.found()
+ config.set('HAVE_LIBGHE', 1)
+else
+ warning('LIBGHE not found')
+endif
+
build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
pthreads = dependency('threads')
diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
new file mode 100644
index 000000000..892291f1e
--- /dev/null
+++ b/tests/kms_histogram.c
@@ -0,0 +1,349 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: kms histogram
+ * Category: Display
+ * Description: Test to verify histogram features.
+ * Driver requirement: i915, xe
+ * Functionality: histogram
+ * Mega feature: Display
+ * Test category: functionality test
+ */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_vec.h"
+#ifdef HAVE_LIBGHE
+#include "ghe.h"
+#endif
+
+#define GLOBAL_HIST_DISABLE 0
+#define GLOBAL_HIST_ENABLE 1
+#define GLOBAL_HIST_DELAY 2
+#define FLIP_COUNT 20
+
+/**
+ * SUBTEST: global-histogram-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: global-histogram-color
+ * Description: Test to enable histogram, flip color fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: histogram-algo-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data and enhance pixels by
+ * multiplying by a pixel factor using algo
+ *
+ * SUBTEST: histogram-algo-color
+ * Description: Test to enable histogram, flip color fbs, wait for histogram event
+ * and then read the histogram data and enhance pixels by multiplying
+ * by a pixel factor using algo
+ */
+
+IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
+
+typedef struct data {
+ igt_display_t display;
+ int drm_fd;
+ igt_fb_t fb[5];
+} data_t;
+
+typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
+void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size);
+
+static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Enable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is enabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
+}
+
+static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Disable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is disabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
+}
+
+static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *plane;
+
+ disable_and_verify_global_histogram(data, pipe);
+
+ for_each_plane_on_pipe(&data->display, pipe, plane)
+ igt_plane_set_fb(plane, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_remove_fb(data->display.drm_fd, &data->fb[0]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[1]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[2]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[3]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[4]);
+}
+
+static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
+{
+ uint64_t blob_id;
+
+ blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
+ IGT_CRTC_GLOBAL_HISTOGRAM);
+ if (blob_id == 0)
+ return NULL;
+
+ return drmModeGetPropertyBlob(data->drm_fd, blob_id);
+}
+
+static void read_global_histogram(data_t *data, enum pipe pipe,
+ drmModePropertyBlobRes **hist_blob_ptr)
+{
+ uint32_t *histogram_ptr;
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
+ do {
+ global_hist_blob = get_global_histogram_data(data, pipe);
+ } while (global_hist_blob == NULL);
+ igt_reset_timeout();
+
+ *hist_blob_ptr = global_hist_blob;
+ histogram_ptr = (uint32_t *) global_hist_blob->data;
+ for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
+ igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
+}
+
+void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
+{
+ uint32_t i;
+
+ for (i = 0; i < size; i++) {
+ /* Displaying IET LUT */
+ igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
+ }
+ igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
+ dietfactor, size);
+}
+
+#ifdef HAVE_LIBGHE
+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
+ igt_output_t *output)
+{
+ struct globalhist_args *argsPtr =
+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
+
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
+ argsPtr->resolution_x = mode->hdisplay;
+ argsPtr->resolution_y = mode->vdisplay;
+
+ igt_debug("Making call to global histogram algorithm.\n");
+ set_histogram_data_bin(argsPtr);
+
+ return argsPtr;
+}
+
+static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
+ igt_output_t *output,
+ drmModePropertyBlobRes *global_hist_blob)
+{
+ struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
+
+ igt_assert(args);
+ igt_debug("Writing pixel factor blob.\n");
+
+ set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
+ ARRAY_SIZE(args->dietfactor));
+ free(args);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+#endif
+
+static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip monochrome fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 0, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 1, 1, &data->fb[1]));
+}
+
+static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip color fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.5, 0, 0.5, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 0, &data->fb[1]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 1, 0, &data->fb[2]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 1, &data->fb[3]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 1, &data->fb[4]));
+}
+
+static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
+{
+ igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
+{
+ int i;
+ struct udev_monitor *mon = igt_watch_uevents();
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ bool event_detected = false;
+ int fb_count = color_fb ? 5 : 2;
+
+ if (color_fb)
+ create_color_fbs(data, mode);
+ else
+ create_monochrome_fbs(data, mode);
+
+ flip_fb(data, pipe, output, &data->fb[0]);
+ enable_and_verify_global_histogram(data, pipe);
+
+ igt_flush_uevents(mon);
+ for (i = 1; i <= FLIP_COUNT; i++) {
+ flip_fb(data, pipe, output, &data->fb[i % fb_count]);
+
+ /* Check for histogram event on every flip and break the loop if detected. */
+ if (igt_global_histogram_event_detected(mon, 0)) {
+ event_detected = true;
+ break;
+ }
+ }
+
+ igt_cleanup_uevents(mon);
+ igt_assert_f(event_detected, "Histogram event not generated.\n");
+}
+
+static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
+ bool color_fb, test_t test_pixel_factor)
+{
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ prepare_pipe(data, pipe, output, color_fb);
+
+ read_global_histogram(data, pipe, &global_hist_blob);
+
+ if (test_pixel_factor)
+ test_pixel_factor(data, pipe, output, global_hist_blob);
+
+ drmModeFreePropertyBlob(global_hist_blob);
+ cleanup_pipe(data, pipe, output);
+}
+
+static void run_tests_for_global_histogram(data_t *data, bool color_fb,
+ test_t test_pixel_factor)
+{
+ enum pipe pipe;
+ igt_output_t *output;
+
+ for_each_connected_output(&data->display, output) {
+ for_each_pipe(&data->display, pipe) {
+ if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
+ continue;
+
+ igt_display_reset(&data->display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(&data->display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
+ run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
+ }
+ }
+}
+
+static void run_algo_test(data_t *data, bool color_fb)
+{
+#ifdef HAVE_LIBGHE
+ run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
+#else
+ igt_skip("Histogram algorithm library not found.\n");
+#endif
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ igt_require(data.display.is_atomic);
+ }
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data.");
+ igt_subtest_with_dynamic("global-histogram-basic")
+ run_tests_for_global_histogram(&data, false, NULL);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data.");
+ igt_subtest_with_dynamic("global-histogram-color")
+ run_tests_for_global_histogram(&data, true, NULL);
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("histogram-algo-basic")
+ run_algo_test(&data, false);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("histogram-algo-color")
+ run_algo_test(&data, true);
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index e5d8852f3..0f32dec04 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -35,6 +35,7 @@ test_progs = [
'kms_flip_event_leak',
'kms_force_connector_basic',
'kms_getfb',
+ 'kms_histogram',
'kms_hdmi_inject',
'kms_hdr',
'kms_invalid_mode',
@@ -375,6 +376,7 @@ extra_dependencies = {
'gem_eio': [ realtime ],
'gem_exec_balancer': [ lib_igt_perf ],
'gem_mmap_offset': [ libatomic ],
+ 'kms_histogram': [ libghe ],
'i915_pm_freq_mult': [ lib_igt_perf ],
'i915_pm_rc6_residency': [ lib_igt_perf ],
'perf': [ lib_igt_i915_perf ],
--
2.25.1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* ✗ Fi.CI.BAT: failure for Added IGT support to validate global histogram (rev2)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (4 preceding siblings ...)
2024-07-06 18:43 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-09-26 3:19 ` Patchwork
2024-09-26 3:23 ` ✓ CI.xeBAT: success " Patchwork
` (18 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-09-26 3:19 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8448 bytes --]
== Series Details ==
Series: Added IGT support to validate global histogram (rev2)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15444 -> IGTPW_11795
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11795 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11795, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/index.html
Participating hosts (37 -> 36)
------------------------------
Additional (1): bat-rpls-4
Missing (2): bat-dg2-13 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11795:
### IGT changes ###
#### Possible regressions ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-4: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@debugfs_test@basic-hwmon.html
Known issues
------------
Here are the changes found in IGTPW_11795 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@basic:
- bat-rpls-4: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@gem_lmem_swapping@basic.html
* igt@gem_tiled_pread_basic:
- bat-rpls-4: NOTRUN -> [SKIP][3] ([i915#3282])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@gem_tiled_pread_basic.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][4] -> [ABORT][5] ([i915#12216]) +1 other test abort
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-mtlp-8/igt@i915_selftest@live.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arls-1: [PASS][6] -> [DMESG-WARN][7] ([i915#10341] / [i915#12133])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-arls-1/igt@i915_selftest@live.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-arls-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-1: [PASS][8] -> [DMESG-WARN][9] ([i915#11349])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-arls-1/igt@i915_selftest@live@hangcheck.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-arls-1/igt@i915_selftest@live@hangcheck.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-rpls-4: NOTRUN -> [SKIP][10] ([i915#4103]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-rpls-4: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840] / [i915#9886])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-4: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-rpls-4: NOTRUN -> [SKIP][13] ([i915#5354])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-rpls-4: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-4: NOTRUN -> [SKIP][15] ([i915#3555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-read:
- bat-rpls-4: NOTRUN -> [SKIP][16] ([i915#3708]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-rpls-4/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-dg2-9: [DMESG-WARN][17] ([i915#12257]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-dg2-9/igt@i915_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-dg2-9/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- bat-arls-2: [DMESG-WARN][19] ([i915#10341] / [i915#12133]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-arls-2/igt@i915_selftest@live.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-arls-2/igt@i915_selftest@live.html
- bat-mtlp-6: [DMESG-WARN][21] ([i915#10341]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-mtlp-6/igt@i915_selftest@live.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-2: [DMESG-WARN][23] ([i915#11349]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-arls-2/igt@i915_selftest@live@hangcheck.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-arls-2/igt@i915_selftest@live@hangcheck.html
- bat-mtlp-6: [DMESG-WARN][25] ([i915#11349]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
#### Warnings ####
* igt@fbdev@read:
- bat-arls-1: [DMESG-FAIL][27] ([i915#12102]) -> [DMESG-WARN][28] ([i915#12102])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-arls-1/igt@fbdev@read.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-arls-1/igt@fbdev@read.html
* igt@i915_module_load@reload:
- bat-arls-5: [DMESG-WARN][29] ([i915#11637] / [i915#1982]) -> [DMESG-WARN][30] ([i915#11637])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15444/bat-arls-5/igt@i915_module_load@reload.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/bat-arls-5/igt@i915_module_load@reload.html
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637
[i915#12102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12102
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12257
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[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#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8032 -> IGTPW_11795
CI-20190529: 20190529
CI_DRM_15444: 88d592f72f7bc508d6a027b1f96aa2e53f803e1b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11795: 8bc763646a9e2f426a9a15d4ed0df4df0c1136d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/index.html
[-- Attachment #2: Type: text/html, Size: 10088 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✓ CI.xeBAT: success for Added IGT support to validate global histogram (rev2)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (5 preceding siblings ...)
2024-09-26 3:19 ` ✗ Fi.CI.BAT: failure for Added IGT support to validate global histogram (rev2) Patchwork
@ 2024-09-26 3:23 ` Patchwork
2024-09-26 9:53 ` ✓ Fi.CI.IGT: " Patchwork
` (17 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-09-26 3:23 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1632 bytes --]
== Series Details ==
Series: Added IGT support to validate global histogram (rev2)
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8032_BAT -> XEIGTPW_11795_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11795_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_psr@psr-primary-page-flip@edp-1:
- bat-lnl-1: [PASS][1] -> [FAIL][2] ([Intel XE#1649]) +5 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
Build changes
-------------
* IGT: IGT_8032 -> IGTPW_11795
* Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> xe-1976-88d592f72f7bc508d6a027b1f96aa2e53f803e1b
IGTPW_11795: 8bc763646a9e2f426a9a15d4ed0df4df0c1136d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47
xe-1976-88d592f72f7bc508d6a027b1f96aa2e53f803e1b: 88d592f72f7bc508d6a027b1f96aa2e53f803e1b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/index.html
[-- Attachment #2: Type: text/html, Size: 2208 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✓ Fi.CI.IGT: success for Added IGT support to validate global histogram (rev2)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (6 preceding siblings ...)
2024-09-26 3:23 ` ✓ CI.xeBAT: success " Patchwork
@ 2024-09-26 9:53 ` Patchwork
2024-09-26 11:50 ` ✗ CI.xeFULL: failure " Patchwork
` (16 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-09-26 9:53 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1686 bytes --]
== Series Details ==
Series: Added IGT support to validate global histogram (rev2)
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15444_full -> IGTPW_11795_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/index.html
Participating hosts (8 -> 7)
------------------------------
Additional (2): shard-snb-0 shard-dg2-set2
Missing (3): shard-snb shard-dg2 shard-glk
New tests
---------
New tests have been introduced between CI_DRM_15444_full and IGTPW_11795_full:
### New IGT tests (4) ###
* igt@kms_histogram@global-histogram-basic:
- Statuses :
- Exec time: [None] s
* igt@kms_histogram@global-histogram-color:
- Statuses :
- Exec time: [None] s
* igt@kms_histogram@histogram-algo-basic:
- Statuses :
- Exec time: [None] s
* igt@kms_histogram@histogram-algo-color:
- Statuses :
- Exec time: [None] s
Changes
-------
No changes found
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8032 -> IGTPW_11795
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15444: 88d592f72f7bc508d6a027b1f96aa2e53f803e1b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11795: 8bc763646a9e2f426a9a15d4ed0df4df0c1136d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11795/index.html
[-- Attachment #2: Type: text/html, Size: 2401 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✗ CI.xeFULL: failure for Added IGT support to validate global histogram (rev2)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (7 preceding siblings ...)
2024-09-26 9:53 ` ✓ Fi.CI.IGT: " Patchwork
@ 2024-09-26 11:50 ` Patchwork
2024-10-17 11:12 ` [PATCH i-g-t] tests/kms_histogram: Added IGT support to validate global histogram Mohammed Thasleem
` (15 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-09-26 11:50 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 82480 bytes --]
== Series Details ==
Series: Added IGT support to validate global histogram (rev2)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8032_full -> XEIGTPW_11795_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11795_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11795_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11795_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-lnl: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_histogram@global-histogram-basic (NEW):
- shard-lnl: NOTRUN -> [SKIP][3] +7 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-3/igt@kms_histogram@global-histogram-basic.html
* igt@kms_histogram@histogram-algo-basic (NEW):
- {shard-bmg}: NOTRUN -> [SKIP][4] +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_histogram@histogram-algo-basic.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][5] -> [SKIP][6] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-lnl: [PASS][7] -> [FAIL][8] +55 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-5/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][9] +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-2/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][11] -> [FAIL][12] +2 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
#### Warnings ####
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: [SKIP][13] ([Intel XE#1201]) -> [SKIP][14] +33 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][15] ([Intel XE#1430]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@core_getversion@all-cards:
- {shard-bmg}: [PASS][17] -> [FAIL][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@core_getversion@all-cards.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@core_getversion@all-cards.html
* igt@kms_async_flips@crc@pipe-c-dp-2:
- {shard-bmg}: [FAIL][19] ([Intel XE#1656]) -> [DMESG-FAIL][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_async_flips@crc@pipe-c-dp-2.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-4/igt@kms_async_flips@crc@pipe-c-dp-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- {shard-bmg}: [SKIP][21] ([Intel XE#2370]) -> [SKIP][22]
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- {shard-bmg}: [SKIP][23] ([Intel XE#2327]) -> [SKIP][24] +6 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- {shard-bmg}: [PASS][25] -> [SKIP][26] +133 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- {shard-bmg}: [SKIP][27] ([Intel XE#1124]) -> [SKIP][28] +12 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- {shard-bmg}: [SKIP][29] ([Intel XE#607]) -> [SKIP][30]
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- {shard-bmg}: [SKIP][31] ([Intel XE#610]) -> [SKIP][32]
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- {shard-bmg}: [SKIP][33] ([Intel XE#367]) -> [SKIP][34] +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- {shard-bmg}: [SKIP][35] ([Intel XE#2251]) -> [SKIP][36] +20 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- {shard-bmg}: [SKIP][37] ([Intel XE#2325]) -> [SKIP][38] +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_chamelium_color@ctm-red-to-blue.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- {shard-bmg}: [SKIP][39] ([Intel XE#2252]) -> [SKIP][40] +14 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_content_protection@atomic-dpms:
- {shard-bmg}: [FAIL][41] ([Intel XE#1178]) -> [SKIP][42]
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- {shard-bmg}: [SKIP][43] ([Intel XE#2390]) -> [SKIP][44] +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@uevent:
- {shard-bmg}: [FAIL][45] ([Intel XE#1188]) -> [SKIP][46]
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_content_protection@uevent.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- {shard-bmg}: [SKIP][47] ([Intel XE#2320]) -> [SKIP][48] +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-256x85.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_legacy@single-move@pipe-b:
- {shard-bmg}: [PASS][49] -> [DMESG-WARN][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_cursor_legacy@single-move@pipe-b.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-3/igt@kms_cursor_legacy@single-move@pipe-b.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- {shard-bmg}: [SKIP][51] ([Intel XE#1508]) -> [SKIP][52]
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- {shard-bmg}: [FAIL][53] ([Intel XE#2141]) -> [SKIP][54]
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- {shard-bmg}: [SKIP][55] ([Intel XE#2244]) -> [SKIP][56] +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@flip-vs-suspend:
- {shard-bmg}: [DMESG-WARN][57] -> [SKIP][58] +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- {shard-bmg}: [SKIP][59] ([Intel XE#2380]) -> [SKIP][60] +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- {shard-bmg}: [SKIP][61] ([Intel XE#2311]) -> [SKIP][62] +36 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt:
- {shard-bmg}: NOTRUN -> [FAIL][63]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- {shard-bmg}: [FAIL][64] -> [SKIP][65] +7 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- {shard-bmg}: [SKIP][66] ([Intel XE#2312]) -> [SKIP][67] +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- {shard-bmg}: [FAIL][68] ([Intel XE#2333]) -> [SKIP][69] +8 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- {shard-bmg}: NOTRUN -> [SKIP][70] +34 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- {shard-bmg}: [SKIP][71] ([Intel XE#2313]) -> [SKIP][72] +36 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- {shard-bmg}: [SKIP][73] ([Intel XE#2350]) -> [SKIP][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_panel_fitting@atomic-fastset:
- {shard-bmg}: [SKIP][75] ([Intel XE#2486]) -> [SKIP][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- {shard-bmg}: [SKIP][77] ([Intel XE#2763]) -> [SKIP][78] +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- {shard-bmg}: [SKIP][79] ([Intel XE#1489]) -> [SKIP][80] +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-blt:
- {shard-bmg}: [SKIP][81] ([Intel XE#2850]) -> [SKIP][82] +19 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_psr@fbc-pr-cursor-blt.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- {shard-bmg}: [SKIP][83] ([Intel XE#2329]) -> [SKIP][84] +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_scaling_modes@scaling-mode-none:
- {shard-bmg}: [SKIP][85] ([Intel XE#2413]) -> [SKIP][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-none.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- {shard-bmg}: [SKIP][87] ([Intel XE#1435]) -> [SKIP][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- {shard-bmg}: [SKIP][89] ([Intel XE#2426]) -> [SKIP][90] +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- {shard-bmg}: [SKIP][91] ([Intel XE#1499]) -> [SKIP][92] +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_vrr@flip-basic.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-invalid-parameters:
- {shard-bmg}: [SKIP][93] ([Intel XE#756]) -> [SKIP][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-6/igt@kms_writeback@writeback-invalid-parameters.html
* igt@xe_pat@pat-index-xelpg:
- {shard-bmg}: [SKIP][95] ([Intel XE#2236]) -> [SKIP][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html
New tests
---------
New tests have been introduced between XEIGT_8032_full and XEIGTPW_11795_full:
### New IGT tests (4) ###
* igt@kms_histogram@global-histogram-basic:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-histogram-color:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@histogram-algo-basic:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@histogram-algo-color:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_11795_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#911]) +3 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#1426]) +1 other test fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1407])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-7/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1201] / [Intel XE#316])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1124])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1124]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1201] / [Intel XE#367])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#367])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#1201] / [Intel XE#1252])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#373])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#373]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1424])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-4/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: [PASS][115] -> [INCOMPLETE][116] ([Intel XE#1195])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
- shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#1541])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-1/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-move@pipe-b:
- shard-dg2-set2: [PASS][119] -> [DMESG-WARN][120] ([Intel XE#877]) +1 other test dmesg-warn
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_cursor_legacy@torture-move@pipe-b.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-b.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-lnl: [PASS][121] -> [SKIP][122] ([Intel XE#1508])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_flip@absolute-wf_vblank:
- shard-lnl: [PASS][123] -> [FAIL][124] ([Intel XE#2631]) +1 other test fail
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_flip@absolute-wf_vblank.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-7/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank:
- shard-dg2-set2: [PASS][125] -> [FAIL][126] ([Intel XE#886]) +1 other test fail
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_flip@blocking-wf_vblank.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][127] -> [FAIL][128] ([Intel XE#886]) +2 other tests fail
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1401] / [Intel XE#1745])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1401])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1397] / [Intel XE#1745])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1397])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#656]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#651])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#651]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1201] / [Intel XE#651]) +6 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1201] / [Intel XE#653]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#653])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_histogram@global-histogram-basic (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1201] / [Intel XE#455]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@kms_histogram@global-histogram-basic.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc:
- shard-lnl: [PASS][140] -> [DMESG-WARN][141] ([Intel XE#2055])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-1/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#324]) +2 other tests dmesg-warn
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_plane@plane-position-covered.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-5/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [PASS][144] -> [FAIL][145] ([Intel XE#616]) +1 other test fail
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_cursor@viewport.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2763]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html
* igt@kms_psr@fbc-psr2-cursor-render@edp-1:
- shard-lnl: [PASS][147] -> [FAIL][148] ([Intel XE#1649]) +113 other tests fail
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: NOTRUN -> [FAIL][149] ([Intel XE#1649]) +5 other tests fail
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-3/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-blt:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1406])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-3/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2850])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_psr@psr2-primary-blt.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][152] -> [FAIL][153] ([Intel XE#899]) +1 other test fail
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [PASS][154] -> [FAIL][155] ([Intel XE#2443]) +3 other tests fail
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_vrr@flip-basic.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][156] ([Intel XE#2443]) +1 other test fail
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-7/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#756])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-lnl: [PASS][158] -> [FAIL][159] ([Intel XE#2667])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-7/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-8/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][160] ([Intel XE#1600])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1392])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_compute_mode@once-userptr-invalidate-race:
- shard-lnl: [PASS][162] -> [FAIL][163] ([Intel XE#1069])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-1/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#1201] / [Intel XE#288])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-463/igt@xe_exec_fault_mode@twice-basic-prefetch.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [PASS][165] -> [TIMEOUT][166] ([Intel XE#2105])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [PASS][167] -> [DMESG-FAIL][168] ([Intel XE#1620])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@xe_gt_freq@freq_reset_multiple.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-3/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- shard-lnl: [PASS][169] -> [FAIL][170] ([Intel XE#2514]) +1 other test fail
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#1201]) +12 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug-lateclose:
- {shard-bmg}: [ABORT][172] -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@core_hotunplug@hotreplug-lateclose.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-8/igt@core_hotunplug@hotreplug-lateclose.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- {shard-bmg}: [FAIL][174] ([Intel XE#1426]) -> [PASS][175] +1 other test pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][176] ([Intel XE#1426]) -> [PASS][177] +1 other test pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][178] ([Intel XE#1426]) -> [PASS][179] +1 other test pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- {shard-bmg}: [INCOMPLETE][180] -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [FAIL][182] ([Intel XE#1659]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
- shard-lnl: [INCOMPLETE][184] ([Intel XE#1616]) -> [PASS][185] +1 other test pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- {shard-bmg}: [DMESG-WARN][186] -> [PASS][187] +2 other tests pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- {shard-bmg}: [DMESG-WARN][188] ([Intel XE#2791] / [Intel XE#877]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- {shard-bmg}: [SKIP][190] ([Intel XE#2425]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-rmfb:
- {shard-bmg}: [SKIP][192] -> [PASS][193] +2 other tests pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-1/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [FAIL][194] ([Intel XE#886]) -> [PASS][195] +2 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: [INCOMPLETE][196] ([Intel XE#1195]) -> [PASS][197] +1 other test pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1:
- shard-lnl: [DMESG-WARN][198] ([Intel XE#324]) -> [PASS][199] +2 other tests pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-8/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1.html
* igt@kms_plane@plane-position-hole@pipe-a-plane-4:
- shard-lnl: [DMESG-FAIL][200] ([Intel XE#324]) -> [PASS][201] +2 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-1/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][202] ([Intel XE#616]) -> [PASS][203] +3 other tests pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][204] ([Intel XE#718]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@xe_exec_balancer@many-virtual-userptr-invalidate:
- {shard-bmg}: [DMESG-WARN][206] ([Intel XE#877]) -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@xe_exec_balancer@many-virtual-userptr-invalidate.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-bmg-1/igt@xe_exec_balancer@many-virtual-userptr-invalidate.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [INCOMPLETE][208] ([Intel XE#1195] / [Intel XE#569]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_pm@s3-vm-bind-userptr.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-basic:
- shard-lnl: [ABORT][210] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@xe_pm@s4-basic.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-4/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][212] ([Intel XE#1794]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: [SKIP][214] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][215] ([Intel XE#801]) +23 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][216] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][217] ([Intel XE#316])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-270.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][218] ([Intel XE#316]) -> [SKIP][219] ([Intel XE#1201] / [Intel XE#316]) +6 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][220] ([Intel XE#1124]) -> [SKIP][221] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-466/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][222] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][223] ([Intel XE#1124]) +8 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][224] ([Intel XE#619]) -> [SKIP][225] ([Intel XE#1201] / [Intel XE#619])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][226] ([Intel XE#610]) -> [SKIP][227] ([Intel XE#1201] / [Intel XE#610])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][228] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][229] ([Intel XE#607])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: [SKIP][230] ([Intel XE#367]) -> [SKIP][231] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][232] ([Intel XE#2191]) -> [SKIP][233] ([Intel XE#1201] / [Intel XE#2191])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][235] ([Intel XE#367]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][236] ([Intel XE#787]) -> [SKIP][237] ([Intel XE#1201] / [Intel XE#787]) +69 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [SKIP][238] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][239] ([Intel XE#787]) +97 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][240] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][241] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][242] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][243] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +19 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-set2: [SKIP][244] ([Intel XE#306]) -> [SKIP][245] ([Intel XE#1201] / [Intel XE#306])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][246] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][247] ([Intel XE#306]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg2-set2: [SKIP][248] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][249] ([Intel XE#373]) +6 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][250] ([Intel XE#373]) -> [SKIP][251] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][252] ([Intel XE#307]) -> [SKIP][253] ([Intel XE#1201] / [Intel XE#307])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][254] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][255] ([Intel XE#307])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][256] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][257] ([Intel XE#455]) +10 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_content_protection@lic-type-1.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][258] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][259] ([Intel XE#308]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: [SKIP][260] ([Intel XE#308]) -> [SKIP][261] ([Intel XE#1201] / [Intel XE#308])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][262] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][263] ([Intel XE#323]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][264] ([Intel XE#1201] / [i915#3804]) -> [SKIP][265] ([i915#3804])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][266] ([Intel XE#455]) -> [SKIP][267] ([Intel XE#1201] / [Intel XE#455]) +14 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][268] ([Intel XE#651]) -> [SKIP][269] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][270] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][271] ([Intel XE#651]) +23 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][272] ([Intel XE#1201]) -> [SKIP][273] ([Intel XE#658]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][274] ([Intel XE#653]) -> [SKIP][275] ([Intel XE#1201] / [Intel XE#653]) +17 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][276] ([Intel XE#1201]) -> [SKIP][277] ([Intel XE#1201] / [Intel XE#658])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][278] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][279] ([Intel XE#653]) +25 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][280] ([Intel XE#1201] / [Intel XE#356]) -> [SKIP][281] ([Intel XE#356])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2-set2: [SKIP][282] ([Intel XE#455]) -> [SKIP][283] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +5 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][284] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][285] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-dg2-set2: [SKIP][286] ([Intel XE#1201]) -> [SKIP][287] ([Intel XE#2763]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: [SKIP][288] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][289] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +11 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- shard-dg2-set2: [SKIP][290] ([Intel XE#2763]) -> [SKIP][291] ([Intel XE#1201] / [Intel XE#2763]) +8 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: [SKIP][292] ([Intel XE#1201]) -> [SKIP][293] ([Intel XE#1201] / [Intel XE#2763]) +17 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][294] ([Intel XE#1489]) -> [SKIP][295] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][296] ([Intel XE#1201]) -> [SKIP][297] ([Intel XE#1489]) +3 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][298] ([Intel XE#1201]) -> [SKIP][299] ([Intel XE#1201] / [Intel XE#1489]) +17 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][300] ([Intel XE#1201]) -> [SKIP][301] ([Intel XE#2850]) +8 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][302] ([Intel XE#2850]) -> [SKIP][303] ([Intel XE#1201] / [Intel XE#2850]) +10 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][304] ([Intel XE#1201]) -> [SKIP][305] ([Intel XE#1201] / [Intel XE#2850]) +62 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_psr@psr-dpms.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-466/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-primary-page-flip:
- shard-dg2-set2: [SKIP][306] ([Intel XE#1201] / [Intel XE#2850]) -> [SKIP][307] ([Intel XE#2850]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][308] ([Intel XE#327]) -> [SKIP][309] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_rotation_crc@bad-pixel-format.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: [SKIP][310] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][311] ([Intel XE#327])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][312] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][313] ([Intel XE#1127])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][314] ([Intel XE#1201] / [Intel XE#330]) -> [SKIP][315] ([Intel XE#330])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2-set2: [SKIP][316] ([Intel XE#756]) -> [SKIP][317] ([Intel XE#1201] / [Intel XE#756])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_writeback@writeback-check-output.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-466/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][318] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][319] ([Intel XE#756])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][320] ([Intel XE#2849]) -> [SKIP][321] ([Intel XE#1201] / [Intel XE#2849])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][322] ([Intel XE#1201]) -> [SKIP][323] ([Intel XE#1201] / [Intel XE#2849])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][324] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][325] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@xe_compute_preempt@compute-preempt.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_exec_fault_mode@many-execqueues-basic-imm:
- shard-dg2-set2: [SKIP][326] -> [SKIP][327] ([Intel XE#1201]) +16 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-466/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][328] ([Intel XE#288]) -> [SKIP][329] ([Intel XE#1201] / [Intel XE#288]) +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: [SKIP][330] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][331] ([Intel XE#288]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@xe_exec_fault_mode@twice-invalid-fault.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][332] ([Intel XE#512]) -> [SKIP][333] ([Intel XE#1201] / [Intel XE#512])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_mmap@small-bar.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-436/igt@xe_mmap@small-bar.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][334] ([Intel XE#1337]) -> [SKIP][335] ([Intel XE#1201] / [Intel XE#1337])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][336] ([Intel XE#1201]) -> [SKIP][337] ([Intel XE#1201] / [Intel XE#977])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@xe_pat@pat-index-xe2.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-464/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][338] ([Intel XE#366]) -> [SKIP][339] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#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#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2631]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2631
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2690]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2690
[Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8032 -> IGTPW_11795
* Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> xe-1976-88d592f72f7bc508d6a027b1f96aa2e53f803e1b
IGTPW_11795: 8bc763646a9e2f426a9a15d4ed0df4df0c1136d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47
xe-1976-88d592f72f7bc508d6a027b1f96aa2e53f803e1b: 88d592f72f7bc508d6a027b1f96aa2e53f803e1b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11795/index.html
[-- Attachment #2: Type: text/html, Size: 101358 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* Re: [PATCH i-g-t v2] tests/kms_histogram: Added IGT support to validate global histogram
2024-09-24 12:25 ` [PATCH i-g-t v2] " Mohammed Thasleem
@ 2024-10-09 11:39 ` Modem, Bhanuprakash
2024-10-11 14:58 ` Kamil Konieczny
2024-10-17 11:20 ` [PATCH i-g-t v3] " Mohammed Thasleem
2 siblings, 0 replies; 40+ messages in thread
From: Modem, Bhanuprakash @ 2024-10-09 11:39 UTC (permalink / raw)
To: Mohammed Thasleem, igt-dev; +Cc: Adarsh G M
On 24-09-2024 05:55 pm, Mohammed Thasleem wrote:
> The IGT changes included tests for enabling/disabling histogram.
> Validating the histogram event generation and if any One such library
> Global Histogram Enhancement(GHE) present, will feed the histogram to
> the library, get the enhanced LUT data and feed it back to the KMD.
> For histogram generation, black/white and color images are flipped.
>
> TODO: Extend the tests for different formats/modifiers.
>
> v2: Remove eDP restriction. (Vandita)
> Update crtc property name. (Arun)
>
> Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> lib/igt_kms.c | 23 +++
> lib/igt_kms.h | 5 +
> meson.build | 7 +
> tests/kms_histogram.c | 349 ++++++++++++++++++++++++++++++++++++++++++
> tests/meson.build | 2 +
> 5 files changed, 386 insertions(+)
> create mode 100644 tests/kms_histogram.c
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index b40470c02..a7a990fc2 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -700,6 +700,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
> [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
> [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
> [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
> + [IGT_CRTC_HISTOGRAM] = "Histogram_Enable",
> + [IGT_CRTC_GLOBAL_HISTOGRAM] = "Global Histogram",
> + [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "Global IET",
> };
>
> const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
> @@ -2562,6 +2565,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
> if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
> igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
>
> + if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
> + igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
> +
> pipe->out_fence_fd = -1;
> }
>
> @@ -5590,6 +5596,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
> ARRAY_SIZE(props));
> }
>
> +/**
> + * igt_global_histogram_event_detected:
> + * @mon: A udev monitor initialized with #igt_watch_uevents
> + * @timeout_secs: How long to wait for a lease change event to occur.
> + *
> + * Detect if a global Histogram event was received since we last checked the monitor.
> + *
> + * Returns: true if a sysfs global Histogram event was received, false if we timed out
> + */
> +bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
> +{
> + const char *props[1] = {"HISTOGRAM"};
> + int expected_val = 1;
> +
> + return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
> +}
> +
> /**
> * igt_flush_uevents:
> * @mon: A udev monitor initialized with #igt_watch_uevents
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 25ba50916..598aa4b33 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -163,6 +163,9 @@ enum igt_atomic_crtc_properties {
> IGT_CRTC_OUT_FENCE_PTR,
> IGT_CRTC_VRR_ENABLED,
> IGT_CRTC_SCALING_FILTER,
> + IGT_CRTC_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> IGT_NUM_CRTC_PROPS
> };
>
> @@ -1111,6 +1114,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
> bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
> bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
>
> +bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
> +
> /**
> * igt_vblank_after_eq:
> * @a: First vblank sequence number.
> diff --git a/meson.build b/meson.build
> index 0d06721b4..8ee4f6edc 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -195,6 +195,13 @@ else
> chamelium = disabler()
> endif
>
> +libghe = dependency('libghe', required : false)
> +if libghe.found()
> + config.set('HAVE_LIBGHE', 1)
> +else
> + warning('LIBGHE not found')
> +endif
> +
> build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
>
> pthreads = dependency('threads')
> diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
> new file mode 100644
> index 000000000..892291f1e
> --- /dev/null
> +++ b/tests/kms_histogram.c
> @@ -0,0 +1,349 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms histogram
> + * Category: Display
> + * Description: Test to verify histogram features.
> + * Driver requirement: i915, xe
> + * Functionality: histogram
> + * Mega feature: Display
> + * Test category: functionality test
> + */
> +
> +#include <errno.h>
> +#include <fcntl.h>
> +#include <limits.h>
> +#include <stdbool.h>
> +#include <stdio.h>
> +#include <string.h>
> +
> +#include "igt.h"
> +#include "igt_vec.h"
> +#ifdef HAVE_LIBGHE
> +#include "ghe.h"
> +#endif
> +
> +#define GLOBAL_HIST_DISABLE 0
> +#define GLOBAL_HIST_ENABLE 1
> +#define GLOBAL_HIST_DELAY 2
> +#define FLIP_COUNT 20
> +
> +/**
> + * SUBTEST: global-histogram-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: global-histogram-color
> + * Description: Test to enable histogram, flip color fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: histogram-algo-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data and enhance pixels by
> + * multiplying by a pixel factor using algo
> + *
> + * SUBTEST: histogram-algo-color
> + * Description: Test to enable histogram, flip color fbs, wait for histogram event
> + * and then read the histogram data and enhance pixels by multiplying
> + * by a pixel factor using algo
> + */
> +
> +IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
> +
> +typedef struct data {
> + igt_display_t display;
> + int drm_fd;
> + igt_fb_t fb[5];
> +} data_t;
> +
> +typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
> +void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size);
> +
> +static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
> +{
> + uint32_t global_hist_value;
> +
> + /* Enable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is enabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
> +}
> +
> +static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
> +{
> + uint32_t global_hist_value;
> +
> + /* Disable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is disabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
> +}
> +
> +static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> +{
> + igt_plane_t *plane;
> +
> + disable_and_verify_global_histogram(data, pipe);
> +
> + for_each_plane_on_pipe(&data->display, pipe, plane)
> + igt_plane_set_fb(plane, NULL);
> + igt_output_set_pipe(output, PIPE_NONE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> + igt_remove_fb(data->display.drm_fd, &data->fb[0]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[1]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[2]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[3]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[4]);
> +}
> +
> +static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
> +{
> + uint64_t blob_id;
> +
> + blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
> + IGT_CRTC_GLOBAL_HISTOGRAM);
> + if (blob_id == 0)
> + return NULL;
> +
> + return drmModeGetPropertyBlob(data->drm_fd, blob_id);
> +}
> +
> +static void read_global_histogram(data_t *data, enum pipe pipe,
> + drmModePropertyBlobRes **hist_blob_ptr)
> +{
> + uint32_t *histogram_ptr;
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
> + do {
> + global_hist_blob = get_global_histogram_data(data, pipe);
> + } while (global_hist_blob == NULL);
> + igt_reset_timeout();
> +
> + *hist_blob_ptr = global_hist_blob;
> + histogram_ptr = (uint32_t *) global_hist_blob->data;
> + for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
> + igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
> +}
> +
> +void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
> +{
> + uint32_t i;
> +
> + for (i = 0; i < size; i++) {
> + /* Displaying IET LUT */
> + igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
> + }
> + igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> + dietfactor, size);
> +}
> +
> +#ifdef HAVE_LIBGHE
> +static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
> + igt_output_t *output)
> +{
> + struct globalhist_args *argsPtr =
> + (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
> +
> + drmModeModeInfo *mode;
> +
> + mode = igt_output_get_mode(output);
> +
> + memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
> + argsPtr->resolution_x = mode->hdisplay;
> + argsPtr->resolution_y = mode->vdisplay;
> +
> + igt_debug("Making call to global histogram algorithm.\n");
> + set_histogram_data_bin(argsPtr);
> +
> + return argsPtr;
> +}
> +
> +static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
> + igt_output_t *output,
> + drmModePropertyBlobRes *global_hist_blob)
> +{
> + struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
> +
> + igt_assert(args);
> + igt_debug("Writing pixel factor blob.\n");
> +
> + set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
> + ARRAY_SIZE(args->dietfactor));
> + free(args);
> +
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +#endif
> +
> +static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
> +{
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip monochrome fbs to get histogram event. */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 0, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 1, 1, &data->fb[1]));
> +}
> +
> +static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
> +{
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip color fbs to get histogram event. */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.5, 0, 0.5, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 0, &data->fb[1]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 1, 0, &data->fb[2]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 1, &data->fb[3]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 1, &data->fb[4]));
> +}
> +
> +static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
> +{
> + igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
> +{
> + int i;
> + struct udev_monitor *mon = igt_watch_uevents();
> + drmModeModeInfo *mode = igt_output_get_mode(output);
> + bool event_detected = false;
> + int fb_count = color_fb ? 5 : 2;
> +
> + if (color_fb)
> + create_color_fbs(data, mode);
> + else
> + create_monochrome_fbs(data, mode);
> +
> + flip_fb(data, pipe, output, &data->fb[0]);
> + enable_and_verify_global_histogram(data, pipe);
> +
> + igt_flush_uevents(mon);
> + for (i = 1; i <= FLIP_COUNT; i++) {
> + flip_fb(data, pipe, output, &data->fb[i % fb_count]);
> +
> + /* Check for histogram event on every flip and break the loop if detected. */
> + if (igt_global_histogram_event_detected(mon, 0)) {
> + event_detected = true;
> + break;
> + }
> + }
> +
> + igt_cleanup_uevents(mon);
> + igt_assert_f(event_detected, "Histogram event not generated.\n");
> +}
> +
> +static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
> + bool color_fb, test_t test_pixel_factor)
> +{
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + prepare_pipe(data, pipe, output, color_fb);
> +
> + read_global_histogram(data, pipe, &global_hist_blob);
> +
> + if (test_pixel_factor)
> + test_pixel_factor(data, pipe, output, global_hist_blob);
> +
> + drmModeFreePropertyBlob(global_hist_blob);
> + cleanup_pipe(data, pipe, output);
> +}
> +
> +static void run_tests_for_global_histogram(data_t *data, bool color_fb,
> + test_t test_pixel_factor)
> +{
> + enum pipe pipe;
> + igt_output_t *output;
> +
> + for_each_connected_output(&data->display, output) {
> + for_each_pipe(&data->display, pipe) {
> + if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
> + continue;
> +
> + igt_display_reset(&data->display);
> +
> + igt_output_set_pipe(output, pipe);
> + if (!intel_pipe_output_combo_valid(&data->display))
> + continue;
> +
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
> + run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
> + }
> + }
> +}
> +
> +static void run_algo_test(data_t *data, bool color_fb)
> +{
> +#ifdef HAVE_LIBGHE
> + run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
> +#else
> + igt_skip("Histogram algorithm library not found.\n");
> +#endif
> +}
> +
> +igt_main
> +{
> + data_t data = {};
> +
> + igt_fixture {
> + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> + kmstest_set_vt_graphics_mode();
> + igt_display_require(&data.display, data.drm_fd);
> + igt_display_require_output(&data.display);
> + igt_require(data.display.is_atomic);
> + }
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
> + "event and then read the histogram data.");
> + igt_subtest_with_dynamic("global-histogram-basic")
> + run_tests_for_global_histogram(&data, false, NULL);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
> + "and then read the histogram data.");
> + igt_subtest_with_dynamic("global-histogram-color")
> + run_tests_for_global_histogram(&data, true, NULL);
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
> + "event and then read the histogram data and enhance pixels by multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("histogram-algo-basic")
> + run_algo_test(&data, false);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
> + "and then read the histogram data and enhance pixels by multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("histogram-algo-color")
> + run_algo_test(&data, true);
> +
> + igt_fixture {
> + igt_display_fini(&data.display);
> + drm_close_driver(data.drm_fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index e5d8852f3..0f32dec04 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -35,6 +35,7 @@ test_progs = [
> 'kms_flip_event_leak',
> 'kms_force_connector_basic',
> 'kms_getfb',
> + 'kms_histogram',
> 'kms_hdmi_inject',
> 'kms_hdr',
> 'kms_invalid_mode',
> @@ -375,6 +376,7 @@ extra_dependencies = {
> 'gem_eio': [ realtime ],
> 'gem_exec_balancer': [ lib_igt_perf ],
> 'gem_mmap_offset': [ libatomic ],
> + 'kms_histogram': [ libghe ],
> 'i915_pm_freq_mult': [ lib_igt_perf ],
> 'i915_pm_rc6_residency': [ lib_igt_perf ],
> 'perf': [ lib_igt_i915_perf ],
^ permalink raw reply [flat|nested] 40+ messages in thread
* Re: [PATCH i-g-t v2] tests/kms_histogram: Added IGT support to validate global histogram
2024-09-24 12:25 ` [PATCH i-g-t v2] " Mohammed Thasleem
2024-10-09 11:39 ` Modem, Bhanuprakash
@ 2024-10-11 14:58 ` Kamil Konieczny
2024-10-17 11:20 ` [PATCH i-g-t v3] " Mohammed Thasleem
2 siblings, 0 replies; 40+ messages in thread
From: Kamil Konieczny @ 2024-10-11 14:58 UTC (permalink / raw)
To: igt-dev; +Cc: Mohammed Thasleem, Adarsh G M, Bhanuprakash Modem
Hi Mohammed,
On 2024-09-24 at 17:55:33 +0530, Mohammed Thasleem wrote:
> The IGT changes included tests for enabling/disabling histogram.
> Validating the histogram event generation and if any One such library
> Global Histogram Enhancement(GHE) present, will feed the histogram to
> the library, get the enhanced LUT data and feed it back to the KMD.
> For histogram generation, black/white and color images are flipped.
>
> TODO: Extend the tests for different formats/modifiers.
>
I would prefer to have a litte more description here, maybe just
copy some (or all) from cover letter?
Please also provide link(s) (patchwork or lore.kernel.org) to kernel
changes.
> v2: Remove eDP restriction. (Vandita)
> Update crtc property name. (Arun)
>
> Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> ---
> lib/igt_kms.c | 23 +++
> lib/igt_kms.h | 5 +
> meson.build | 7 +
> tests/kms_histogram.c | 349 ++++++++++++++++++++++++++++++++++++++++++
imho this should be tests/intel as now it is only for Intel drivers
i195 or Xe.
> tests/meson.build | 2 +
> 5 files changed, 386 insertions(+)
> create mode 100644 tests/kms_histogram.c
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index b40470c02..a7a990fc2 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -700,6 +700,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
> [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
> [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
> [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
> + [IGT_CRTC_HISTOGRAM] = "Histogram_Enable",
> + [IGT_CRTC_GLOBAL_HISTOGRAM] = "Global Histogram",
> + [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "Global IET",
> };
>
> const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
> @@ -2562,6 +2565,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
> if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
> igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
>
> + if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
> + igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
> +
> pipe->out_fence_fd = -1;
> }
>
> @@ -5590,6 +5596,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
> ARRAY_SIZE(props));
> }
>
> +/**
> + * igt_global_histogram_event_detected:
> + * @mon: A udev monitor initialized with #igt_watch_uevents
> + * @timeout_secs: How long to wait for a lease change event to occur.
> + *
> + * Detect if a global Histogram event was received since we last checked the monitor.
> + *
> + * Returns: true if a sysfs global Histogram event was received, false if we timed out
> + */
> +bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
> +{
> + const char *props[1] = {"HISTOGRAM"};
> + int expected_val = 1;
> +
> + return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
> +}
> +
> /**
> * igt_flush_uevents:
> * @mon: A udev monitor initialized with #igt_watch_uevents
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 25ba50916..598aa4b33 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -163,6 +163,9 @@ enum igt_atomic_crtc_properties {
> IGT_CRTC_OUT_FENCE_PTR,
> IGT_CRTC_VRR_ENABLED,
> IGT_CRTC_SCALING_FILTER,
> + IGT_CRTC_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> IGT_NUM_CRTC_PROPS
> };
>
> @@ -1111,6 +1114,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
> bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
> bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
>
> +bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
> +
> /**
> * igt_vblank_after_eq:
> * @a: First vblank sequence number.
> diff --git a/meson.build b/meson.build
> index 0d06721b4..8ee4f6edc 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -195,6 +195,13 @@ else
> chamelium = disabler()
> endif
>
> +libghe = dependency('libghe', required : false)
> +if libghe.found()
> + config.set('HAVE_LIBGHE', 1)
> +else
> + warning('LIBGHE not found')
Why warning when you made it optional?
> +endif
> +
> build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
>
> pthreads = dependency('threads')
> diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
> new file mode 100644
> index 000000000..892291f1e
> --- /dev/null
> +++ b/tests/kms_histogram.c
> @@ -0,0 +1,349 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms histogram
> + * Category: Display
> + * Description: Test to verify histogram features.
> + * Driver requirement: i915, xe
> + * Functionality: histogram
> + * Mega feature: Display
> + * Test category: functionality test
> + */
> +
> +#include <errno.h>
> +#include <fcntl.h>
> +#include <limits.h>
> +#include <stdbool.h>
> +#include <stdio.h>
> +#include <string.h>
> +
> +#include "igt.h"
> +#include "igt_vec.h"
> +#ifdef HAVE_LIBGHE
> +#include "ghe.h"
> +#endif
> +
> +#define GLOBAL_HIST_DISABLE 0
> +#define GLOBAL_HIST_ENABLE 1
> +#define GLOBAL_HIST_DELAY 2
> +#define FLIP_COUNT 20
> +
> +/**
> + * SUBTEST: global-histogram-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: global-histogram-color
> + * Description: Test to enable histogram, flip color fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: histogram-algo-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data and enhance pixels by
> + * multiplying by a pixel factor using algo
> + *
> + * SUBTEST: histogram-algo-color
> + * Description: Test to enable histogram, flip color fbs, wait for histogram event
> + * and then read the histogram data and enhance pixels by multiplying
> + * by a pixel factor using algo
> + */
What is a difference between global-... and histogram-... tests?
What is an effect of 'multiply by a factor using algo'?
imho you can use shorter names for tests:
global-basic
global-color
algo-basic
algo-color
Regards,
Kamil
> +
> +IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
> +
> +typedef struct data {
> + igt_display_t display;
> + int drm_fd;
> + igt_fb_t fb[5];
> +} data_t;
> +
> +typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
> +void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size);
> +
> +static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
> +{
> + uint32_t global_hist_value;
> +
> + /* Enable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is enabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
> +}
> +
> +static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
> +{
> + uint32_t global_hist_value;
> +
> + /* Disable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is disabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
> +}
> +
> +static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> +{
> + igt_plane_t *plane;
> +
> + disable_and_verify_global_histogram(data, pipe);
> +
> + for_each_plane_on_pipe(&data->display, pipe, plane)
> + igt_plane_set_fb(plane, NULL);
> + igt_output_set_pipe(output, PIPE_NONE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> + igt_remove_fb(data->display.drm_fd, &data->fb[0]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[1]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[2]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[3]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[4]);
> +}
> +
> +static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
> +{
> + uint64_t blob_id;
> +
> + blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
> + IGT_CRTC_GLOBAL_HISTOGRAM);
> + if (blob_id == 0)
> + return NULL;
> +
> + return drmModeGetPropertyBlob(data->drm_fd, blob_id);
> +}
> +
> +static void read_global_histogram(data_t *data, enum pipe pipe,
> + drmModePropertyBlobRes **hist_blob_ptr)
> +{
> + uint32_t *histogram_ptr;
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
> + do {
> + global_hist_blob = get_global_histogram_data(data, pipe);
> + } while (global_hist_blob == NULL);
> + igt_reset_timeout();
> +
> + *hist_blob_ptr = global_hist_blob;
> + histogram_ptr = (uint32_t *) global_hist_blob->data;
> + for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
> + igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
> +}
> +
> +void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
> +{
> + uint32_t i;
> +
> + for (i = 0; i < size; i++) {
> + /* Displaying IET LUT */
> + igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
> + }
> + igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> + dietfactor, size);
> +}
> +
> +#ifdef HAVE_LIBGHE
> +static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
> + igt_output_t *output)
> +{
> + struct globalhist_args *argsPtr =
> + (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
> +
> + drmModeModeInfo *mode;
> +
> + mode = igt_output_get_mode(output);
> +
> + memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
> + argsPtr->resolution_x = mode->hdisplay;
> + argsPtr->resolution_y = mode->vdisplay;
> +
> + igt_debug("Making call to global histogram algorithm.\n");
> + set_histogram_data_bin(argsPtr);
> +
> + return argsPtr;
> +}
> +
> +static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
> + igt_output_t *output,
> + drmModePropertyBlobRes *global_hist_blob)
> +{
> + struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
> +
> + igt_assert(args);
> + igt_debug("Writing pixel factor blob.\n");
> +
> + set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
> + ARRAY_SIZE(args->dietfactor));
> + free(args);
> +
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +#endif
> +
> +static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
> +{
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip monochrome fbs to get histogram event. */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 0, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 1, 1, &data->fb[1]));
> +}
> +
> +static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
> +{
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip color fbs to get histogram event. */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.5, 0, 0.5, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 0, &data->fb[1]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 1, 0, &data->fb[2]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 1, &data->fb[3]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 1, &data->fb[4]));
> +}
> +
> +static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
> +{
> + igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
> +{
> + int i;
> + struct udev_monitor *mon = igt_watch_uevents();
> + drmModeModeInfo *mode = igt_output_get_mode(output);
> + bool event_detected = false;
> + int fb_count = color_fb ? 5 : 2;
> +
> + if (color_fb)
> + create_color_fbs(data, mode);
> + else
> + create_monochrome_fbs(data, mode);
> +
> + flip_fb(data, pipe, output, &data->fb[0]);
> + enable_and_verify_global_histogram(data, pipe);
> +
> + igt_flush_uevents(mon);
> + for (i = 1; i <= FLIP_COUNT; i++) {
> + flip_fb(data, pipe, output, &data->fb[i % fb_count]);
> +
> + /* Check for histogram event on every flip and break the loop if detected. */
> + if (igt_global_histogram_event_detected(mon, 0)) {
> + event_detected = true;
> + break;
> + }
> + }
> +
> + igt_cleanup_uevents(mon);
> + igt_assert_f(event_detected, "Histogram event not generated.\n");
> +}
> +
> +static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
> + bool color_fb, test_t test_pixel_factor)
> +{
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + prepare_pipe(data, pipe, output, color_fb);
> +
> + read_global_histogram(data, pipe, &global_hist_blob);
> +
> + if (test_pixel_factor)
> + test_pixel_factor(data, pipe, output, global_hist_blob);
> +
> + drmModeFreePropertyBlob(global_hist_blob);
> + cleanup_pipe(data, pipe, output);
> +}
> +
> +static void run_tests_for_global_histogram(data_t *data, bool color_fb,
> + test_t test_pixel_factor)
> +{
> + enum pipe pipe;
> + igt_output_t *output;
> +
> + for_each_connected_output(&data->display, output) {
> + for_each_pipe(&data->display, pipe) {
> + if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
> + continue;
> +
> + igt_display_reset(&data->display);
> +
> + igt_output_set_pipe(output, pipe);
> + if (!intel_pipe_output_combo_valid(&data->display))
> + continue;
> +
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
> + run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
> + }
> + }
> +}
> +
> +static void run_algo_test(data_t *data, bool color_fb)
> +{
> +#ifdef HAVE_LIBGHE
> + run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
> +#else
> + igt_skip("Histogram algorithm library not found.\n");
> +#endif
> +}
> +
> +igt_main
> +{
> + data_t data = {};
> +
> + igt_fixture {
> + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> + kmstest_set_vt_graphics_mode();
> + igt_display_require(&data.display, data.drm_fd);
> + igt_display_require_output(&data.display);
> + igt_require(data.display.is_atomic);
> + }
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
> + "event and then read the histogram data.");
> + igt_subtest_with_dynamic("global-histogram-basic")
> + run_tests_for_global_histogram(&data, false, NULL);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
> + "and then read the histogram data.");
> + igt_subtest_with_dynamic("global-histogram-color")
> + run_tests_for_global_histogram(&data, true, NULL);
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
> + "event and then read the histogram data and enhance pixels by multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("histogram-algo-basic")
> + run_algo_test(&data, false);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
> + "and then read the histogram data and enhance pixels by multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("histogram-algo-color")
> + run_algo_test(&data, true);
> +
> + igt_fixture {
> + igt_display_fini(&data.display);
> + drm_close_driver(data.drm_fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index e5d8852f3..0f32dec04 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -35,6 +35,7 @@ test_progs = [
> 'kms_flip_event_leak',
> 'kms_force_connector_basic',
> 'kms_getfb',
> + 'kms_histogram',
> 'kms_hdmi_inject',
> 'kms_hdr',
> 'kms_invalid_mode',
> @@ -375,6 +376,7 @@ extra_dependencies = {
> 'gem_eio': [ realtime ],
> 'gem_exec_balancer': [ lib_igt_perf ],
> 'gem_mmap_offset': [ libatomic ],
> + 'kms_histogram': [ libghe ],
> 'i915_pm_freq_mult': [ lib_igt_perf ],
> 'i915_pm_rc6_residency': [ lib_igt_perf ],
> 'perf': [ lib_igt_i915_perf ],
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 40+ messages in thread
* [PATCH i-g-t] tests/kms_histogram: Added IGT support to validate global histogram
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (8 preceding siblings ...)
2024-09-26 11:50 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-10-17 11:12 ` Mohammed Thasleem
2024-10-17 13:23 ` ✓ CI.xeBAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev3) Patchwork
` (14 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Mohammed Thasleem @ 2024-10-17 11:12 UTC (permalink / raw)
To: igt-dev; +Cc: Mohammed Thasleem, Adarsh G M, Bhanuprakash Modem
The IGT changes included tests for enabling/disabling histogram.
Validating the histogram event generation and if any One such library
Global Histogram Enhancement(GHE) present, will feed the histogram to
the library, get the enhanced LUT data and feed it back to the KMD.
For histogram generation, black/white and color images are flipped.
Display histogram is a hardware functionality where a statistics for 'x'
number of frames is generated to form a histogram data. This is notified
to the user via histogram event. Compositor then upon sensing the histogram
event will read the histogram data from KMD via crtc property.
A library can be developed to take this generated histogram as an input and
apply some algorithm to generate an Image Enhancement(IET).
This is further fed back to the KMD via crtc property. KMD will feed this
bask to the hardware. Hardware will use this as a multiplicand factor to
multiply with the incoming pixels at the end of the pipe which is then
pushed onto the display.
One such library Global Histogram Enhancement(GHE) will take the histogram
as input and applied the algorithm to enhance the density and then return
the enhanced factor.
"This library can be located https://github.com/intel/ghe"
"KMD changes at https://patchwork.freedesktop.org/series/135793/"
TODO: Extend the tests for different formats/modifiers.
v2: Remove eDP restriction. (Vandita)
Update crtc property name. (Arun)
v3: Update discription and test names. (Kamil)
Remove warning message from meson build. (Kamil)
Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 23 +++
lib/igt_kms.h | 5 +
meson.build | 5 +
tests/kms_histogram.c | 349 ++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 2 +
5 files changed, 384 insertions(+)
create mode 100644 tests/kms_histogram.c
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index bb35d4b82..76d2612d0 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -702,6 +702,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_HISTOGRAM] = "Histogram_Enable",
+ [IGT_CRTC_GLOBAL_HISTOGRAM] = "Global Histogram",
+ [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "Global IET",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2587,6 +2590,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
+ if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
+ igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
+
pipe->out_fence_fd = -1;
}
@@ -5615,6 +5621,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
ARRAY_SIZE(props));
}
+/**
+ * igt_global_histogram_event_detected:
+ * @mon: A udev monitor initialized with #igt_watch_uevents
+ * @timeout_secs: How long to wait for a lease change event to occur.
+ *
+ * Detect if a global Histogram event was received since we last checked the monitor.
+ *
+ * Returns: true if a sysfs global Histogram event was received, false if we timed out
+ */
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
+{
+ const char *props[1] = {"HISTOGRAM"};
+ int expected_val = 1;
+
+ return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
+}
+
/**
* igt_flush_uevents:
* @mon: A udev monitor initialized with #igt_watch_uevents
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 2b26d2bbf..dfebd64b1 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -163,6 +163,9 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
IGT_NUM_CRTC_PROPS
};
@@ -1126,6 +1129,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
+
/**
* igt_vblank_after_eq:
* @a: First vblank sequence number.
diff --git a/meson.build b/meson.build
index 64f57f232..cd8d35145 100644
--- a/meson.build
+++ b/meson.build
@@ -195,6 +195,11 @@ else
chamelium = disabler()
endif
+libghe = dependency('libghe', required : false)
+if libghe.found()
+ config.set('HAVE_LIBGHE', 1)
+endif
+
build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
pthreads = dependency('threads')
diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
new file mode 100644
index 000000000..14df56690
--- /dev/null
+++ b/tests/kms_histogram.c
@@ -0,0 +1,349 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: kms histogram
+ * Category: Display
+ * Description: Test to verify histogram features.
+ * Driver requirement: i915, xe
+ * Functionality: histogram
+ * Mega feature: Display
+ * Test category: functionality test
+ */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_vec.h"
+#ifdef HAVE_LIBGHE
+#include "ghe.h"
+#endif
+
+#define GLOBAL_HIST_DISABLE 0
+#define GLOBAL_HIST_ENABLE 1
+#define GLOBAL_HIST_DELAY 2
+#define FLIP_COUNT 20
+
+/**
+ * SUBTEST: global-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: global-color
+ * Description: Test to enable histogram, flip color fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: algo-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data and enhance pixels by
+ * multiplying by a pixel factor using algo
+ *
+ * SUBTEST: algo-color
+ * Description: Test to enable histogram, flip color fbs, wait for histogram event
+ * and then read the histogram data and enhance pixels by multiplying
+ * by a pixel factor using algo
+ */
+
+IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
+
+typedef struct data {
+ igt_display_t display;
+ int drm_fd;
+ igt_fb_t fb[5];
+} data_t;
+
+typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
+void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size);
+
+static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Enable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is enabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
+}
+
+static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Disable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is disabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
+}
+
+static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *plane;
+
+ disable_and_verify_global_histogram(data, pipe);
+
+ for_each_plane_on_pipe(&data->display, pipe, plane)
+ igt_plane_set_fb(plane, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_remove_fb(data->display.drm_fd, &data->fb[0]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[1]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[2]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[3]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[4]);
+}
+
+static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
+{
+ uint64_t blob_id;
+
+ blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
+ IGT_CRTC_GLOBAL_HISTOGRAM);
+ if (blob_id == 0)
+ return NULL;
+
+ return drmModeGetPropertyBlob(data->drm_fd, blob_id);
+}
+
+static void read_global_histogram(data_t *data, enum pipe pipe,
+ drmModePropertyBlobRes **hist_blob_ptr)
+{
+ uint32_t *histogram_ptr;
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
+ do {
+ global_hist_blob = get_global_histogram_data(data, pipe);
+ } while (global_hist_blob == NULL);
+ igt_reset_timeout();
+
+ *hist_blob_ptr = global_hist_blob;
+ histogram_ptr = (uint32_t *) global_hist_blob->data;
+ for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
+ igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
+}
+
+void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
+{
+ uint32_t i;
+
+ for (i = 0; i < size; i++) {
+ /* Displaying IET LUT */
+ igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
+ }
+ igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
+ dietfactor, size);
+}
+
+#ifdef HAVE_LIBGHE
+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
+ igt_output_t *output)
+{
+ struct globalhist_args *argsPtr =
+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
+
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
+ argsPtr->resolution_x = mode->hdisplay;
+ argsPtr->resolution_y = mode->vdisplay;
+
+ igt_debug("Making call to global histogram algorithm.\n");
+ set_histogram_data_bin(argsPtr);
+
+ return argsPtr;
+}
+
+static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
+ igt_output_t *output,
+ drmModePropertyBlobRes *global_hist_blob)
+{
+ struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
+
+ igt_assert(args);
+ igt_debug("Writing pixel factor blob.\n");
+
+ set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
+ ARRAY_SIZE(args->dietfactor));
+ free(args);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+#endif
+
+static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip monochrome fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 0, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 1, 1, &data->fb[1]));
+}
+
+static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip color fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.5, 0, 0.5, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 0, &data->fb[1]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 1, 0, &data->fb[2]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 1, &data->fb[3]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 1, &data->fb[4]));
+}
+
+static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
+{
+ igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
+{
+ int i;
+ struct udev_monitor *mon = igt_watch_uevents();
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ bool event_detected = false;
+ int fb_count = color_fb ? 5 : 2;
+
+ if (color_fb)
+ create_color_fbs(data, mode);
+ else
+ create_monochrome_fbs(data, mode);
+
+ flip_fb(data, pipe, output, &data->fb[0]);
+ enable_and_verify_global_histogram(data, pipe);
+
+ igt_flush_uevents(mon);
+ for (i = 1; i <= FLIP_COUNT; i++) {
+ flip_fb(data, pipe, output, &data->fb[i % fb_count]);
+
+ /* Check for histogram event on every flip and break the loop if detected. */
+ if (igt_global_histogram_event_detected(mon, 0)) {
+ event_detected = true;
+ break;
+ }
+ }
+
+ igt_cleanup_uevents(mon);
+ igt_assert_f(event_detected, "Histogram event not generated.\n");
+}
+
+static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
+ bool color_fb, test_t test_pixel_factor)
+{
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ prepare_pipe(data, pipe, output, color_fb);
+
+ read_global_histogram(data, pipe, &global_hist_blob);
+
+ if (test_pixel_factor)
+ test_pixel_factor(data, pipe, output, global_hist_blob);
+
+ drmModeFreePropertyBlob(global_hist_blob);
+ cleanup_pipe(data, pipe, output);
+}
+
+static void run_tests_for_global_histogram(data_t *data, bool color_fb,
+ test_t test_pixel_factor)
+{
+ enum pipe pipe;
+ igt_output_t *output;
+
+ for_each_connected_output(&data->display, output) {
+ for_each_pipe(&data->display, pipe) {
+ if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
+ continue;
+
+ igt_display_reset(&data->display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(&data->display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
+ run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
+ }
+ }
+}
+
+static void run_algo_test(data_t *data, bool color_fb)
+{
+#ifdef HAVE_LIBGHE
+ run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
+#else
+ igt_skip("Histogram algorithm library not found.\n");
+#endif
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ igt_require(data.display.is_atomic);
+ }
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data.");
+ igt_subtest_with_dynamic("global-basic")
+ run_tests_for_global_histogram(&data, false, NULL);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data.");
+ igt_subtest_with_dynamic("global-color")
+ run_tests_for_global_histogram(&data, true, NULL);
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-basic")
+ run_algo_test(&data, false);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-color")
+ run_algo_test(&data, true);
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 34b87b125..91044de84 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -35,6 +35,7 @@ test_progs = [
'kms_flip_event_leak',
'kms_force_connector_basic',
'kms_getfb',
+ 'kms_histogram',
'kms_hdmi_inject',
'kms_hdr',
'kms_invalid_mode',
@@ -379,6 +380,7 @@ extra_dependencies = {
'gem_eio': [ realtime ],
'gem_exec_balancer': [ lib_igt_perf ],
'gem_mmap_offset': [ libatomic ],
+ 'kms_histogram': [ libghe ],
'i915_pm_freq_mult': [ lib_igt_perf ],
'i915_pm_rc6_residency': [ lib_igt_perf ],
'perf': [ lib_igt_i915_perf ],
--
2.34.1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [PATCH i-g-t v3] tests/kms_histogram: Added IGT support to validate global histogram
2024-09-24 12:25 ` [PATCH i-g-t v2] " Mohammed Thasleem
2024-10-09 11:39 ` Modem, Bhanuprakash
2024-10-11 14:58 ` Kamil Konieczny
@ 2024-10-17 11:20 ` Mohammed Thasleem
2024-11-05 5:24 ` [PATCH i-g-t v4] " Mohammed Thasleem
2 siblings, 1 reply; 40+ messages in thread
From: Mohammed Thasleem @ 2024-10-17 11:20 UTC (permalink / raw)
To: igt-dev; +Cc: Mohammed Thasleem, Adarsh G M, Bhanuprakash Modem
The IGT changes included tests for enabling/disabling histogram.
Validating the histogram event generation and if any One such library
Global Histogram Enhancement(GHE) present, will feed the histogram to
the library, get the enhanced LUT data and feed it back to the KMD.
For histogram generation, black/white and color images are flipped.
Display histogram is a hardware functionality where a statistics for 'x'
number of frames is generated to form a histogram data. This is notified
to the user via histogram event. Compositor then upon sensing the histogram
event will read the histogram data from KMD via crtc property.
A library can be developed to take this generated histogram as an input and
apply some algorithm to generate an Image Enhancement(IET).
This is further fed back to the KMD via crtc property. KMD will feed this
bask to the hardware. Hardware will use this as a multiplicand factor to
multiply with the incoming pixels at the end of the pipe which is then
pushed onto the display.
One such library Global Histogram Enhancement(GHE) will take the histogram
as input and applied the algorithm to enhance the density and then return
the enhanced factor.
"This library can be located https://github.com/intel/ghe"
"KMD changes at https://patchwork.freedesktop.org/series/135793/"
TODO: Extend the tests for different formats/modifiers.
v2: Remove eDP restriction. (Vandita)
Update crtc property name. (Arun)
v3: Update discription and test names. (Kamil)
Remove warning message from meson build. (Kamil)
Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 23 +++
lib/igt_kms.h | 5 +
meson.build | 5 +
tests/kms_histogram.c | 349 ++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 2 +
5 files changed, 384 insertions(+)
create mode 100644 tests/kms_histogram.c
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index bb35d4b82..76d2612d0 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -702,6 +702,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_HISTOGRAM] = "Histogram_Enable",
+ [IGT_CRTC_GLOBAL_HISTOGRAM] = "Global Histogram",
+ [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "Global IET",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2587,6 +2590,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
+ if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
+ igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
+
pipe->out_fence_fd = -1;
}
@@ -5615,6 +5621,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
ARRAY_SIZE(props));
}
+/**
+ * igt_global_histogram_event_detected:
+ * @mon: A udev monitor initialized with #igt_watch_uevents
+ * @timeout_secs: How long to wait for a lease change event to occur.
+ *
+ * Detect if a global Histogram event was received since we last checked the monitor.
+ *
+ * Returns: true if a sysfs global Histogram event was received, false if we timed out
+ */
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
+{
+ const char *props[1] = {"HISTOGRAM"};
+ int expected_val = 1;
+
+ return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
+}
+
/**
* igt_flush_uevents:
* @mon: A udev monitor initialized with #igt_watch_uevents
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 2b26d2bbf..dfebd64b1 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -163,6 +163,9 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
IGT_NUM_CRTC_PROPS
};
@@ -1126,6 +1129,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
+
/**
* igt_vblank_after_eq:
* @a: First vblank sequence number.
diff --git a/meson.build b/meson.build
index 64f57f232..cd8d35145 100644
--- a/meson.build
+++ b/meson.build
@@ -195,6 +195,11 @@ else
chamelium = disabler()
endif
+libghe = dependency('libghe', required : false)
+if libghe.found()
+ config.set('HAVE_LIBGHE', 1)
+endif
+
build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
pthreads = dependency('threads')
diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
new file mode 100644
index 000000000..14df56690
--- /dev/null
+++ b/tests/kms_histogram.c
@@ -0,0 +1,349 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: kms histogram
+ * Category: Display
+ * Description: Test to verify histogram features.
+ * Driver requirement: i915, xe
+ * Functionality: histogram
+ * Mega feature: Display
+ * Test category: functionality test
+ */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_vec.h"
+#ifdef HAVE_LIBGHE
+#include "ghe.h"
+#endif
+
+#define GLOBAL_HIST_DISABLE 0
+#define GLOBAL_HIST_ENABLE 1
+#define GLOBAL_HIST_DELAY 2
+#define FLIP_COUNT 20
+
+/**
+ * SUBTEST: global-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: global-color
+ * Description: Test to enable histogram, flip color fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: algo-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data and enhance pixels by
+ * multiplying by a pixel factor using algo
+ *
+ * SUBTEST: algo-color
+ * Description: Test to enable histogram, flip color fbs, wait for histogram event
+ * and then read the histogram data and enhance pixels by multiplying
+ * by a pixel factor using algo
+ */
+
+IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
+
+typedef struct data {
+ igt_display_t display;
+ int drm_fd;
+ igt_fb_t fb[5];
+} data_t;
+
+typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
+void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size);
+
+static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Enable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is enabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
+}
+
+static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Disable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is disabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
+}
+
+static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *plane;
+
+ disable_and_verify_global_histogram(data, pipe);
+
+ for_each_plane_on_pipe(&data->display, pipe, plane)
+ igt_plane_set_fb(plane, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_remove_fb(data->display.drm_fd, &data->fb[0]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[1]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[2]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[3]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[4]);
+}
+
+static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
+{
+ uint64_t blob_id;
+
+ blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
+ IGT_CRTC_GLOBAL_HISTOGRAM);
+ if (blob_id == 0)
+ return NULL;
+
+ return drmModeGetPropertyBlob(data->drm_fd, blob_id);
+}
+
+static void read_global_histogram(data_t *data, enum pipe pipe,
+ drmModePropertyBlobRes **hist_blob_ptr)
+{
+ uint32_t *histogram_ptr;
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
+ do {
+ global_hist_blob = get_global_histogram_data(data, pipe);
+ } while (global_hist_blob == NULL);
+ igt_reset_timeout();
+
+ *hist_blob_ptr = global_hist_blob;
+ histogram_ptr = (uint32_t *) global_hist_blob->data;
+ for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
+ igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
+}
+
+void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
+{
+ uint32_t i;
+
+ for (i = 0; i < size; i++) {
+ /* Displaying IET LUT */
+ igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
+ }
+ igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
+ dietfactor, size);
+}
+
+#ifdef HAVE_LIBGHE
+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
+ igt_output_t *output)
+{
+ struct globalhist_args *argsPtr =
+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
+
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
+ argsPtr->resolution_x = mode->hdisplay;
+ argsPtr->resolution_y = mode->vdisplay;
+
+ igt_debug("Making call to global histogram algorithm.\n");
+ set_histogram_data_bin(argsPtr);
+
+ return argsPtr;
+}
+
+static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
+ igt_output_t *output,
+ drmModePropertyBlobRes *global_hist_blob)
+{
+ struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
+
+ igt_assert(args);
+ igt_debug("Writing pixel factor blob.\n");
+
+ set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
+ ARRAY_SIZE(args->dietfactor));
+ free(args);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+#endif
+
+static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip monochrome fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 0, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 1, 1, &data->fb[1]));
+}
+
+static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip color fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.5, 0, 0.5, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 0, &data->fb[1]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 1, 0, &data->fb[2]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 1, &data->fb[3]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 1, &data->fb[4]));
+}
+
+static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
+{
+ igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
+{
+ int i;
+ struct udev_monitor *mon = igt_watch_uevents();
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ bool event_detected = false;
+ int fb_count = color_fb ? 5 : 2;
+
+ if (color_fb)
+ create_color_fbs(data, mode);
+ else
+ create_monochrome_fbs(data, mode);
+
+ flip_fb(data, pipe, output, &data->fb[0]);
+ enable_and_verify_global_histogram(data, pipe);
+
+ igt_flush_uevents(mon);
+ for (i = 1; i <= FLIP_COUNT; i++) {
+ flip_fb(data, pipe, output, &data->fb[i % fb_count]);
+
+ /* Check for histogram event on every flip and break the loop if detected. */
+ if (igt_global_histogram_event_detected(mon, 0)) {
+ event_detected = true;
+ break;
+ }
+ }
+
+ igt_cleanup_uevents(mon);
+ igt_assert_f(event_detected, "Histogram event not generated.\n");
+}
+
+static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
+ bool color_fb, test_t test_pixel_factor)
+{
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ prepare_pipe(data, pipe, output, color_fb);
+
+ read_global_histogram(data, pipe, &global_hist_blob);
+
+ if (test_pixel_factor)
+ test_pixel_factor(data, pipe, output, global_hist_blob);
+
+ drmModeFreePropertyBlob(global_hist_blob);
+ cleanup_pipe(data, pipe, output);
+}
+
+static void run_tests_for_global_histogram(data_t *data, bool color_fb,
+ test_t test_pixel_factor)
+{
+ enum pipe pipe;
+ igt_output_t *output;
+
+ for_each_connected_output(&data->display, output) {
+ for_each_pipe(&data->display, pipe) {
+ if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
+ continue;
+
+ igt_display_reset(&data->display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(&data->display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
+ run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
+ }
+ }
+}
+
+static void run_algo_test(data_t *data, bool color_fb)
+{
+#ifdef HAVE_LIBGHE
+ run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
+#else
+ igt_skip("Histogram algorithm library not found.\n");
+#endif
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ igt_require(data.display.is_atomic);
+ }
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data.");
+ igt_subtest_with_dynamic("global-basic")
+ run_tests_for_global_histogram(&data, false, NULL);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data.");
+ igt_subtest_with_dynamic("global-color")
+ run_tests_for_global_histogram(&data, true, NULL);
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-basic")
+ run_algo_test(&data, false);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-color")
+ run_algo_test(&data, true);
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 34b87b125..91044de84 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -35,6 +35,7 @@ test_progs = [
'kms_flip_event_leak',
'kms_force_connector_basic',
'kms_getfb',
+ 'kms_histogram',
'kms_hdmi_inject',
'kms_hdr',
'kms_invalid_mode',
@@ -379,6 +380,7 @@ extra_dependencies = {
'gem_eio': [ realtime ],
'gem_exec_balancer': [ lib_igt_perf ],
'gem_mmap_offset': [ libatomic ],
+ 'kms_histogram': [ libghe ],
'i915_pm_freq_mult': [ lib_igt_perf ],
'i915_pm_rc6_residency': [ lib_igt_perf ],
'perf': [ lib_igt_i915_perf ],
--
2.34.1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* ✓ CI.xeBAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev3)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (9 preceding siblings ...)
2024-10-17 11:12 ` [PATCH i-g-t] tests/kms_histogram: Added IGT support to validate global histogram Mohammed Thasleem
@ 2024-10-17 13:23 ` Patchwork
2024-10-17 13:26 ` ✓ Fi.CI.BAT: " Patchwork
` (13 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-10-17 13:23 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2174 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev3)
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8078_BAT -> XEIGTPW_11931_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11931_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate:
- bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#2687])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-adlp-7: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#2874]) +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
Build changes
-------------
* IGT: IGT_8078 -> IGTPW_11931
* Linux: xe-2075-81420006f741f9783adea6ab5620ce54697f1b20 -> xe-2076-94d33b0e7302cf6561e78ce47585f6f67e246206
IGTPW_11931: 11931
IGT_8078: 175bddf20141ccad40130719ca46bde5140f4872 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2075-81420006f741f9783adea6ab5620ce54697f1b20: 81420006f741f9783adea6ab5620ce54697f1b20
xe-2076-94d33b0e7302cf6561e78ce47585f6f67e246206: 94d33b0e7302cf6561e78ce47585f6f67e246206
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/index.html
[-- Attachment #2: Type: text/html, Size: 2784 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev3)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (10 preceding siblings ...)
2024-10-17 13:23 ` ✓ CI.xeBAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev3) Patchwork
@ 2024-10-17 13:26 ` Patchwork
2024-10-17 15:35 ` ✗ Fi.CI.IGT: failure " Patchwork
` (12 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-10-17 13:26 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2744 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev3)
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from IGT_8078 -> IGTPW_11931
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11931 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live:
- {bat-arlh-3}: [ABORT][1] ([i915#12133]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8078/bat-arlh-3/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/bat-arlh-3/igt@i915_selftest@live.html
- bat-arls-2: [ABORT][3] ([i915#12133]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8078/bat-arls-2/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/bat-arls-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- {bat-arlh-3}: [ABORT][5] ([i915#12061]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8078/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arls-2: [ABORT][7] ([i915#12061]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8078/bat-arls-2/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/bat-arls-2/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8078 -> IGTPW_11931
* Linux: CI_DRM_15543 -> CI_DRM_15544
CI-20190529: 20190529
CI_DRM_15543: 81420006f741f9783adea6ab5620ce54697f1b20 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15544: 94d33b0e7302cf6561e78ce47585f6f67e246206 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11931: 11931
IGT_8078: 175bddf20141ccad40130719ca46bde5140f4872 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/index.html
[-- Attachment #2: Type: text/html, Size: 3555 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev3)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (11 preceding siblings ...)
2024-10-17 13:26 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-10-17 15:35 ` Patchwork
2024-10-18 1:15 ` ✗ CI.xeFULL: " Patchwork
` (11 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-10-17 15:35 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 98882 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev3)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15544_full -> IGTPW_11931_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11931_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11931_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/index.html
Participating hosts (8 -> 7)
------------------------------
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11931_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_color@ctm-signed:
- shard-tglu: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-tglu-6/igt@kms_color@ctm-signed.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-9/igt@kms_color@ctm-signed.html
* {igt@kms_histogram@algo-basic} (NEW):
- shard-tglu: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-7/igt@kms_histogram@algo-basic.html
- shard-mtlp: NOTRUN -> [SKIP][4] +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-1/igt@kms_histogram@algo-basic.html
* {igt@kms_histogram@algo-color} (NEW):
- shard-dg2: NOTRUN -> [SKIP][5] +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_histogram@algo-color.html
- shard-dg1: NOTRUN -> [SKIP][6] +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-17/igt@kms_histogram@algo-color.html
* {igt@kms_histogram@global-basic} (NEW):
- shard-rkl: NOTRUN -> [SKIP][7] +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-2/igt@kms_histogram@global-basic.html
* igt@kms_sequence@get-idle:
- shard-mtlp: NOTRUN -> [INCOMPLETE][8] +1 other test incomplete
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-8/igt@kms_sequence@get-idle.html
New tests
---------
New tests have been introduced between CI_DRM_15544_full and IGTPW_11931_full:
### New IGT tests (13) ###
* igt@kms_concurrent@multi-plane-atomic-lowres@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.41] s
* igt@kms_histogram@algo-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@algo-color:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-basic:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-color:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_invalid_mode@zero-hdisplay@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_invalid_mode@zero-hdisplay@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_vblank@query-forked-hang@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [6.52] s
* igt@kms_vblank@query-forked-hang@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [5.98] s
* igt@kms_vblank@query-forked@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [2.28] s
* igt@kms_vblank@query-forked@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [2.20] s
* igt@kms_vblank@query-idle@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [2.24] s
* igt@kms_vblank@query-idle@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
Known issues
------------
Here are the changes found in IGTPW_11931_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][9] ([i915#11814] / [i915#11815])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@fbdev@read:
- shard-dg2: [PASS][11] -> [SKIP][12] ([i915#2582])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-5/igt@fbdev@read.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@fbdev@read.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@gem_basic@multigpu-create-close.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][17] ([i915#9846])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-8/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#6335])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#6335])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: [PASS][21] -> [FAIL][22] ([i915#12027] / [i915#12031])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][23] ([i915#1099])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb2/igt@gem_ctx_persistence@engines-cleanup.html
* igt@gem_ctx_persistence@hostile:
- shard-dg2: NOTRUN -> [FAIL][24] ([i915#11980])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-8/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][25] ([i915#10030] / [i915#7975] / [i915#8213])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-8/igt@gem_eio@hibernate.html
- shard-rkl: NOTRUN -> [ABORT][26] ([i915#7975] / [i915#8213])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-2/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg2: [PASS][27] -> [FAIL][28] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-3/igt@gem_eio@reset-stress.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@gem_eio@reset-stress.html
* igt@gem_eio@wait-wedge-1us:
- shard-dg1: [PASS][29] -> [DMESG-WARN][30] ([i915#4391] / [i915#4423])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg1-17/igt@gem_eio@wait-wedge-1us.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-16/igt@gem_eio@wait-wedge-1us.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [PASS][31] -> [DMESG-WARN][32] ([i915#12412])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-mtlp-7/igt@gem_exec_balancer@nop.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-7/igt@gem_exec_balancer@nop.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][34] -> [ABORT][35] ([i915#11713])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-tglu-9/igt@gem_exec_big@single.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-3/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#6334]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-14/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-9/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) +2 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +5 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-12/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-5/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-3/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-9/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-16/igt@gem_mmap_wc@read.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-1/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@create-regular-buffer:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#4270])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-2/igt@gem_pxp@create-regular-buffer.html
* igt@gem_readwrite@read-write:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-11/igt@gem_readwrite@read-write.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3282]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-18/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-1/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][61] ([i915#5190] / [i915#8428]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4879])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#2856]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-8/igt@gen9_exec_parse@allowed-all.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#2527]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-12/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#2856]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-8/igt@gen9_exec_parse@basic-rejected.html
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@gen9_exec_parse@basic-rejected.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#6412])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@i915_module_load@resize-bar.html
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#7178])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-17/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#6412])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-8/igt@i915_module_load@resize-bar.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#6412])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-7/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-dg1: [PASS][75] -> [FAIL][76] ([i915#3591]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#11681]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-7/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4387])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#4387])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4387])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-18/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8437])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][82] ([i915#9311]) +1 other test dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-2/igt@i915_selftest@mock.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][83] ([i915#9311]) +1 other test dmesg-warn
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-7/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][84] ([i915#9311]) +1 other test dmesg-warn
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-7/igt@i915_selftest@mock@memory_region.html
- shard-dg1: NOTRUN -> [DMESG-WARN][85] ([i915#9311]) +1 other test dmesg-warn
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-12/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#5190])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4212]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4212])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-15/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4212]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-2/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#8709]) +7 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#8709]) +11 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#5286]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#4538] / [i915#5286]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#5286]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#5286])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#3638])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-3/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#9197]) +6 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][98] +7 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#4538] / [i915#5190]) +6 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#5190])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6187])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#10307] / [i915#6095]) +170 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#6095]) +14 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-10/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6095]) +19 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#6095]) +70 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#6095]) +115 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-14/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#7213]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/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][110] ([i915#4087]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][111] +11 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-8/igt@kms_chamelium_color@degamma.html
- shard-rkl: NOTRUN -> [SKIP][112] +14 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#7828]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-12/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#7828]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-2/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#7828]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#7828]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#7828]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#9424])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-8/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#9424])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#3116] / [i915#3299])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-10/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#3555]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3555]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3555]) +6 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#3555]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3555] / [i915#8814]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#9809]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-snb: [PASS][127] -> [FAIL][128] ([i915#2346])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3804])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#1257])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_dp_aux_dev.html
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#1257])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@kms_dp_aux_dev.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#1257])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-15/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#8812])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#8812])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#9934]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-19/igt@kms_flip@2x-plain-flip-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#3637])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-4/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a3:
- shard-dg2: [PASS][137] -> [FAIL][138] ([i915#2122]) +1 other test fail
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-6/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a3.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [FAIL][139] ([i915#2122]) +2 other tests fail
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][140] ([i915#11961]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a4:
- shard-dg1: NOTRUN -> [INCOMPLETE][141] ([i915#6113])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-18/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a4.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-rkl: [PASS][142] -> [FAIL][143] ([i915#2122])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [PASS][144] -> [FAIL][145] ([i915#2122]) +9 other tests fail
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb2/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb1/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#2672] / [i915#3555]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#2672] / [i915#3555]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#2672] / [i915#8813]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#2672]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#2587] / [i915#2672]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#2672] / [i915#3555] / [i915#5190])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#2672]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#8708]) +12 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#1825]) +19 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-snb: [PASS][156] -> [SKIP][157] +5 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][158] +14 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][159] +26 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [PASS][160] -> [SKIP][161] ([i915#5354]) +5 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#3458]) +8 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#3023]) +10 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#5354]) +32 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8708]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#3458]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#1825]) +18 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#8708]) +11 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8228]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_hdr@bpc-switch-dpms.html
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8228]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8228]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-14/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8228])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html
* {igt@kms_histogram@global-color} (NEW):
- shard-snb: NOTRUN -> [SKIP][173] +103 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb2/igt@kms_histogram@global-color.html
* igt@kms_lease@lease-revoke:
- shard-dg2: [PASS][174] -> [SKIP][175] ([i915#9197]) +22 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-3/igt@kms_lease@lease-revoke.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_lease@lease-revoke.html
* igt@kms_plane_alpha_blend@coverage-7efc:
- shard-dg2: [PASS][176] -> [SKIP][177] ([i915#7294])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-10/igt@kms_plane_alpha_blend@coverage-7efc.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-7efc.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][178] ([i915#8292])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-dg2: [PASS][179] -> [SKIP][180] ([i915#8152] / [i915#9423])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-1/igt@kms_plane_scaling@invalid-parameters.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#12247]) +9 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#12247]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#12247]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#12247]) +4 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- shard-dg2: [PASS][185] -> [SKIP][186] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- shard-dg2: [PASS][187] -> [SKIP][188] ([i915#12247] / [i915#8152])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-dg2: [PASS][189] -> [SKIP][190] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- shard-dg2: [PASS][191] -> [SKIP][192] ([i915#12247]) +5 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- shard-dg2: [PASS][193] -> [SKIP][194] ([i915#8152])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#9292])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-dg2: [PASS][196] -> [SKIP][197] ([i915#9293])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-4/igt@kms_pm_dc@dc5-dpms-negative.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#9685]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][199] -> [SKIP][200] ([i915#9519]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#9519])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9519])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#9519])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][204] -> [SKIP][205] ([i915#9519])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#6524] / [i915#6805])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#6524])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#11520]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#11520]) +3 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-snb: NOTRUN -> [SKIP][210] ([i915#11520]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#11520]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-19/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#12316])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#11520])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#1072] / [i915#9732]) +11 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-13/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#1072] / [i915#9732]) +16 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_psr@fbc-psr-cursor-plane-move.html
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#1072] / [i915#9732]) +9 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-7/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#9688]) +8 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-8/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#9732]) +4 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-6/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#9685]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-18/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#11131] / [i915#5190])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#11131])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_setmode@basic:
- shard-dg1: [PASS][222] -> [FAIL][223] ([i915#5465]) +2 other tests fail
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg1-16/igt@kms_setmode@basic.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-19/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [PASS][224] -> [FAIL][225] ([i915#5465]) +1 other test fail
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8809] / [i915#8823])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#2437] / [i915#9412])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-10/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#2437] / [i915#9412])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-7/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#2437] / [i915#9412])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-13/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [PASS][230] -> [FAIL][231] ([i915#11943])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-mtlp-7/igt@perf_pmu@all-busy-idle-check-all.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#3291] / [i915#3708])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3291] / [i915#3708]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@prime_vgem@basic-write.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#3708])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-12/igt@prime_vgem@basic-write.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#10216] / [i915#3708])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-8/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#3708])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-8/igt@prime_vgem@fence-flip-hang.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][237] ([i915#7297]) -> [PASS][238] +1 other test pass
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@gem_ccs@suspend-resume.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-5/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_engines@invalid-engines:
- shard-tglu: [FAIL][239] ([i915#12027] / [i915#12031]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-tglu-4/igt@gem_ctx_engines@invalid-engines.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-2/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [FAIL][241] ([i915#11980]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-tglu-4/igt@gem_ctx_persistence@hostile.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-7/igt@gem_ctx_persistence@hostile.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][243] ([i915#2846]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][245] ([i915#2842]) -> [PASS][246] +1 other test pass
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][247] ([i915#9820]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [ABORT][249] ([i915#9820]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [ABORT][251] ([i915#9820]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][253] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][255] -> [PASS][256] +1 other test pass
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg2: [SKIP][257] ([i915#9197]) -> [PASS][258] +22 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_color@ctm-max:
- shard-dg2: [SKIP][259] ([i915#5354]) -> [PASS][260] +3 other tests pass
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_color@ctm-max.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-5/igt@kms_color@ctm-max.html
* igt@kms_flip@blocking-wf_vblank:
- shard-snb: [FAIL][261] ([i915#10826] / [i915#2122]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb1/igt@kms_flip@blocking-wf_vblank.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb7/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-vga1:
- shard-snb: [FAIL][263] ([i915#10826]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb1/igt@kms_flip@blocking-wf_vblank@a-vga1.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb7/igt@kms_flip@blocking-wf_vblank@a-vga1.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a1:
- shard-snb: [FAIL][265] ([i915#2122]) -> [PASS][266] +8 other tests pass
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb1/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb7/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [INCOMPLETE][267] ([i915#4839] / [i915#6113]) -> [PASS][268] +1 other test pass
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg1-16/igt@kms_flip@flip-vs-suspend.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-16/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-edp1:
- shard-mtlp: [INCOMPLETE][269] ([i915#10056] / [i915#6113]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-mtlp-2/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-8/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html
* igt@kms_flip@flip-vs-suspend@d-edp1:
- shard-mtlp: [INCOMPLETE][271] ([i915#6113]) -> [PASS][272] +2 other tests pass
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-mtlp-7/igt@kms_flip@flip-vs-suspend@d-edp1.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-1/igt@kms_flip@flip-vs-suspend@d-edp1.html
* igt@kms_flip@plain-flip-ts-check:
- shard-rkl: [FAIL][273] ([i915#2122]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-3/igt@kms_flip@plain-flip-ts-check.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-3/igt@kms_flip@plain-flip-ts-check.html
- shard-dg1: [FAIL][275] ([i915#2122]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg1-12/igt@kms_flip@plain-flip-ts-check.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-16/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-mtlp: [FAIL][277] ([i915#2122]) -> [PASS][278] +1 other test pass
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip@plain-flip-ts-check@b-edp1:
- shard-mtlp: [FAIL][279] ([i915#11989]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check@b-edp1.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check@b-edp1.html
* igt@kms_flip@plain-flip-ts-check@b-hdmi-a2:
- shard-rkl: [FAIL][281] ([i915#11989]) -> [PASS][282] +1 other test pass
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-3/igt@kms_flip@plain-flip-ts-check@b-hdmi-a2.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-3/igt@kms_flip@plain-flip-ts-check@b-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check@d-hdmi-a1:
- shard-tglu: [FAIL][283] ([i915#2122]) -> [PASS][284] +7 other tests pass
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-tglu-4/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-7/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-dg2: [SKIP][285] ([i915#3555]) -> [PASS][286] +2 other tests pass
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_flip_tiling@flip-change-tiling.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-snb: [SKIP][287] -> [PASS][288] +8 other tests pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-dg2: [SKIP][289] ([i915#7294]) -> [PASS][290] +2 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-max.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers:
- shard-dg2: [SKIP][291] ([i915#8152] / [i915#9423]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- shard-dg2: [SKIP][293] ([i915#12247]) -> [PASS][294] +8 other tests pass
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- shard-dg2: [SKIP][295] ([i915#8152]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg2: [SKIP][297] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-dg2: [SKIP][299] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- shard-dg2: [SKIP][301] ([i915#12247] / [i915#8152]) -> [PASS][302] +1 other test pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][303] ([i915#9519]) -> [PASS][304] +3 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_setmode@basic:
- shard-rkl: [FAIL][305] ([i915#12317]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-3/igt@kms_setmode@basic.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-2/igt@kms_setmode@basic.html
#### Warnings ####
* igt@gem_mmap_wc@write-read:
- shard-dg1: [INCOMPLETE][307] ([i915#2295]) -> [SKIP][308] ([i915#4083])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg1-14/igt@gem_mmap_wc@write-read.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-13/igt@gem_mmap_wc@write-read.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: [SKIP][309] ([i915#9197]) -> [SKIP][310] ([i915#9531])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: [SKIP][311] ([i915#9197]) -> [SKIP][312] ([i915#1769] / [i915#3555])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][313] ([i915#9197]) -> [SKIP][314] +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][315] -> [SKIP][316] ([i915#9197]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2: [SKIP][317] ([i915#5190] / [i915#9197]) -> [SKIP][318] ([i915#4538] / [i915#5190]) +5 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: [SKIP][319] ([i915#4538] / [i915#5190]) -> [SKIP][320] ([i915#5190] / [i915#9197]) +4 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][321] ([i915#9197]) -> [SKIP][322] ([i915#10307] / [i915#6095]) +5 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-dg2: [SKIP][323] ([i915#10307] / [i915#6095]) -> [SKIP][324] ([i915#9197]) +5 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][325] ([i915#9197]) -> [SKIP][326] ([i915#12313])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][327] ([i915#12313]) -> [SKIP][328] ([i915#9197]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_content_protection@content-type-change:
- shard-snb: [INCOMPLETE][329] ([i915#8816]) -> [SKIP][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb1/igt@kms_content_protection@content-type-change.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: [SKIP][331] ([i915#9197]) -> [SKIP][332] ([i915#3299])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][333] ([i915#7118]) -> [SKIP][334] ([i915#9197])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-1/igt@kms_content_protection@srm.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][335] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][336] ([i915#7118] / [i915#9424])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-10/igt@kms_content_protection@type1.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_content_protection@type1.html
- shard-snb: [SKIP][337] -> [INCOMPLETE][338] ([i915#8816])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-snb2/igt@kms_content_protection@type1.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-snb1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg1: [SKIP][339] ([i915#11453]) -> [SKIP][340] ([i915#11453] / [i915#4423])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: [SKIP][341] ([i915#9197]) -> [SKIP][342] ([i915#11453]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: [SKIP][343] ([i915#11453]) -> [SKIP][344] ([i915#9197]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-dg2: [SKIP][345] ([i915#5354]) -> [SKIP][346] ([i915#9197])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: [SKIP][347] ([i915#9197]) -> [SKIP][348] ([i915#5354]) +2 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: [SKIP][349] ([i915#9197]) -> [SKIP][350] ([i915#8588])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: [SKIP][351] ([i915#3840] / [i915#9688]) -> [SKIP][352] ([i915#9197])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: [SKIP][353] ([i915#3840]) -> [SKIP][354] ([i915#9197])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: [SKIP][355] ([i915#3555] / [i915#3840]) -> [SKIP][356] ([i915#9197])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-3/igt@kms_dsc@dsc-with-formats.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2: [INCOMPLETE][357] ([i915#4839] / [i915#6113]) -> [SKIP][358] ([i915#5354])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: [SKIP][359] ([i915#3555] / [i915#5190]) -> [SKIP][360] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][361] ([i915#5354]) -> [SKIP][362] ([i915#8708]) +4 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][363] ([i915#3458]) -> [SKIP][364] ([i915#5354]) +4 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][365] ([i915#10433] / [i915#3458]) -> [SKIP][366] ([i915#3458])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][367] ([i915#3458]) -> [SKIP][368] ([i915#10433] / [i915#3458]) +3 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg2: [SKIP][369] ([i915#8708]) -> [SKIP][370] ([i915#5354]) +5 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][371] ([i915#5354]) -> [SKIP][372] ([i915#3458]) +10 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [SKIP][373] ([i915#9197]) -> [SKIP][374] ([i915#3555] / [i915#8228])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_hdr@bpc-switch-suspend.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][375] ([i915#4070] / [i915#4816]) -> [SKIP][376] ([i915#4816])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: [SKIP][377] ([i915#6301]) -> [SKIP][378] ([i915#9197])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-dg2: [SKIP][379] ([i915#12247] / [i915#9423]) -> [SKIP][380] ([i915#12247] / [i915#8152] / [i915#9423])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg2: [SKIP][381] ([i915#12247]) -> [SKIP][382] ([i915#12247] / [i915#8152])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][383] ([i915#3361]) -> [SKIP][384] ([i915#4281])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][385] ([i915#3828]) -> [SKIP][386] ([i915#9340])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: [SKIP][387] ([i915#6524]) -> [INCOMPLETE][388] ([i915#2295])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-tglu-6/igt@kms_prime@basic-modeset-hybrid.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-tglu-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: [SKIP][389] ([i915#9197]) -> [SKIP][390] ([i915#11131])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_rotation_crc@bad-tiling.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-10/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: [SKIP][391] ([i915#5190] / [i915#9197]) -> [SKIP][392] ([i915#5190])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2: [SKIP][393] ([i915#5190]) -> [SKIP][394] ([i915#5190] / [i915#9197])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: [SKIP][395] ([i915#11131]) -> [SKIP][396] ([i915#9197])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg2: [SKIP][397] ([i915#9197]) -> [SKIP][398] ([i915#3555])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_scaling_modes@scaling-mode-center.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-3/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: [SKIP][399] ([i915#9197]) -> [SKIP][400] ([i915#9906])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15544/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-drrs.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-drrs.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[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#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943
[i915#11961]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12317]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12317
[i915#12412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12412
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[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#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3558
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[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#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[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#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[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#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[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#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846
[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_8078 -> IGTPW_11931
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15544: 94d33b0e7302cf6561e78ce47585f6f67e246206 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11931: 11931
IGT_8078: 175bddf20141ccad40130719ca46bde5140f4872 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11931/index.html
[-- Attachment #2: Type: text/html, Size: 125006 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev3)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (12 preceding siblings ...)
2024-10-17 15:35 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-18 1:15 ` Patchwork
2024-11-05 6:59 ` ✓ Fi.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev4) Patchwork
` (10 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-10-18 1:15 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 67774 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev3)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8078_full -> XEIGTPW_11931_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11931_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11931_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11931_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@test-cursor@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][1] +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-7/igt@kms_async_flips@test-cursor@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][2] -> [DMESG-WARN][3] +1 other test dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* {igt@kms_histogram@algo-basic} (NEW):
- {shard-bmg}: NOTRUN -> [SKIP][4] +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-8/igt@kms_histogram@algo-basic.html
- shard-dg2-set2: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@kms_histogram@algo-basic.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-lnl: [PASS][6] -> [FAIL][7] +1 other test fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-8/igt@kms_psr@fbc-psr-sprite-plane-move.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-7/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][8] +1 other test timeout
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-463/igt@xe_live_ktest@xe_bo.html
* igt@xe_vm@mixed-userptr-binds-3145728:
- shard-lnl: [PASS][9] -> [INCOMPLETE][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-6/igt@xe_vm@mixed-userptr-binds-3145728.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@xe_vm@mixed-userptr-binds-3145728.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- {shard-bmg}: [SKIP][11] ([Intel XE#367]) -> [SKIP][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_cursor_crc@cursor-onscreen-128x128:
- {shard-bmg}: [PASS][13] -> [SKIP][14] +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-128x128.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- {shard-bmg}: [PASS][15] -> [FAIL][16] +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- {shard-bmg}: [SKIP][17] ([Intel XE#2763]) -> [SKIP][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_rotation_crc@primary-rotation-90:
- {shard-bmg}: [SKIP][19] ([Intel XE#2329]) -> [SKIP][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-90.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html
New tests
---------
New tests have been introduced between XEIGT_8078_full and XEIGTPW_11931_full:
### New IGT tests (4) ###
* igt@kms_histogram@algo-basic:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@algo-color:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-basic:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-color:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_11931_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#316])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-433/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +6 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2191])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1512])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2423] / [i915#2575])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2907])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1195] / [Intel XE#1727])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1195]) +2 other tests incomplete
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +62 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#314]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#306])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-4/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#306])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-3/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#373]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#307])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#599])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#308]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#323]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#1475]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#455]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#703])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#301]) +6 other tests fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
- shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#886]) +2 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-433/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [PASS][56] -> [FAIL][57] ([Intel XE#301])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1401] / [Intel XE#1745])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1401])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([i915#5274])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#651]) +15 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2890])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2-set2: [PASS][63] -> [SKIP][64] ([Intel XE#2890]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#656]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#651])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#658])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2351] / [Intel XE#2890])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#653]) +18 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#346])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][71] -> [ABORT][72] ([Intel XE#3111]) +1 other test abort
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-464/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3:
- shard-lnl: [PASS][73] -> [DMESG-WARN][74] ([Intel XE#324]) +2 other tests dmesg-warn
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#616]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-433/igt@kms_plane_cursor@viewport.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#870])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1129]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1439])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-lnl: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#1620] / [Intel XE#2864])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-3/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-68:
- shard-lnl: [PASS][81] -> [DMESG-FAIL][82] ([Intel XE#1620] / [Intel XE#2990])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-3/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-lnl: [PASS][83] -> [DMESG-FAIL][84] ([Intel XE#1620])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-3/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-lnl: [PASS][85] -> [DMESG-WARN][86] ([Intel XE#1620] / [Intel XE#2042]) +1 other test dmesg-warn
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-7/igt@kms_pm_rpm@system-suspend-modeset.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_pm_rpm@universal-planes@plane-41:
- shard-lnl: [PASS][87] -> [DMESG-WARN][88] ([Intel XE#1620])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-4/igt@kms_pm_rpm@universal-planes@plane-41.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-41.html
* igt@kms_pm_rpm@universal-planes@plane-50:
- shard-lnl: [PASS][89] -> [DMESG-WARN][90] ([Intel XE#2990])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-4/igt@kms_pm_rpm@universal-planes@plane-50.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-50.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2893])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1489]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#1122])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1406])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-4/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#2948]) +1 other test fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@psr2-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-432/igt@kms_psr@psr2-dpms.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1127])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#330])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [PASS][100] -> [FAIL][101] ([Intel XE#2443]) +1 other test fail
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-5/igt@kms_vrr@flip-basic-fastset.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1123])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1126])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#2667])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-3/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-3/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_eudebug_online@resume-one:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2905])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-beng-large-cm:
- shard-dg2-set2: [PASS][107] -> [SKIP][108] ([Intel XE#1130]) +17 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-432/igt@xe_evict@evict-beng-large-cm.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][109] -> [TIMEOUT][110] ([Intel XE#1473] / [Intel XE#402])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#688])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-4/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1130]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1392])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate:
- shard-lnl: [PASS][114] -> [FAIL][115] ([Intel XE#2754])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-6/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-5/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#288]) +14 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-463/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_reset@virtual-close-fd:
- shard-dg2-set2: [PASS][117] -> [FAIL][118] ([Intel XE#1081])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-463/igt@xe_exec_reset@virtual-close-fd.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@xe_exec_reset@virtual-close-fd.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2905]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2833])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-3/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_oa@mmio-triggered-reports:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2541]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-463/igt@xe_oa@mmio-triggered-reports.html
- shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#2249])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@rcs-0:
- shard-lnl: NOTRUN -> [FAIL][124] ([Intel XE#2249])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@xe_oa@mmio-triggered-reports@rcs-0.html
* igt@xe_peer2peer@write:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1061])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2284] / [Intel XE#366])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-basic:
- shard-dg2-set2: [PASS][127] -> [ABORT][128] ([Intel XE#1358] / [Intel XE#1794])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-463/igt@xe_pm@s2idle-basic.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-432/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [PASS][129] -> [ABORT][130] ([Intel XE#1358])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#944]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][132] ([Intel XE#2919])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [FAIL][133] -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-433/igt@core_setmaster@master-drop-set-root.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: [SKIP][135] ([Intel XE#664]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-3/igt@kms_async_flips@test-cursor.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-7/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- {shard-bmg}: [SKIP][137] ([Intel XE#2231]) -> [PASS][138] +1 other test pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
- shard-dg2-set2: [SKIP][139] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-432/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][141] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][143] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][145] ([Intel XE#2423] / [i915#2575]) -> [PASS][146] +10 other tests pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-433/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-flip-before-cursor-toggle:
- {shard-bmg}: [SKIP][147] -> [PASS][148] +14 other tests pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-2/igt@kms_cursor_legacy@short-flip-before-cursor-toggle.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-2/igt@kms_cursor_legacy@short-flip-before-cursor-toggle.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- {shard-bmg}: [FAIL][149] ([Intel XE#301]) -> [PASS][150] +2 other tests pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- {shard-bmg}: [FAIL][151] ([Intel XE#2882]) -> [PASS][152] +1 other test pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-4/igt@kms_flip@basic-flip-vs-wf_vblank.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@plain-flip-ts-check@c-edp1:
- shard-lnl: [FAIL][153] ([Intel XE#886]) -> [PASS][154] +5 other tests pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-3/igt@kms_flip@plain-flip-ts-check@c-edp1.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@kms_flip@plain-flip-ts-check@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- {shard-bmg}: [SKIP][155] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][156] +1 other test pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][157] ([Intel XE#2890]) -> [PASS][158] +2 other tests pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_plane@plane-position-covered@pipe-b-plane-1:
- shard-lnl: [DMESG-WARN][159] ([Intel XE#324]) -> [PASS][160] +3 other tests pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html
* igt@kms_plane@plane-position-hole@pipe-a-plane-4:
- shard-lnl: [DMESG-FAIL][161] ([Intel XE#324]) -> [PASS][162] +2 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-7/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html
* igt@kms_plane_alpha_blend@constant-alpha-mid:
- {shard-bmg}: [SKIP][163] ([Intel XE#829]) -> [PASS][164] +1 other test pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-mid.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-7/igt@kms_plane_alpha_blend@constant-alpha-mid.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][165] ([Intel XE#718]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-lnl: [INCOMPLETE][167] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-4/igt@kms_pm_rpm@universal-planes-dpms.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-77:
- shard-lnl: [DMESG-FAIL][169] ([Intel XE#1620]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-4/igt@kms_pm_rpm@universal-planes-dpms@plane-77.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms@plane-77.html
* igt@kms_prop_blob@basic:
- {shard-bmg}: [SKIP][171] ([Intel XE#3007]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-2/igt@kms_prop_blob@basic.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-7/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-lnl: [FAIL][173] ([Intel XE#2948]) -> [PASS][174] +1 other test pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-3/igt@kms_psr@psr2-cursor-plane-onoff.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-dpms:
- shard-lnl: [FAIL][175] ([Intel XE#1649]) -> [PASS][176] +1 other test pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-8/igt@kms_psr@psr2-dpms.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@kms_psr@psr2-dpms.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][177] ([Intel XE#2883]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
* igt@kms_vblank@wait-forked-busy-hang@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][179] ([Intel XE#1195]) -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-436/igt@kms_vblank@wait-forked-busy-hang@pipe-a-dp-4.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_vblank@wait-forked-busy-hang@pipe-a-dp-4.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][181] ([Intel XE#1473]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-threads-large:
- {shard-bmg}: [TIMEOUT][183] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-2/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_basic@many-basic-defer-bind:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1130]) -> [PASS][186] +18 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@xe_exec_basic@many-basic-defer-bind.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-432/igt@xe_exec_basic@many-basic-defer-bind.html
* igt@xe_exec_compute_mode@once-userptr-invalidate:
- shard-lnl: [FAIL][187] ([Intel XE#2754]) -> [PASS][188] +1 other test pass
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-7/igt@xe_exec_compute_mode@once-userptr-invalidate.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@xe_exec_compute_mode@once-userptr-invalidate.html
* igt@xe_exec_threads@threads-rebind-bindexecqueue:
- shard-lnl: [INCOMPLETE][189] ([Intel XE#1169]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-6/igt@xe_exec_threads@threads-rebind-bindexecqueue.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-6/igt@xe_exec_threads@threads-rebind-bindexecqueue.html
* igt@xe_module_load@reload-no-display:
- {shard-bmg}: [FAIL][191] -> [PASS][192] +1 other test pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-2/igt@xe_module_load@reload-no-display.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-2/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- {shard-bmg}: [INCOMPLETE][193] ([Intel XE#1616]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][195] ([Intel XE#958]) -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_spin_batch@spin-all:
- {shard-bmg}: [SKIP][197] ([Intel XE#1130]) -> [PASS][198] +29 other tests pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-bmg-2/igt@xe_spin_batch@spin-all.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-bmg-7/igt@xe_spin_batch@spin-all.html
#### Warnings ####
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][199] ([Intel XE#316]) -> [SKIP][200] ([Intel XE#2890])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-90.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][201] ([Intel XE#2890]) -> [SKIP][202] ([Intel XE#316])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][203] ([Intel XE#316]) -> [SKIP][204] ([Intel XE#2351] / [Intel XE#2890])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][205] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][206] ([Intel XE#607])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][207] ([Intel XE#1124]) -> [SKIP][208] ([Intel XE#2890])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][209] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][210] ([Intel XE#1124])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][211] ([Intel XE#2890]) -> [SKIP][212] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][213] ([Intel XE#2890]) -> [SKIP][214] ([Intel XE#2907])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][215] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][216] ([Intel XE#455] / [Intel XE#787])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][217] ([Intel XE#2423] / [i915#2575]) -> [SKIP][218] ([Intel XE#373])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg2-set2: [SKIP][219] ([Intel XE#2423] / [i915#2575]) -> [SKIP][220] ([Intel XE#455])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_cursor_crc@cursor-random-32x32.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][221] ([Intel XE#2890]) -> [SKIP][222] ([Intel XE#455])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][223] ([Intel XE#651]) -> [SKIP][224] ([Intel XE#2890])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][225] ([Intel XE#651]) -> [SKIP][226] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][227] ([Intel XE#2890]) -> [SKIP][228] ([Intel XE#651]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2-set2: [SKIP][229] ([Intel XE#653]) -> [SKIP][230] ([Intel XE#2351] / [Intel XE#2890])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][231] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][232] ([Intel XE#653])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][233] ([Intel XE#2890]) -> [SKIP][234] ([Intel XE#653]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [DMESG-FAIL][235] ([Intel XE#324]) -> [DMESG-WARN][236] ([Intel XE#324])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-lnl-4/igt@kms_plane@plane-position-hole.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-lnl-7/igt@kms_plane@plane-position-hole.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][237] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][238] ([Intel XE#2423] / [i915#2575])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-436/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1489]) -> [SKIP][240] ([Intel XE#2890]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][241] ([Intel XE#2890]) -> [SKIP][242] ([Intel XE#1489])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-dg2-set2: [SKIP][243] ([Intel XE#2890]) -> [SKIP][244] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_psr@fbc-psr2-cursor-plane-move.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@pr-sprite-render:
- shard-dg2-set2: [SKIP][245] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][246] ([Intel XE#2850] / [Intel XE#929])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@kms_psr@pr-sprite-render.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_psr@pr-sprite-render.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: [SKIP][247] ([Intel XE#327]) -> [SKIP][248] ([Intel XE#2423] / [i915#2575])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-464/igt@kms_rotation_crc@primary-rotation-90.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][249] ([Intel XE#1500]) -> [SKIP][250] ([Intel XE#362])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-dg2-set2: [SKIP][251] ([Intel XE#2905]) -> [SKIP][252] ([Intel XE#1130])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: [SKIP][253] ([Intel XE#1130]) -> [SKIP][254] ([Intel XE#2905]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@xe_eudebug_online@debugger-reopen.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][255] ([Intel XE#1600]) -> [SKIP][256] ([Intel XE#1130])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [FAIL][257] ([Intel XE#1000]) -> [TIMEOUT][258] ([Intel XE#1473])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-433/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][259] ([Intel XE#288]) -> [SKIP][260] ([Intel XE#1130]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: [SKIP][261] ([Intel XE#1130]) -> [SKIP][262] ([Intel XE#288]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_oa@disabled-read-error:
- shard-dg2-set2: [SKIP][263] ([Intel XE#2541]) -> [SKIP][264] ([Intel XE#1130])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-466/igt@xe_oa@disabled-read-error.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-464/igt@xe_oa@disabled-read-error.html
* igt@xe_oa@oa-unit-concurrent-oa-buffer-read:
- shard-dg2-set2: [SKIP][265] ([Intel XE#1130]) -> [SKIP][266] ([Intel XE#2541])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8078/shard-dg2-435/igt@xe_oa@oa-unit-concurrent-oa-buffer-read.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/shard-dg2-436/igt@xe_oa@oa-unit-concurrent-oa-buffer-read.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
[Intel XE#2990]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2990
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3111
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8078 -> IGTPW_11931
* Linux: xe-2075-81420006f741f9783adea6ab5620ce54697f1b20 -> xe-2076-94d33b0e7302cf6561e78ce47585f6f67e246206
IGTPW_11931: 11931
IGT_8078: 175bddf20141ccad40130719ca46bde5140f4872 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2075-81420006f741f9783adea6ab5620ce54697f1b20: 81420006f741f9783adea6ab5620ce54697f1b20
xe-2076-94d33b0e7302cf6561e78ce47585f6f67e246206: 94d33b0e7302cf6561e78ce47585f6f67e246206
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11931/index.html
[-- Attachment #2: Type: text/html, Size: 79362 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* [PATCH i-g-t v4] tests/kms_histogram: Added IGT support to validate global histogram
2024-10-17 11:20 ` [PATCH i-g-t v3] " Mohammed Thasleem
@ 2024-11-05 5:24 ` Mohammed Thasleem
2024-11-05 17:22 ` Kamil Konieczny
2024-12-11 19:36 ` [PATCH i-g-t v5] " Mohammed Thasleem
0 siblings, 2 replies; 40+ messages in thread
From: Mohammed Thasleem @ 2024-11-05 5:24 UTC (permalink / raw)
To: igt-dev; +Cc: Mohammed Thasleem, Adarsh G M, Bhanuprakash Modem
The IGT changes included tests for enabling/disabling histogram.
Validating the histogram event generation and if any One such library
Global Histogram Enhancement(GHE) present, will feed the histogram to
the library, get the enhanced LUT data and feed it back to the KMD.
For histogram generation, black/white and color images are flipped.
Display histogram is a hardware functionality where a statistics for 'x'
number of frames is generated to form a histogram data. This is notified
to the user via histogram event. Compositor then upon sensing the histogram
event will read the histogram data from KMD via crtc property.
A library can be developed to take this generated histogram as an input and
apply some algorithm to generate an Image Enhancement(IET).
This is further fed back to the KMD via crtc property. KMD will feed this
bask to the hardware. Hardware will use this as a multiplicand factor to
multiply with the incoming pixels at the end of the pipe which is then
pushed onto the display.
One such library Global Histogram Enhancement(GHE) will take the histogram
as input and applied the algorithm to enhance the density and then return
the enhanced factor.
"This library can be located https://github.com/intel/ghe"
"KMD changes at https://patchwork.freedesktop.org/series/135793/"
TODO: Extend the tests for different formats/modifiers.
v2: Remove eDP restriction. (Vandita)
Update crtc property name. (Arun)
v3: Update discription and test names. (Kamil)
Remove warning message from meson build. (Kamil)
v4: Fixed some nits. (Kamil)
Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 23 +++
lib/igt_kms.h | 5 +
meson.build | 5 +
tests/kms_histogram.c | 348 ++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 2 +
5 files changed, 383 insertions(+)
create mode 100644 tests/kms_histogram.c
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 5d8096a17..6e71ac045 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -702,6 +702,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_HISTOGRAM] = "Histogram_Enable",
+ [IGT_CRTC_GLOBAL_HISTOGRAM] = "Global Histogram",
+ [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "Global IET",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2587,6 +2590,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
+ if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
+ igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
+
pipe->out_fence_fd = -1;
}
@@ -5615,6 +5621,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
ARRAY_SIZE(props));
}
+/**
+ * igt_global_histogram_event_detected:
+ * @mon: A udev monitor initialized with #igt_watch_uevents
+ * @timeout_secs: How long to wait for a lease change event to occur.
+ *
+ * Detect if a global Histogram event was received since we last checked the monitor.
+ *
+ * Returns: true if a sysfs global Histogram event was received, false if we timed out
+ */
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
+{
+ const char *props[1] = {"HISTOGRAM"};
+ int expected_val = 1;
+
+ return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
+}
+
/**
* igt_flush_uevents:
* @mon: A udev monitor initialized with #igt_watch_uevents
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index bd154d1c1..f776e71a4 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -164,6 +164,9 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
IGT_NUM_CRTC_PROPS
};
@@ -1136,6 +1139,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
+
/**
* igt_vblank_after_eq:
* @a: First vblank sequence number.
diff --git a/meson.build b/meson.build
index 64f57f232..cd8d35145 100644
--- a/meson.build
+++ b/meson.build
@@ -195,6 +195,11 @@ else
chamelium = disabler()
endif
+libghe = dependency('libghe', required : false)
+if libghe.found()
+ config.set('HAVE_LIBGHE', 1)
+endif
+
build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
pthreads = dependency('threads')
diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
new file mode 100644
index 000000000..b2bd777ab
--- /dev/null
+++ b/tests/kms_histogram.c
@@ -0,0 +1,348 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: kms histogram
+ * Category: Display
+ * Description: Test to verify histogram features.
+ * Driver requirement: i915, xe
+ * Functionality: histogram
+ * Mega feature: Display
+ * Test category: functionality test
+ */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_vec.h"
+#ifdef HAVE_LIBGHE
+#include "ghe.h"
+#endif
+
+#define GLOBAL_HIST_DISABLE 0
+#define GLOBAL_HIST_ENABLE 1
+#define GLOBAL_HIST_DELAY 2
+#define FLIP_COUNT 20
+
+/**
+ * SUBTEST: global-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: global-color
+ * Description: Test to enable histogram, flip color fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: algo-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data and enhance pixels by
+ * multiplying by a pixel factor using algo
+ *
+ * SUBTEST: algo-color
+ * Description: Test to enable histogram, flip color fbs, wait for histogram event
+ * and then read the histogram data and enhance pixels by multiplying
+ * by a pixel factor using algo
+ */
+
+IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
+
+typedef struct data {
+ igt_display_t display;
+ int drm_fd;
+ igt_fb_t fb[5];
+} data_t;
+
+typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
+
+static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Enable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is enabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
+}
+
+static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Disable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is disabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
+}
+
+static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *plane;
+
+ disable_and_verify_global_histogram(data, pipe);
+
+ for_each_plane_on_pipe(&data->display, pipe, plane)
+ igt_plane_set_fb(plane, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_remove_fb(data->display.drm_fd, &data->fb[0]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[1]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[2]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[3]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[4]);
+}
+
+static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
+{
+ uint64_t blob_id;
+
+ blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
+ IGT_CRTC_GLOBAL_HISTOGRAM);
+ if (blob_id == 0)
+ return NULL;
+
+ return drmModeGetPropertyBlob(data->drm_fd, blob_id);
+}
+
+static void read_global_histogram(data_t *data, enum pipe pipe,
+ drmModePropertyBlobRes **hist_blob_ptr)
+{
+ uint32_t *histogram_ptr;
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
+ do {
+ global_hist_blob = get_global_histogram_data(data, pipe);
+ } while (global_hist_blob == NULL);
+ igt_reset_timeout();
+
+ *hist_blob_ptr = global_hist_blob;
+ histogram_ptr = (uint32_t *) global_hist_blob->data;
+ for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
+ igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
+}
+
+static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
+{
+ uint32_t i;
+
+ for (i = 0; i < size; i++) {
+ /* Displaying IET LUT */
+ igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
+ }
+ igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
+ dietfactor, size);
+}
+
+#ifdef HAVE_LIBGHE
+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
+ igt_output_t *output)
+{
+ struct globalhist_args *argsPtr =
+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
+
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
+ argsPtr->resolution_x = mode->hdisplay;
+ argsPtr->resolution_y = mode->vdisplay;
+
+ igt_debug("Making call to global histogram algorithm.\n");
+ set_histogram_data_bin(argsPtr);
+
+ return argsPtr;
+}
+
+static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
+ igt_output_t *output,
+ drmModePropertyBlobRes *global_hist_blob)
+{
+ struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
+
+ igt_assert(args);
+ igt_debug("Writing pixel factor blob.\n");
+
+ set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
+ ARRAY_SIZE(args->dietfactor));
+ free(args);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+#endif
+
+static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip monochrome fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 0, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 1, 1, &data->fb[1]));
+}
+
+static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip color fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.5, 0, 0.5, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 0, &data->fb[1]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 1, 0, &data->fb[2]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 1, &data->fb[3]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 1, &data->fb[4]));
+}
+
+static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
+{
+ igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
+{
+ int i;
+ struct udev_monitor *mon = igt_watch_uevents();
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ bool event_detected = false;
+ int fb_count = color_fb ? 5 : 2;
+
+ if (color_fb)
+ create_color_fbs(data, mode);
+ else
+ create_monochrome_fbs(data, mode);
+
+ flip_fb(data, pipe, output, &data->fb[0]);
+ enable_and_verify_global_histogram(data, pipe);
+
+ igt_flush_uevents(mon);
+ for (i = 1; i <= FLIP_COUNT; i++) {
+ flip_fb(data, pipe, output, &data->fb[i % fb_count]);
+
+ /* Check for histogram event on every flip and break the loop if detected. */
+ if (igt_global_histogram_event_detected(mon, 0)) {
+ event_detected = true;
+ break;
+ }
+ }
+
+ igt_cleanup_uevents(mon);
+ igt_assert_f(event_detected, "Histogram event not generated.\n");
+}
+
+static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
+ bool color_fb, test_t test_pixel_factor)
+{
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ prepare_pipe(data, pipe, output, color_fb);
+
+ read_global_histogram(data, pipe, &global_hist_blob);
+
+ if (test_pixel_factor)
+ test_pixel_factor(data, pipe, output, global_hist_blob);
+
+ drmModeFreePropertyBlob(global_hist_blob);
+ cleanup_pipe(data, pipe, output);
+}
+
+static void run_tests_for_global_histogram(data_t *data, bool color_fb,
+ test_t test_pixel_factor)
+{
+ enum pipe pipe;
+ igt_output_t *output;
+
+ for_each_connected_output(&data->display, output) {
+ for_each_pipe(&data->display, pipe) {
+ if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
+ continue;
+
+ igt_display_reset(&data->display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(&data->display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
+ run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
+ }
+ }
+}
+
+static void run_algo_test(data_t *data, bool color_fb)
+{
+#ifdef HAVE_LIBGHE
+ run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
+#else
+ igt_skip("Histogram algorithm library not found.\n");
+#endif
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ igt_require(data.display.is_atomic);
+ }
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data.");
+ igt_subtest_with_dynamic("global-basic")
+ run_tests_for_global_histogram(&data, false, NULL);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data.");
+ igt_subtest_with_dynamic("global-color")
+ run_tests_for_global_histogram(&data, true, NULL);
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-basic")
+ run_algo_test(&data, false);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-color")
+ run_algo_test(&data, true);
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 34b87b125..91044de84 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -35,6 +35,7 @@ test_progs = [
'kms_flip_event_leak',
'kms_force_connector_basic',
'kms_getfb',
+ 'kms_histogram',
'kms_hdmi_inject',
'kms_hdr',
'kms_invalid_mode',
@@ -379,6 +380,7 @@ extra_dependencies = {
'gem_eio': [ realtime ],
'gem_exec_balancer': [ lib_igt_perf ],
'gem_mmap_offset': [ libatomic ],
+ 'kms_histogram': [ libghe ],
'i915_pm_freq_mult': [ lib_igt_perf ],
'i915_pm_rc6_residency': [ lib_igt_perf ],
'perf': [ lib_igt_i915_perf ],
--
2.25.1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev4)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (13 preceding siblings ...)
2024-10-18 1:15 ` ✗ CI.xeFULL: " Patchwork
@ 2024-11-05 6:59 ` Patchwork
2024-11-05 7:27 ` ✓ CI.xeBAT: " Patchwork
` (9 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-11-05 6:59 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3167 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev4)
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from IGT_8097 -> IGTPW_12029
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/index.html
Participating hosts (45 -> 40)
------------------------------
Missing (5): bat-dg1-7 bat-dg2-8 fi-snb-2520m bat-dg2-14 bat-dg2-11
Known issues
------------
Here are the changes found in IGTPW_12029 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arlh-3: [PASS][1] -> [ABORT][2] ([i915#12061] / [i915#12133])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-arlh-3/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][3] -> [ABORT][4] ([i915#12061])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/bat-arlh-3/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arls-2: [ABORT][5] ([i915#12133]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-arls-2/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/bat-arls-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_tlb:
- bat-apl-1: [ABORT][7] ([i915#12133]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-apl-1/igt@i915_selftest@live@gt_tlb.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/bat-apl-1/igt@i915_selftest@live@gt_tlb.html
* igt@i915_selftest@live@workarounds:
- bat-arls-2: [ABORT][9] ([i915#12061]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-arls-2/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/bat-arls-2/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8097 -> IGTPW_12029
* Linux: CI_DRM_15628 -> CI_DRM_15629
CI-20190529: 20190529
CI_DRM_15628: a4532bcf5eea0cfdb56fbdc3195a2d15d193727b @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15629: fffb00b58c0ce4d5a729f3bbd7f05d38ff3dbe63 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12029: 03ae430d1efb485a9088a88762fa70f611118fe9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8097: 2e7c8e4b88a50e33e10d6c13286818aa833bef9b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/index.html
[-- Attachment #2: Type: text/html, Size: 4200 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✓ CI.xeBAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev4)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (14 preceding siblings ...)
2024-11-05 6:59 ` ✓ Fi.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev4) Patchwork
@ 2024-11-05 7:27 ` Patchwork
2024-11-05 22:56 ` ✗ Fi.CI.IGT: failure " Patchwork
` (8 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-11-05 7:27 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2202 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev4)
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8097_BAT -> XEIGTPW_12029_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12029_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-adlp-7: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#2874]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][3] ([Intel XE#1861]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
Build changes
-------------
* IGT: IGT_8097 -> IGTPW_12029
* Linux: xe-2160-a4532bcf5eea0cfdb56fbdc3195a2d15d193727b -> xe-2161-fffb00b58c0ce4d5a729f3bbd7f05d38ff3dbe63
IGTPW_12029: 03ae430d1efb485a9088a88762fa70f611118fe9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8097: 2e7c8e4b88a50e33e10d6c13286818aa833bef9b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2160-a4532bcf5eea0cfdb56fbdc3195a2d15d193727b: a4532bcf5eea0cfdb56fbdc3195a2d15d193727b
xe-2161-fffb00b58c0ce4d5a729f3bbd7f05d38ff3dbe63: fffb00b58c0ce4d5a729f3bbd7f05d38ff3dbe63
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/index.html
[-- Attachment #2: Type: text/html, Size: 2800 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* Re: [PATCH i-g-t v4] tests/kms_histogram: Added IGT support to validate global histogram
2024-11-05 5:24 ` [PATCH i-g-t v4] " Mohammed Thasleem
@ 2024-11-05 17:22 ` Kamil Konieczny
2024-12-11 19:36 ` [PATCH i-g-t v5] " Mohammed Thasleem
1 sibling, 0 replies; 40+ messages in thread
From: Kamil Konieczny @ 2024-11-05 17:22 UTC (permalink / raw)
To: igt-dev; +Cc: Mohammed Thasleem, Adarsh G M, Bhanuprakash Modem
Hi Mohammed,
On 2024-11-05 at 10:54:13 +0530, Mohammed Thasleem wrote:
> The IGT changes included tests for enabling/disabling histogram.
> Validating the histogram event generation and if any One such library
> Global Histogram Enhancement(GHE) present, will feed the histogram to
> the library, get the enhanced LUT data and feed it back to the KMD.
> For histogram generation, black/white and color images are flipped.
>
> Display histogram is a hardware functionality where a statistics for 'x'
> number of frames is generated to form a histogram data. This is notified
> to the user via histogram event. Compositor then upon sensing the histogram
> event will read the histogram data from KMD via crtc property.
>
> A library can be developed to take this generated histogram as an input and
> apply some algorithm to generate an Image Enhancement(IET).
>
> This is further fed back to the KMD via crtc property. KMD will feed this
> bask to the hardware. Hardware will use this as a multiplicand factor to
> multiply with the incoming pixels at the end of the pipe which is then
> pushed onto the display.
>
> One such library Global Histogram Enhancement(GHE) will take the histogram
> as input and applied the algorithm to enhance the density and then return
> the enhanced factor.
> "This library can be located https://github.com/intel/ghe"
imho you could remove '"'
> "KMD changes at https://patchwork.freedesktop.org/series/135793/"
Same here, it could also help if you cite subject ("subject of patch")
as links sometimes goes away.
>
> TODO: Extend the tests for different formats/modifiers.
>
> v2: Remove eDP restriction. (Vandita)
> Update crtc property name. (Arun)
> v3: Update discription and test names. (Kamil)
> Remove warning message from meson build. (Kamil)
> v4: Fixed some nits. (Kamil)
>
> Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> lib/igt_kms.c | 23 +++
> lib/igt_kms.h | 5 +
> meson.build | 5 +
> tests/kms_histogram.c | 348 ++++++++++++++++++++++++++++++++++++++++++
> tests/meson.build | 2 +
> 5 files changed, 383 insertions(+)
> create mode 100644 tests/kms_histogram.c
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index 5d8096a17..6e71ac045 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -702,6 +702,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
> [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
> [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
> [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
> + [IGT_CRTC_HISTOGRAM] = "Histogram_Enable",
> + [IGT_CRTC_GLOBAL_HISTOGRAM] = "Global Histogram",
> + [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "Global IET",
> };
>
> const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
> @@ -2587,6 +2590,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
> if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
> igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
>
> + if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
> + igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
> +
> pipe->out_fence_fd = -1;
> }
>
> @@ -5615,6 +5621,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
> ARRAY_SIZE(props));
> }
>
> +/**
> + * igt_global_histogram_event_detected:
> + * @mon: A udev monitor initialized with #igt_watch_uevents
> + * @timeout_secs: How long to wait for a lease change event to occur.
> + *
> + * Detect if a global Histogram event was received since we last checked the monitor.
> + *
> + * Returns: true if a sysfs global Histogram event was received, false if we timed out
> + */
> +bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
> +{
> + const char *props[1] = {"HISTOGRAM"};
> + int expected_val = 1;
> +
> + return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
> +}
> +
> /**
> * igt_flush_uevents:
> * @mon: A udev monitor initialized with #igt_watch_uevents
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index bd154d1c1..f776e71a4 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -164,6 +164,9 @@ enum igt_atomic_crtc_properties {
> IGT_CRTC_OUT_FENCE_PTR,
> IGT_CRTC_VRR_ENABLED,
> IGT_CRTC_SCALING_FILTER,
> + IGT_CRTC_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> IGT_NUM_CRTC_PROPS
> };
>
> @@ -1136,6 +1139,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
> bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
> bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
>
> +bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
> +
> /**
> * igt_vblank_after_eq:
> * @a: First vblank sequence number.
> diff --git a/meson.build b/meson.build
> index 64f57f232..cd8d35145 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -195,6 +195,11 @@ else
> chamelium = disabler()
> endif
>
> +libghe = dependency('libghe', required : false)
> +if libghe.found()
> + config.set('HAVE_LIBGHE', 1)
> +endif
> +
> build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
>
> pthreads = dependency('threads')
> diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
> new file mode 100644
> index 000000000..b2bd777ab
> --- /dev/null
> +++ b/tests/kms_histogram.c
> @@ -0,0 +1,348 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms histogram
> + * Category: Display
> + * Description: Test to verify histogram features.
> + * Driver requirement: i915, xe
Remove 'Driver requirement:' line as this should not be
driver specific.
> + * Functionality: histogram
> + * Mega feature: Display
> + * Test category: functionality test
> + */
> +
> +#include <errno.h>
> +#include <fcntl.h>
> +#include <limits.h>
> +#include <stdbool.h>
> +#include <stdio.h>
> +#include <string.h>
> +
> +#include "igt.h"
> +#include "igt_vec.h"
> +#ifdef HAVE_LIBGHE
> +#include "ghe.h"
> +#endif
> +
> +#define GLOBAL_HIST_DISABLE 0
> +#define GLOBAL_HIST_ENABLE 1
> +#define GLOBAL_HIST_DELAY 2
> +#define FLIP_COUNT 20
> +
> +/**
> + * SUBTEST: global-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: global-color
> + * Description: Test to enable histogram, flip color fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: algo-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data and enhance pixels by
> + * multiplying by a pixel factor using algo
> + *
> + * SUBTEST: algo-color
> + * Description: Test to enable histogram, flip color fbs, wait for histogram event
> + * and then read the histogram data and enhance pixels by multiplying
> + * by a pixel factor using algo
> + */
> +
> +IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
> +
> +typedef struct data {
> + igt_display_t display;
> + int drm_fd;
> + igt_fb_t fb[5];
> +} data_t;
> +
> +typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
> +
> +static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
> +{
> + uint32_t global_hist_value;
> +
> + /* Enable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is enabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
> +}
> +
> +static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
> +{
> + uint32_t global_hist_value;
> +
> + /* Disable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is disabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
> +}
> +
> +static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> +{
> + igt_plane_t *plane;
> +
> + disable_and_verify_global_histogram(data, pipe);
> +
> + for_each_plane_on_pipe(&data->display, pipe, plane)
> + igt_plane_set_fb(plane, NULL);
> + igt_output_set_pipe(output, PIPE_NONE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> + igt_remove_fb(data->display.drm_fd, &data->fb[0]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[1]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[2]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[3]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[4]);
> +}
> +
> +static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
> +{
> + uint64_t blob_id;
> +
> + blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
> + IGT_CRTC_GLOBAL_HISTOGRAM);
> + if (blob_id == 0)
> + return NULL;
> +
> + return drmModeGetPropertyBlob(data->drm_fd, blob_id);
> +}
> +
> +static void read_global_histogram(data_t *data, enum pipe pipe,
> + drmModePropertyBlobRes **hist_blob_ptr)
-----------------------------^
Align.
> +{
> + uint32_t *histogram_ptr;
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
> + do {
> + global_hist_blob = get_global_histogram_data(data, pipe);
> + } while (global_hist_blob == NULL);
Add newline, also this could be:
} while (!global_hist_blob);
> + igt_reset_timeout();
> +
> + *hist_blob_ptr = global_hist_blob;
> + histogram_ptr = (uint32_t *) global_hist_blob->data;
No need for space after cast.
> + for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
> + igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
> +}
How big is this dump? If very long, consider using more compact form.
> +
> +static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
> +{
> + uint32_t i;
> +
> + for (i = 0; i < size; i++) {
> + /* Displaying IET LUT */
> + igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
> + }
Add newline, same question here about size of this dump.
> + igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> + dietfactor, size);
> +}
> +
> +#ifdef HAVE_LIBGHE
Please make this function compile, now I got warning from gcc:
../tests/kms_histogram.c:137:13: warning: 'set_pixel_factor' defined but not used [-Wunused-function]
137 | static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
| ^~~~~~~~~~~~~~~~
For example:
static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob, igt_output_t *output)
{
struct globalhist_args *argsPtr;
drmModeModeInfo *mode;
#ifdef HAVE_LIBGHE
argsPtr = (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
#else
argsPtr = NULL;
#fi
if (!argsPtr)
return NULL;
In this way function would compile.
> +static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
> + igt_output_t *output)
> +{
> + struct globalhist_args *argsPtr =
> + (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
> +
> + drmModeModeInfo *mode;
> +
> + mode = igt_output_get_mode(output);
> +
> + memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
> + argsPtr->resolution_x = mode->hdisplay;
> + argsPtr->resolution_y = mode->vdisplay;
> +
> + igt_debug("Making call to global histogram algorithm.\n");
> + set_histogram_data_bin(argsPtr);
> +
> + return argsPtr;
> +}
> +
> +static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
> + igt_output_t *output,
> + drmModePropertyBlobRes *global_hist_blob)
Align.
> +{
> + struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
> +
> + igt_assert(args);
> + igt_debug("Writing pixel factor blob.\n");
Same here, use #ifdef/#else/#endif
for call to lib function.
> +
> + set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
> + ARRAY_SIZE(args->dietfactor));
> + free(args);
> +
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +#endif
> +
> +static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
> +{
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip monochrome fbs to get histogram event. */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 0, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 1, 1, &data->fb[1]));
> +}
> +
> +static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
> +{
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip color fbs to get histogram event. */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.5, 0, 0.5, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 0, &data->fb[1]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 1, 0, &data->fb[2]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 1, &data->fb[3]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 1, &data->fb[4]));
> +}
> +
> +static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
> +{
> + igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
> +{
> + int i;
> + struct udev_monitor *mon = igt_watch_uevents();
> + drmModeModeInfo *mode = igt_output_get_mode(output);
> + bool event_detected = false;
> + int fb_count = color_fb ? 5 : 2;
> +
> + if (color_fb)
> + create_color_fbs(data, mode);
> + else
> + create_monochrome_fbs(data, mode);
> +
> + flip_fb(data, pipe, output, &data->fb[0]);
> + enable_and_verify_global_histogram(data, pipe);
> +
> + igt_flush_uevents(mon);
> + for (i = 1; i <= FLIP_COUNT; i++) {
> + flip_fb(data, pipe, output, &data->fb[i % fb_count]);
> +
> + /* Check for histogram event on every flip and break the loop if detected. */
> + if (igt_global_histogram_event_detected(mon, 0)) {
> + event_detected = true;
> + break;
> + }
> + }
> +
> + igt_cleanup_uevents(mon);
> + igt_assert_f(event_detected, "Histogram event not generated.\n");
> +}
> +
> +static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
> + bool color_fb, test_t test_pixel_factor)
Align.
> +{
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + prepare_pipe(data, pipe, output, color_fb);
> +
> + read_global_histogram(data, pipe, &global_hist_blob);
> +
> + if (test_pixel_factor)
> + test_pixel_factor(data, pipe, output, global_hist_blob);
> +
> + drmModeFreePropertyBlob(global_hist_blob);
> + cleanup_pipe(data, pipe, output);
> +}
> +
> +static void run_tests_for_global_histogram(data_t *data, bool color_fb,
> + test_t test_pixel_factor)
> +{
> + enum pipe pipe;
> + igt_output_t *output;
> +
> + for_each_connected_output(&data->display, output) {
> + for_each_pipe(&data->display, pipe) {
> + if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
> + continue;
> +
> + igt_display_reset(&data->display);
> +
> + igt_output_set_pipe(output, pipe);
> + if (!intel_pipe_output_combo_valid(&data->display))
> + continue;
> +
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
> + run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
> + }
> + }
> +}
> +
> +static void run_algo_test(data_t *data, bool color_fb)
> +{
> +#ifdef HAVE_LIBGHE
> + run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
> +#else
> + igt_skip("Histogram algorithm library not found.\n");
> +#endif
> +}
> +
> +igt_main
> +{
> + data_t data = {};
> +
> + igt_fixture {
> + data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> + kmstest_set_vt_graphics_mode();
> + igt_display_require(&data.display, data.drm_fd);
> + igt_display_require_output(&data.display);
> + igt_require(data.display.is_atomic);
> + }
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
> + "event and then read the histogram data.");
> + igt_subtest_with_dynamic("global-basic")
> + run_tests_for_global_histogram(&data, false, NULL);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
> + "and then read the histogram data.");
> + igt_subtest_with_dynamic("global-color")
> + run_tests_for_global_histogram(&data, true, NULL);
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
> + "event and then read the histogram data and enhance pixels by multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("algo-basic")
> + run_algo_test(&data, false);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
> + "and then read the histogram data and enhance pixels by multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("algo-color")
> + run_algo_test(&data, true);
> +
> + igt_fixture {
> + igt_display_fini(&data.display);
> + drm_close_driver(data.drm_fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 34b87b125..91044de84 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -35,6 +35,7 @@ test_progs = [
> 'kms_flip_event_leak',
> 'kms_force_connector_basic',
> 'kms_getfb',
> + 'kms_histogram',
This should be after 'kms_hdr'.
Regards,
Kamil
> 'kms_hdmi_inject',
> 'kms_hdr',
> 'kms_invalid_mode',
> @@ -379,6 +380,7 @@ extra_dependencies = {
> 'gem_eio': [ realtime ],
> 'gem_exec_balancer': [ lib_igt_perf ],
> 'gem_mmap_offset': [ libatomic ],
> + 'kms_histogram': [ libghe ],
> 'i915_pm_freq_mult': [ lib_igt_perf ],
> 'i915_pm_rc6_residency': [ lib_igt_perf ],
> 'perf': [ lib_igt_i915_perf ],
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev4)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (15 preceding siblings ...)
2024-11-05 7:27 ` ✓ CI.xeBAT: " Patchwork
@ 2024-11-05 22:56 ` Patchwork
2024-11-06 4:17 ` ✗ CI.xeFULL: " Patchwork
` (7 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-11-05 22:56 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100294 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev4)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15629_full -> IGTPW_12029_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12029_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12029_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12029_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_histogram@algo-basic (NEW):
- shard-mtlp: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-4/igt@kms_histogram@algo-basic.html
- {shard-dg2-9}: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-9/igt@kms_histogram@algo-basic.html
* igt@kms_histogram@algo-color (NEW):
- shard-dg2: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_histogram@algo-color.html
- shard-tglu-1: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_histogram@algo-color.html
* igt@kms_histogram@global-basic (NEW):
- shard-rkl: NOTRUN -> [SKIP][5] +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-2/igt@kms_histogram@global-basic.html
- shard-dg1: NOTRUN -> [SKIP][6] +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@kms_histogram@global-basic.html
* igt@kms_histogram@global-color (NEW):
- shard-tglu: NOTRUN -> [SKIP][7] +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-4/igt@kms_histogram@global-color.html
New tests
---------
New tests have been introduced between CI_DRM_15629_full and IGTPW_12029_full:
### New IGT tests (4) ###
* igt@kms_histogram@algo-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@algo-color:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-basic:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-color:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12029_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@drm_fdinfo@virtual-busy-hang.html
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-3/igt@drm_fdinfo@virtual-busy-hang-all.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-7/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-9/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][17] ([i915#9846])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb5/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-5/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][23] ([i915#10030] / [i915#7975] / [i915#8213])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-7/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][24] ([i915#5784])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-17/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg2: NOTRUN -> [FAIL][25] ([i915#12543] / [i915#5784])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-1/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-1/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][29] ([i915#11965] / [i915#12558]) +2 other tests fail
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html
- shard-dg1: NOTRUN -> [FAIL][30] ([i915#11965] / [i915#12558]) +2 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-17/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_capture@capture@vecs1-smem:
- shard-dg2: NOTRUN -> [FAIL][31] ([i915#11965]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@gem_exec_capture@capture@vecs1-smem.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-tglu: NOTRUN -> [FAIL][34] ([i915#2842]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-4/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-5/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-3/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +9 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_schedule@pi-common@vecs1:
- shard-dg2: NOTRUN -> [FAIL][42] ([i915#12296]) +7 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@gem_exec_schedule@pi-common@vecs1.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: NOTRUN -> [INCOMPLETE][43] ([i915#11441]) +1 other test incomplete
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@parallel-random:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-2/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-4/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +9 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-4/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_pread@self:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3282])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@gem_pread@self.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3282]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][55] ([i915#2658])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#4270]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4270])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-7/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4270]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4270]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4270])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8428]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#5190] / [i915#8428]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4885])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4885])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4885])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-3/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_fence_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@gem_tiled_fence_blits@basic.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-7/igt@gem_tiled_fence_blits@basic.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-7/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-5/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297] / [i915#4880])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#2527])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@gen9_exec_parse@bb-secure.html
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-7/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-7/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#2527])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@gen9_exec_parse@bb-start-param.html
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#6227])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][80] -> [ABORT][81] ([i915#9820])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#8399])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-9/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#7984])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-4/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#6245])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][85] ([i915#5723])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-8/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][86] ([i915#9311]) +1 other test dmesg-warn
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb2/igt@i915_selftest@mock.html
- shard-tglu: NOTRUN -> [DMESG-WARN][87] ([i915#9311]) +1 other test dmesg-warn
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-2/igt@i915_selftest@mock.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][88] ([i915#9311]) +1 other test dmesg-warn
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-7/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][89] ([i915#9311]) +1 other test dmesg-warn
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][90] -> [INCOMPLETE][91] ([i915#4817])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
- shard-dg1: NOTRUN -> [DMESG-WARN][92] ([i915#4391] / [i915#4423])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#7707])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4212])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4212])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4212]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#12454])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#6228])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#9531])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][101] -> [FAIL][102] ([i915#11808] / [i915#5956]) +3 other tests fail
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538] / [i915#5286]) +5 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#5286]) +6 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#5286]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#3638]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-180:
- shard-rkl: [PASS][108] -> [ABORT][109] ([i915#10354])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-1/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][110] -> [FAIL][111] ([i915#5138])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +12 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
- shard-mtlp: NOTRUN -> [SKIP][115] +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6095]) +14 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#10434] / [i915#6095])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/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-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#6095]) +106 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#6095]) +50 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#6095]) +34 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#12313]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#6095]) +34 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#12313])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#12313])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#6095]) +144 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#11616] / [i915#7213]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@kms_cdclk@mode-transition.html
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#3742])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#4087]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-rkl: NOTRUN -> [SKIP][129] +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][130] +11 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-3/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#7828]) +6 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#7828]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-14/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#7828]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#7828]) +10 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7828])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#3299])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3116] / [i915#3299])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#6944] / [i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6944] / [i915#9424])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-4/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#7116] / [i915#9424])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#3555]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3555]) +6 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#11453] / [i915#3359]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8814])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#11453] / [i915#3359])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#11453] / [i915#3359])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555]) +10 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#11453] / [i915#3359])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#3555]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#9809])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#4103]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][157] +18 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#5354]) +40 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#9067])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#9067])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1:
- shard-snb: NOTRUN -> [FAIL][161] ([i915#12638])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#9723])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#1257])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@kms_dp_aux_dev.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#1257])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#12402])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#12402])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#8812])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#3840])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3840])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#3469]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#3469])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-16/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3469])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#1839])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#1839])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#4881])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#3637] / [i915#3966]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-5/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3637] / [i915#3966])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#8381]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8381])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#8381])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3637]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#9934]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-14/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3637])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][187] -> [FAIL][188] ([i915#2122]) +1 other test fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-snb1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#3637]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-3/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@blocking-wf_vblank:
- shard-mtlp: [PASS][190] -> [FAIL][191] ([i915#2122]) +1 other test fail
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-3/igt@kms_flip@blocking-wf_vblank.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2: [PASS][192] -> [INCOMPLETE][193] ([i915#4839] / [i915#6113])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg2-8/igt@kms_flip@flip-vs-suspend.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-3/igt@kms_flip@flip-vs-suspend.html
- shard-dg1: [PASS][194] -> [INCOMPLETE][195] ([i915#4839] / [i915#6113])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg1-13/igt@kms_flip@flip-vs-suspend.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-17/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: [PASS][196] -> [INCOMPLETE][197] ([i915#4839]) +1 other test incomplete
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-snb2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-dg2: NOTRUN -> [INCOMPLETE][198] ([i915#6113])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a4:
- shard-dg1: NOTRUN -> [INCOMPLETE][199] ([i915#4839] / [i915#6113])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-17/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-rkl: [PASS][200] -> [FAIL][201] ([i915#10826]) +1 other test fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-6/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-5/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-tglu: [PASS][202] -> [FAIL][203] ([i915#2122]) +5 other tests fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-tglu-3/igt@kms_flip@plain-flip-ts-check-interruptible.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-7/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#2587] / [i915#2672]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672] / [i915#3555])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#2672] / [i915#3555])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#2672]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#2672])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
- shard-snb: [PASS][214] -> [SKIP][215] +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#8708]) +16 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#10055])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#3458]) +5 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#3023]) +7 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#1825]) +10 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#8708]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#5439])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][223] +60 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8708])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3458]) +18 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#1825]) +11 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][227] +53 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-3/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-16/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8228])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_histogram@global-color (NEW):
- shard-snb: NOTRUN -> [SKIP][232] +48 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb5/igt@kms_histogram@global-color.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#12388])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#12388])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#6301])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8821])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#6953])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#12247] / [i915#9423]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#12247]) +6 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#12247]) +4 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#12247] / [i915#6953])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#12247]) +15 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#12247]) +7 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#12247] / [i915#6953] / [i915#9423])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#12247] / [i915#6953])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#3555] / [i915#9423])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#3555])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#6953])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#12247]) +8 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#9812])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#9685])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu-1: NOTRUN -> [FAIL][252] ([i915#9295])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#9685]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][254] -> [SKIP][255] ([i915#4281])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][256] -> [SKIP][257] ([i915#9519])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#6524] / [i915#6805])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-1/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#6524])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-7/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#11520]) +12 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-2/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#9808])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#12316]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#11520]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#11520]) +6 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][265] ([i915#11520]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#11520]) +8 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#11520]) +5 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#9683])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#9683])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#9683])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-12/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#9683])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-7/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#4348])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +6 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-14/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#9688]) +7 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-primary-page-flip:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#9732]) +14 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-6/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr2-basic:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#9732]) +7 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-4/igt@kms_psr@psr2-basic.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#1072] / [i915#9732]) +18 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#9732]) +11 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#9685]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#9685])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#11131] / [i915#4235]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#5289])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#11131] / [i915#4235] / [i915#5190])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#11131] / [i915#4235])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#5030] / [i915#9041])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#5030]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/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][287] ([i915#5030] / [i915#9041])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [PASS][288] -> [FAIL][289] ([i915#5465]) +1 other test fail
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-snb4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#3555])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#8623])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#9906])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-3/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#11920])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@kms_vrr@lobf.html
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#11920])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#9906])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#9906])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#2437]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#2437])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#2435])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#2433])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-19/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][301] ([i915#4349]) +4 other tests fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#8850])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#8516])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#9917])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@gem_ctx_persistence@hostile:
- shard-mtlp: [FAIL][305] ([i915#11980] / [i915#12580]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-5/igt@gem_ctx_persistence@hostile.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_persistence@legacy-engines-queued@bsd1:
- shard-dg2: [ABORT][307] -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg2-7/igt@gem_ctx_persistence@legacy-engines-queued@bsd1.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-10/igt@gem_ctx_persistence@legacy-engines-queued@bsd1.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [DMESG-WARN][309] ([i915#12412]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-4/igt@gem_exec_balancer@nop.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-8/igt@gem_exec_balancer@nop.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][311] ([i915#11713]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-tglu-4/igt@gem_exec_big@single.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-7/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-rkl: [FAIL][313] ([i915#2842]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-7/igt@gem_exec_fair@basic-pace@vcs0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-7/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [ABORT][315] ([i915#7975] / [i915#8213]) -> [PASS][316] +1 other test pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][317] ([i915#9820]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][319] ([i915#12548] / [i915#3591]) -> [PASS][320] +1 other test pass
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-dg1: [FAIL][321] ([i915#12451]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg1-19/igt@kms_async_flips@alternate-sync-async-flip.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-16/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-4:
- shard-dg1: [FAIL][323] -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg1-19/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-4.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-16/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][325] ([i915#5138]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-mtlp: [INCOMPLETE][327] ([i915#12358]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-3/igt@kms_cursor_crc@cursor-suspend.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-2/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
- shard-mtlp: [INCOMPLETE][329] -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-2/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][331] ([i915#2122]) -> [PASS][332] +2 other tests pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [FAIL][333] ([i915#2122]) -> [PASS][334] +11 other tests pass
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb4/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg2: [FAIL][335] ([i915#2122]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg2-10/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-7/igt@kms_flip@wf_vblank-ts-check-interruptible.html
- shard-rkl: [FAIL][337] ([i915#2122]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1:
- shard-tglu: [FAIL][339] ([i915#2122]) -> [PASS][340] +9 other tests pass
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-tglu-9/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-6/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [FAIL][341] ([i915#6880]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-snb: [SKIP][343] -> [PASS][344] +4 other tests pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-rkl: [SKIP][345] ([i915#433]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-5/igt@kms_hdmi_inject@inject-audio.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-2/igt@kms_hdmi_inject@inject-audio.html
- shard-dg1: [SKIP][347] ([i915#433]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg1-12/igt@kms_hdmi_inject@inject-audio.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-14/igt@kms_hdmi_inject@inject-audio.html
- shard-tglu: [SKIP][349] ([i915#433]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html
- shard-mtlp: [SKIP][351] ([i915#433]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-5/igt@kms_hdmi_inject@inject-audio.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][353] ([i915#9519]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@perf@blocking@0-rcs0:
- shard-rkl: [FAIL][355] ([i915#10538]) -> [PASS][356] +1 other test pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-4/igt@perf@blocking@0-rcs0.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@perf@blocking@0-rcs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][357] ([i915#10131] / [i915#9820]) -> [ABORT][358] ([i915#10131] / [i915#10887] / [i915#9697])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: [SKIP][359] ([i915#4423] / [i915#4538]) -> [SKIP][360] ([i915#4538])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_content_protection@lic-type-0:
- shard-snb: [INCOMPLETE][361] ([i915#8816]) -> [SKIP][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-snb6/igt@kms_content_protection@lic-type-0.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-snb4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][363] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][364] ([i915#7118] / [i915#9424])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg2-10/igt@kms_content_protection@type1.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-8/igt@kms_content_protection@type1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg1: [SKIP][365] ([i915#4423]) -> [SKIP][366] +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-dg2: [SKIP][367] ([i915#3458]) -> [SKIP][368] ([i915#10433] / [i915#3458]) +2 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: [SKIP][369] ([i915#4423] / [i915#8708]) -> [SKIP][370] ([i915#8708])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][371] ([i915#10433] / [i915#3458]) -> [SKIP][372] ([i915#3458])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][373] ([i915#9295]) -> [SKIP][374] ([i915#3361])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][375] ([i915#3828]) -> [SKIP][376] ([i915#9340])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15629/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10354
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12412
[i915#12451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12451
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12548]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12548
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#12558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12558
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12580
[i915#12638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12638
[i915#12646]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12646
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[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#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[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#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[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#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[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#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[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#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8097 -> IGTPW_12029
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15629: fffb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12029/index.html
[-- Attachment #2: Type: text/html, Size: 124450 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev4)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (16 preceding siblings ...)
2024-11-05 22:56 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-11-06 4:17 ` Patchwork
2024-12-11 14:07 ` [PATCH i-g-t v5] tests/kms_histogram: Added IGT support to validate global histogram Mohammed Thasleem
` (6 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-11-06 4:17 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 84028 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev4)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8097_full -> XEIGTPW_12029_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12029_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12029_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12029_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][3] +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_histogram@algo-basic (NEW):
- shard-bmg: NOTRUN -> [SKIP][4] +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@kms_histogram@algo-basic.html
- shard-dg2-set2: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_histogram@algo-basic.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-lnl: [PASS][6] -> [DMESG-WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-3/igt@xe_exec_reset@gt-reset-stress.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-7/igt@xe_exec_reset@gt-reset-stress.html
New tests
---------
New tests have been introduced between XEIGT_8097_full and XEIGTPW_12029_full:
### New IGT tests (21) ###
* igt@kms_color@ctm-green-to-red@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.46] s
* igt@kms_flip@2x-absolute-wf_vblank@ab-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.42] s
* igt@kms_flip@2x-absolute-wf_vblank@ac-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.36] s
* igt@kms_flip@2x-absolute-wf_vblank@ad-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.36] s
* igt@kms_flip@2x-absolute-wf_vblank@bc-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.34] s
* igt@kms_flip@2x-absolute-wf_vblank@bd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.36] s
* igt@kms_flip@2x-absolute-wf_vblank@cd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.36] s
* igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.68] s
* igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.67] s
* igt@kms_flip@2x-plain-flip-ts-check@ad-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.65] s
* igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_flip@2x-plain-flip-ts-check@bd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.62] s
* igt@kms_flip@2x-plain-flip-ts-check@cd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-dp5:
- Statuses : 1 pass(s)
- Exec time: [4.33] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-dp-5:
- Statuses : 1 pass(s)
- Exec time: [1.19] s
* igt@kms_histogram@algo-basic:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@algo-color:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-basic:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-color:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_vblank@query-forked@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [2.31] s
* igt@kms_vrr@negative-basic@pipe-a-dp-5:
- Statuses : 1 pass(s)
- Exec time: [5.53] s
Known issues
------------
Here are the changes found in XEIGTPW_12029_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#1885])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@core_hotunplug@unplug-rescan.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html
* igt@kms_3d:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1465])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-4/igt@kms_3d.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#3007]) +11 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#664])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][14] -> [FAIL][15] ([Intel XE#1426]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2:
- shard-bmg: [PASS][16] -> [FAIL][17] ([Intel XE#1426]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +6 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#619])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#610])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1428])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2191])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2191])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +30 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-c-dp-5:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +105 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-c-dp-5.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2907]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1195] / [Intel XE#1727])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [PASS][37] -> [DMESG-WARN][38] ([Intel XE#3113]) +1 other test dmesg-warn
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#1195] / [Intel XE#3124])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][41] ([Intel XE#1195])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-5.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1152]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#306]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +5 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2252])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1178]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2321])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2320]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#308])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#323])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy:
- shard-lnl: [PASS][54] -> [DMESG-WARN][55] ([Intel XE#2055])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-bmg: [PASS][56] -> [FAIL][57] ([Intel XE#1475])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_cursor_legacy@torture-bo:
- shard-dg2-set2: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#3184]) +1 other test dmesg-warn
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_cursor_legacy@torture-bo.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-463/igt@kms_cursor_legacy@torture-bo.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2244])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#776])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][63] ([Intel XE#301]) +6 other tests fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@blocking-wf_vblank@a-dp2:
- shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#2882]) +3 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_flip@blocking-wf_vblank@a-dp2.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_flip@blocking-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [FAIL][66] ([Intel XE#886]) +1 other test fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
- shard-lnl: [PASS][67] -> [FAIL][68] ([Intel XE#886]) +5 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#301]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1401] / [Intel XE#1745])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1397]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2293]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2311]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +18 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][78] ([Intel XE#2333]) +2 other tests fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +9 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#651]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#658]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1469])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#653]) +21 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2313]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2-set2: NOTRUN -> [FAIL][85] ([Intel XE#3312]) +2 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#1503])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2925])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#599])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-4/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: [PASS][90] -> [FAIL][91] ([Intel XE#361])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2763]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2763]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2938])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#718]) +1 other test fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1131])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-1/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#1439] / [Intel XE#3141])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1489]) +7 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-433/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1406]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@kms_psr@pr-no-drrs.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#327]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1437]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][106] ([Intel XE#899]) +1 other test fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [PASS][107] -> [FAIL][108] ([Intel XE#1523]) +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-1/igt@kms_vblank@accuracy-idle.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#455]) +14 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2168])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-433/igt@kms_vrr@lobf.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_eudebug@basic-vm-access-parameters:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2905]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-7/igt@xe_eudebug@basic-vm-access-parameters.html
* igt@xe_eudebug@multiple-sessions:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2905]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-433/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2905]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_evict@evict-beng-cm-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#688]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-4/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][116] ([Intel XE#1600])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr:
- shard-bmg: [PASS][117] -> [SKIP][118] ([Intel XE#1130]) +27 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1392])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2322])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm:
- shard-lnl: NOTRUN -> [FAIL][121] ([Intel XE#3160])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#288]) +9 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-lnl: [PASS][123] -> [FAIL][124] ([Intel XE#3320])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
- shard-bmg: [PASS][125] -> [FAIL][126] ([Intel XE#3320])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch:
- shard-lnl: [PASS][127] -> [FAIL][128] ([Intel XE#3160]) +3 other tests fail
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm:
- shard-bmg: [PASS][129] -> [FAIL][130] ([Intel XE#3160])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm.html
* igt@xe_exec_reset@virtual-close-fd:
- shard-bmg: [PASS][131] -> [FAIL][132] ([Intel XE#1081])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@xe_exec_reset@virtual-close-fd.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@xe_exec_reset@virtual-close-fd.html
- shard-dg2-set2: [PASS][133] -> [FAIL][134] ([Intel XE#1081])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@xe_exec_reset@virtual-close-fd.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-463/igt@xe_exec_reset@virtual-close-fd.html
* igt@xe_exec_threads@threads-bal-mixed-userptr:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1130])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@xe_exec_threads@threads-bal-mixed-userptr.html
* igt@xe_fault_injection@inject-fault-probe:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][136] ([Intel XE#3343])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: NOTRUN -> [DMESG-WARN][137] ([Intel XE#3184])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-2/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [PASS][138] -> [FAIL][139] ([Intel XE#3099]) +1 other test fail
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@xe_live_ktest@xe_dma_buf.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#512])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@xe_mmap@small-bar.html
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#512])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-4/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#378])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@xe_module_load@force-load.html
* igt@xe_module_load@many-reload:
- shard-lnl: [PASS][143] -> [DMESG-WARN][144] ([Intel XE#2910])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-3/igt@xe_module_load@many-reload.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-1/igt@xe_module_load@many-reload.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2248])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2541]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2284] / [Intel XE#366])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: [PASS][148] -> [ABORT][149] ([Intel XE#1358])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@xe_pm@s2idle-exec-after.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][150] -> [ABORT][151] ([Intel XE#1794]) +1 other test abort
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [PASS][152] -> [ABORT][153] ([Intel XE#1794])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-8/igt@xe_pm@s4-mocs.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-2/igt@xe_pm@s4-mocs.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-dg2-set2: [PASS][154] -> [ABORT][155] ([Intel XE#2625]) +3 other tests abort
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-463/igt@xe_pm_residency@gt-c6-freeze.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#944])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#944])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#3342])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-463/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: NOTRUN -> [FAIL][159] ([Intel XE#2922])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-463/igt@xe_tlb@basic-tlb.html
#### Possible fixes ####
* igt@fbdev@read:
- shard-dg2-set2: [SKIP][160] ([Intel XE#2134]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@fbdev@read.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-433/igt@fbdev@read.html
- shard-bmg: [SKIP][162] ([Intel XE#2134]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@fbdev@read.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@fbdev@read.html
* igt@kms_addfb_basic@unused-modifier:
- shard-bmg: [SKIP][164] ([Intel XE#3007]) -> [PASS][165] +17 other tests pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_addfb_basic@unused-modifier.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@kms_addfb_basic@unused-modifier.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
- shard-bmg: [SKIP][166] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][167] +3 other tests pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
- shard-dg2-set2: [SKIP][168] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-dg2-set2: [DMESG-WARN][170] ([Intel XE#3184]) -> [PASS][171] +1 other test pass
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_cursor_legacy@torture-move@pipe-a.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-433/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_dirtyfb@default-dirtyfb-ioctl:
- shard-dg2-set2: [SKIP][172] ([Intel XE#2890]) -> [PASS][173] +2 other tests pass
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][174] ([Intel XE#2597]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [INCOMPLETE][176] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg2-set2: [SKIP][178] ([Intel XE#2423] / [i915#2575]) -> [PASS][179] +15 other tests pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_flip@absolute-wf_vblank.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][180] ([Intel XE#886]) -> [PASS][181] +6 other tests pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-2/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2-set2: [INCOMPLETE][182] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2:
- shard-bmg: [FAIL][184] ([Intel XE#301]) -> [PASS][185] +6 other tests pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-lnl: [DMESG-WARN][186] -> [PASS][187] +2 other tests pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][188] ([Intel XE#616]) -> [PASS][189] +1 other test pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][190] ([Intel XE#361]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][192] ([Intel XE#1430]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_vblank@query-forked-busy-hang:
- shard-bmg: [INCOMPLETE][194] -> [PASS][195] +1 other test pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_vblank@query-forked-busy-hang.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@kms_vblank@query-forked-busy-hang.html
* igt@xe_exec_basic@many-execqueues-many-vm-basic:
- shard-dg2-set2: [SKIP][196] ([Intel XE#1130]) -> [PASS][197] +23 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_exec_basic@many-execqueues-many-vm-basic.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@xe_exec_basic@many-execqueues-many-vm-basic.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [FAIL][198] ([Intel XE#3160]) -> [PASS][199] +4 other tests pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch:
- shard-lnl: [FAIL][200] ([Intel XE#3160]) -> [PASS][201] +1 other test pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [ABORT][202] ([Intel XE#1358]) -> [PASS][203] +1 other test pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-lnl: [ABORT][204] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-2/igt@xe_pm@s4-basic.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-1/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][206] ([Intel XE#1794]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-3/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_vm@bind-once:
- shard-bmg: [SKIP][208] ([Intel XE#1130]) -> [PASS][209] +30 other tests pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_vm@bind-once.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@xe_vm@bind-once.html
#### Warnings ####
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-bmg: [SKIP][210] ([Intel XE#2327]) -> [SKIP][211] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-90.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-bmg: [SKIP][212] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][213] ([Intel XE#2327])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
- shard-dg2-set2: [SKIP][214] ([Intel XE#2890]) -> [SKIP][215] ([Intel XE#316])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: [SKIP][216] ([Intel XE#1124]) -> [SKIP][217] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-bmg: [SKIP][218] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][219] ([Intel XE#1124]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
- shard-dg2-set2: [SKIP][220] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][221] ([Intel XE#1124])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: [SKIP][222] ([Intel XE#2328]) -> [SKIP][223] ([Intel XE#2231] / [Intel XE#2890])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: [SKIP][224] ([Intel XE#2890]) -> [SKIP][225] ([Intel XE#1124])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-bmg: [SKIP][226] ([Intel XE#367]) -> [SKIP][227] ([Intel XE#3007])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: [SKIP][228] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][229] ([Intel XE#2887])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
- shard-dg2-set2: [SKIP][230] ([Intel XE#2890]) -> [SKIP][231] ([Intel XE#455] / [Intel XE#787])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][232] ([Intel XE#2887]) -> [SKIP][233] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][234] ([Intel XE#2890]) -> [SKIP][235] ([Intel XE#2907])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-bmg: [SKIP][236] ([Intel XE#3007]) -> [SKIP][237] ([Intel XE#2252])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
- shard-dg2-set2: [SKIP][238] ([Intel XE#2423] / [i915#2575]) -> [SKIP][239] ([Intel XE#373])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-bmg: [SKIP][240] ([Intel XE#2252]) -> [SKIP][241] ([Intel XE#3007]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_chamelium_hpd@vga-hpd.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: [SKIP][242] ([Intel XE#2390]) -> [SKIP][243] ([Intel XE#3007])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-1.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: [SKIP][244] ([Intel XE#2321]) -> [SKIP][245] ([Intel XE#3007]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x512.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-bmg: [SKIP][246] ([Intel XE#3007]) -> [SKIP][247] ([Intel XE#2320])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_cursor_crc@cursor-random-max-size.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: [SKIP][248] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][249] ([Intel XE#2244])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][250] ([Intel XE#2890]) -> [SKIP][251] ([Intel XE#455]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: [SKIP][252] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][253] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][254] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][255] ([Intel XE#2311]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
- shard-dg2-set2: [SKIP][256] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][257] ([Intel XE#651]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][258] ([Intel XE#2311]) -> [SKIP][259] ([Intel XE#2231] / [Intel XE#2890]) +6 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-bmg: [FAIL][260] ([Intel XE#2333]) -> [SKIP][261] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][262] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][263] ([Intel XE#2333]) +1 other test fail
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][264] ([Intel XE#2890]) -> [SKIP][265] ([Intel XE#651]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][266] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][267] ([Intel XE#2313]) +3 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
- shard-dg2-set2: [SKIP][268] ([Intel XE#2890]) -> [SKIP][269] ([Intel XE#653]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][270] ([Intel XE#2313]) -> [SKIP][271] ([Intel XE#2231] / [Intel XE#2890]) +4 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][272] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][273] ([Intel XE#653])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: [SKIP][274] ([Intel XE#3007]) -> [SKIP][275] ([Intel XE#2502])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@kms_getfb@getfb-reject-ccs.html
- shard-dg2-set2: [SKIP][276] ([Intel XE#2423] / [i915#2575]) -> [SKIP][277] ([Intel XE#605])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_getfb@getfb-reject-ccs.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][278] ([Intel XE#2763]) -> [SKIP][279] ([Intel XE#3007])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: [SKIP][280] ([Intel XE#2446]) -> [SKIP][281] ([Intel XE#1439])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: [SKIP][282] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][283] ([Intel XE#1489]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-dg2-set2: [SKIP][284] ([Intel XE#2890]) -> [SKIP][285] ([Intel XE#1489]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-bmg: [SKIP][286] ([Intel XE#1489]) -> [SKIP][287] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: [SKIP][288] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][289] ([Intel XE#2387])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-bmg: [SKIP][290] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][291] ([Intel XE#2231] / [Intel XE#2890])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_psr@fbc-pr-no-drrs.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@pr-suspend:
- shard-bmg: [SKIP][292] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][293] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_psr@pr-suspend.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@kms_psr@pr-suspend.html
- shard-dg2-set2: [SKIP][294] ([Intel XE#2890]) -> [SKIP][295] ([Intel XE#2850] / [Intel XE#929])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_psr@pr-suspend.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-434/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][296] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][297] ([Intel XE#2850] / [Intel XE#929])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_psr@psr-dpms.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_psr@psr-dpms.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: [SKIP][298] ([Intel XE#2414]) -> [SKIP][299] ([Intel XE#2231] / [Intel XE#2890])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: [SKIP][300] ([Intel XE#3007]) -> [SKIP][301] ([Intel XE#2330])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
- shard-dg2-set2: [SKIP][302] ([Intel XE#2423] / [i915#2575]) -> [SKIP][303] ([Intel XE#1127])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][304] ([Intel XE#1729]) -> [SKIP][305] ([Intel XE#362])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: [SKIP][306] ([Intel XE#756]) -> [SKIP][307] ([Intel XE#3007])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_writeback@writeback-pixel-formats.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_eudebug@basic-vm-access:
- shard-bmg: [SKIP][308] ([Intel XE#2905]) -> [SKIP][309] ([Intel XE#1130]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@xe_eudebug@basic-vm-access.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@xe_eudebug@basic-vm-access.html
* igt@xe_eudebug_online@interrupt-all:
- shard-bmg: [SKIP][310] ([Intel XE#1130]) -> [SKIP][311] ([Intel XE#2905]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_eudebug_online@interrupt-all.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-4/igt@xe_eudebug_online@interrupt-all.html
- shard-dg2-set2: [SKIP][312] ([Intel XE#1130]) -> [SKIP][313] ([Intel XE#2905]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_eudebug_online@interrupt-all.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-464/igt@xe_eudebug_online@interrupt-all.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: [SKIP][314] ([Intel XE#2322]) -> [SKIP][315] ([Intel XE#1130]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-basic:
- shard-bmg: [SKIP][316] ([Intel XE#1130]) -> [SKIP][317] ([Intel XE#2322]) +2 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_exec_basic@multigpu-once-basic.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-7/igt@xe_exec_basic@multigpu-once-basic.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][318] ([Intel XE#1130]) -> [SKIP][319] ([Intel XE#288]) +3 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: [SKIP][320] ([Intel XE#2833]) -> [SKIP][321] ([Intel XE#3026])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-lnl-1/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][322] ([Intel XE#1130]) -> [SKIP][323] ([Intel XE#2541])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_oa@polling-small-buf.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-435/igt@xe_oa@polling-small-buf.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: [SKIP][324] ([Intel XE#1130]) -> [SKIP][325] ([Intel XE#2284])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_pm@d3cold-mocs.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-8/igt@xe_pm@d3cold-mocs.html
- shard-dg2-set2: [SKIP][326] ([Intel XE#1130]) -> [SKIP][327] ([Intel XE#2284])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_pm@d3cold-mocs.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-dg2-432/igt@xe_pm@d3cold-mocs.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: [SKIP][328] ([Intel XE#944]) -> [SKIP][329] ([Intel XE#1130])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_query@multigpu-query-mem-usage.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [DMESG-WARN][330] ([Intel XE#2919]) -> [SKIP][331] ([Intel XE#1130])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_wedged@basic-wedged.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/shard-bmg-6/igt@xe_wedged@basic-wedged.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2910
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3160]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3160
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3320
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8097 -> IGTPW_12029
* Linux: xe-2160-a4532bcf5eea0cfdb56fbdc3195a2d15d193727b -> xe-2161-fffb00b58c0ce4d5a729f3bbd7f05d38ff3dbe63
IGTPW_12029: 03ae430d1efb485a9088a88762fa70f611118fe9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8097: 2e7c8e4b88a50e33e10d6c13286818aa833bef9b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2160-a4532bcf5eea0cfdb56fbdc3195a2d15d193727b: a4532bcf5eea0cfdb56fbdc3195a2d15d193727b
xe-2161-fffb00b58c0ce4d5a729f3bbd7f05d38ff3dbe63: fffb00b58c0ce4d5a729f3bbd7f05d38ff3dbe63
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12029/index.html
[-- Attachment #2: Type: text/html, Size: 102439 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* [PATCH i-g-t v5] tests/kms_histogram: Added IGT support to validate global histogram
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (17 preceding siblings ...)
2024-11-06 4:17 ` ✗ CI.xeFULL: " Patchwork
@ 2024-12-11 14:07 ` Mohammed Thasleem
2024-12-11 19:58 ` ✗ Fi.CI.BUILD: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev5) Patchwork
` (5 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Mohammed Thasleem @ 2024-12-11 14:07 UTC (permalink / raw)
To: igt-dev; +Cc: kamil.konieczny, Mohammed Thasleem, Adarsh G M,
Bhanuprakash Modem
The IGT changes included tests for enabling/disabling histogram.
Validating the histogram event generation and if any One such library
Global Histogram Enhancement(GHE) present, will feed the histogram to
the library, get the enhanced LUT data and feed it back to the KMD.
For histogram generation, black/white and color images are flipped.
Display histogram is a hardware functionality where a statistics for 'x'
number of frames is generated to form a histogram data. This is notified
to the user via histogram event. Compositor then upon sensing the histogram
event will read the histogram data from KMD via crtc property.
A library can be developed to take this generated histogram as an input and
apply some algorithm to generate an Image Enhancement(IET).
This is further fed back to the KMD via crtc property. KMD will feed this
bask to the hardware. Hardware will use this as a multiplicand factor to
multiply with the incoming pixels at the end of the pipe which is then
pushed onto the display.
One such library Global Histogram Enhancement(GHE) will take the histogram
as input and apply the algorithm to enhance the density and then return
the enhanced factor.
GHE library link: https://github.com/intel/ghe
Display Global Histogram changes:
https://patchwork.freedesktop.org/series/135793/
https://lore.kernel.org/all/20241119104521.575377-1-arun.r.murthy@intel.com/
TODO: Extend the tests for different formats/modifiers.
v2: Remove eDP restriction. (Vandita)
Update crtc property name. (Arun)
v3: Update discription and test names. (Kamil)
Remove warning message from meson build. (Kamil)
v4: Fixed some nits. (Kamil)
v5: Update discription. (Kamil)
Minor changes. (Kamil)
Updated crtc property and algo api names. (Arun)
Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 23 +++
lib/igt_kms.h | 5 +
meson.build | 5 +
tests/kms_histogram.c | 349 ++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 2 +
5 files changed, 384 insertions(+)
create mode 100644 tests/kms_histogram.c
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 5d8096a17..9cf43d583 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -702,6 +702,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE",
+ [IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA",
+ [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2587,6 +2590,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
+ if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
+ igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
+
pipe->out_fence_fd = -1;
}
@@ -5615,6 +5621,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
ARRAY_SIZE(props));
}
+/**
+ * igt_global_histogram_event_detected:
+ * @mon: A udev monitor initialized with #igt_watch_uevents
+ * @timeout_secs: How long to wait for a lease change event to occur.
+ *
+ * Detect if a global Histogram event was received since we last checked the monitor.
+ *
+ * Returns: true if a sysfs global Histogram event was received, false if we timed out
+ */
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
+{
+ const char *props[1] = {"HISTOGRAM"};
+ int expected_val = 1;
+
+ return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
+}
+
/**
* igt_flush_uevents:
* @mon: A udev monitor initialized with #igt_watch_uevents
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index bd154d1c1..f776e71a4 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -164,6 +164,9 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
IGT_NUM_CRTC_PROPS
};
@@ -1136,6 +1139,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
+
/**
* igt_vblank_after_eq:
* @a: First vblank sequence number.
diff --git a/meson.build b/meson.build
index 64f57f232..cd8d35145 100644
--- a/meson.build
+++ b/meson.build
@@ -195,6 +195,11 @@ else
chamelium = disabler()
endif
+libghe = dependency('libghe', required : false)
+if libghe.found()
+ config.set('HAVE_LIBGHE', 1)
+endif
+
build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
pthreads = dependency('threads')
diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
new file mode 100644
index 000000000..c25aa022b
--- /dev/null
+++ b/tests/kms_histogram.c
@@ -0,0 +1,349 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: kms histogram
+ * Category: Display
+ * Description: Test to verify histogram features.
+ * Functionality: histogram
+ * Mega feature: Display
+ * Test category: functionality test
+ */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_vec.h"
+#ifdef HAVE_LIBGHE
+#include "ghe.h"
+#endif
+
+#define GLOBAL_HIST_DISABLE 0
+#define GLOBAL_HIST_ENABLE 1
+#define GLOBAL_HIST_DELAY 2
+#define FLIP_COUNT 20
+
+/**
+ * SUBTEST: global-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: global-color
+ * Description: Test to enable histogram, flip color fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: algo-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data and enhance pixels by
+ * multiplying by a pixel factor using algo
+ *
+ * SUBTEST: algo-color
+ * Description: Test to enable histogram, flip color fbs, wait for histogram event
+ * and then read the histogram data and enhance pixels by multiplying
+ * by a pixel factor using algo
+ */
+
+IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
+
+typedef struct data {
+ igt_display_t display;
+ int drm_fd;
+ igt_fb_t fb[5];
+} data_t;
+
+typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
+
+static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Enable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is enabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
+}
+
+static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Disable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is disabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
+}
+
+static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *plane;
+
+ disable_and_verify_global_histogram(data, pipe);
+
+ for_each_plane_on_pipe(&data->display, pipe, plane)
+ igt_plane_set_fb(plane, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_remove_fb(data->display.drm_fd, &data->fb[0]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[1]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[2]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[3]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[4]);
+}
+
+static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
+{
+ uint64_t blob_id;
+
+ blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
+ IGT_CRTC_GLOBAL_HISTOGRAM);
+ if (blob_id == 0)
+ return NULL;
+
+ return drmModeGetPropertyBlob(data->drm_fd, blob_id);
+}
+
+static void read_global_histogram(data_t *data, enum pipe pipe,
+ drmModePropertyBlobRes **hist_blob_ptr)
+{
+ uint32_t *histogram_ptr;
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
+ do {
+ global_hist_blob = get_global_histogram_data(data, pipe);
+ } while (!global_hist_blob);
+
+ igt_reset_timeout();
+
+ *hist_blob_ptr = global_hist_blob;
+ histogram_ptr = (uint32_t *) global_hist_blob->data;
+ for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
+ igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
+}
+
+#ifdef HAVE_LIBGHE
+static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
+{
+ uint32_t i;
+
+ for (i = 0; i < size; i++) {
+ /* Displaying IET LUT */
+ igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
+ }
+
+ igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
+ dietfactor, size);
+}
+
+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
+ igt_output_t *output)
+{
+ struct globalhist_args *argsPtr =
+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
+
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
+ argsPtr->resolution_x = mode->hdisplay;
+ argsPtr->resolution_y = mode->vdisplay;
+
+ igt_debug("Making call to global histogram algorithm.\n");
+ histogram_compute_generate_data_bin(argsPtr);
+
+ return argsPtr;
+}
+
+static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
+ igt_output_t *output,
+ drmModePropertyBlobRes *global_hist_blob)
+{
+ struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
+
+ igt_assert(args);
+ igt_debug("Writing pixel factor blob.\n");
+
+ set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
+ ARRAY_SIZE(args->dietfactor));
+ free(args);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+#endif
+
+static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip monochrome fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 0, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 1, 1, &data->fb[1]));
+}
+
+static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip color fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.5, 0, 0.5, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 0, &data->fb[1]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 1, 0, &data->fb[2]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 1, &data->fb[3]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 1, &data->fb[4]));
+}
+
+static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
+{
+ igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
+{
+ int i;
+ struct udev_monitor *mon = igt_watch_uevents();
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ bool event_detected = false;
+ int fb_count = color_fb ? 5 : 2;
+
+ if (color_fb)
+ create_color_fbs(data, mode);
+ else
+ create_monochrome_fbs(data, mode);
+
+ flip_fb(data, pipe, output, &data->fb[0]);
+ enable_and_verify_global_histogram(data, pipe);
+
+ igt_flush_uevents(mon);
+ for (i = 1; i <= FLIP_COUNT; i++) {
+ flip_fb(data, pipe, output, &data->fb[i % fb_count]);
+
+ /* Check for histogram event on every flip and break the loop if detected. */
+ if (igt_global_histogram_event_detected(mon, 0)) {
+ event_detected = true;
+ break;
+ }
+ }
+
+ igt_cleanup_uevents(mon);
+ igt_assert_f(event_detected, "Histogram event not generated.\n");
+}
+
+static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
+ bool color_fb, test_t test_pixel_factor)
+{
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ prepare_pipe(data, pipe, output, color_fb);
+
+ read_global_histogram(data, pipe, &global_hist_blob);
+
+ if (test_pixel_factor)
+ test_pixel_factor(data, pipe, output, global_hist_blob);
+
+ drmModeFreePropertyBlob(global_hist_blob);
+ cleanup_pipe(data, pipe, output);
+}
+
+static void run_tests_for_global_histogram(data_t *data, bool color_fb,
+ test_t test_pixel_factor)
+{
+ enum pipe pipe;
+ igt_output_t *output;
+
+ for_each_connected_output(&data->display, output) {
+ for_each_pipe(&data->display, pipe) {
+ if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
+ continue;
+
+ igt_display_reset(&data->display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(&data->display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
+ run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
+ }
+ }
+}
+
+static void run_algo_test(data_t *data, bool color_fb)
+{
+#ifdef HAVE_LIBGHE
+ run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
+#else
+ igt_skip("Histogram algorithm library not found.\n");
+#endif
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ igt_require(data.display.is_atomic);
+ }
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data.");
+ igt_subtest_with_dynamic("global-basic")
+ run_tests_for_global_histogram(&data, false, NULL);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data.");
+ igt_subtest_with_dynamic("global-color")
+ run_tests_for_global_histogram(&data, true, NULL);
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-basic")
+ run_algo_test(&data, false);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-color")
+ run_algo_test(&data, true);
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 2724c7a9a..89bba6454 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -37,6 +37,7 @@ test_progs = [
'kms_getfb',
'kms_hdmi_inject',
'kms_hdr',
+ 'kms_histogram',
'kms_invalid_mode',
'kms_lease',
'kms_multipipe_modeset',
@@ -380,6 +381,7 @@ extra_dependencies = {
'gem_eio': [ realtime ],
'gem_exec_balancer': [ lib_igt_perf ],
'gem_mmap_offset': [ libatomic ],
+ 'kms_histogram': [ libghe ],
'i915_pm_freq_mult': [ lib_igt_perf ],
'i915_pm_rc6_residency': [ lib_igt_perf ],
'perf': [ lib_igt_i915_perf ],
--
2.25.1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [PATCH i-g-t v5] tests/kms_histogram: Added IGT support to validate global histogram
2024-11-05 5:24 ` [PATCH i-g-t v4] " Mohammed Thasleem
2024-11-05 17:22 ` Kamil Konieczny
@ 2024-12-11 19:36 ` Mohammed Thasleem
2024-12-11 20:31 ` [PATCH i-g-t v6] " Mohammed Thasleem
1 sibling, 1 reply; 40+ messages in thread
From: Mohammed Thasleem @ 2024-12-11 19:36 UTC (permalink / raw)
To: igt-dev; +Cc: Mohammed Thasleem, Adarsh G M, Bhanuprakash Modem
The IGT changes included tests for enabling/disabling histogram.
Validating the histogram event generation and if any One such library
Global Histogram Enhancement(GHE) present, will feed the histogram to
the library, get the enhanced LUT data and feed it back to the KMD.
For histogram generation, black/white and color images are flipped.
Display histogram is a hardware functionality where a statistics for 'x'
number of frames is generated to form a histogram data. This is notified
to the user via histogram event. Compositor then upon sensing the histogram
event will read the histogram data from KMD via crtc property.
A library can be developed to take this generated histogram as an input and
apply some algorithm to generate an Image Enhancement(IET).
This is further fed back to the KMD via crtc property. KMD will feed this
bask to the hardware. Hardware will use this as a multiplicand factor to
multiply with the incoming pixels at the end of the pipe which is then
pushed onto the display.
One such library Global Histogram Enhancement(GHE) will take the histogram
as input and apply the algorithm to enhance the density and then return
the enhanced factor.
GHE library link: https://github.com/intel/ghe
Display Global Histogram changes:
https://patchwork.freedesktop.org/series/135793/
https://lore.kernel.org/all/20241119104521.575377-1-arun.r.murthy@intel.com/
TODO: Extend the tests for different formats/modifiers.
v2: Remove eDP restriction. (Vandita)
Update crtc property name. (Arun)
v3: Update discription and test names. (Kamil)
Remove warning message from meson build. (Kamil)
v4: Fixed some nits. (Kamil)
v5: Update discription. (Kamil)
Minor changes. (Kamil)
Updated crtc property and algo api names. (Arun)
Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 23 +++
lib/igt_kms.h | 5 +
meson.build | 5 +
tests/kms_histogram.c | 349 ++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 2 +
5 files changed, 384 insertions(+)
create mode 100644 tests/kms_histogram.c
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 5d8096a17..9cf43d583 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -702,6 +702,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE",
+ [IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA",
+ [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2587,6 +2590,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER))
igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default");
+ if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
+ igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
+
pipe->out_fence_fd = -1;
}
@@ -5615,6 +5621,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
ARRAY_SIZE(props));
}
+/**
+ * igt_global_histogram_event_detected:
+ * @mon: A udev monitor initialized with #igt_watch_uevents
+ * @timeout_secs: How long to wait for a lease change event to occur.
+ *
+ * Detect if a global Histogram event was received since we last checked the monitor.
+ *
+ * Returns: true if a sysfs global Histogram event was received, false if we timed out
+ */
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
+{
+ const char *props[1] = {"HISTOGRAM"};
+ int expected_val = 1;
+
+ return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
+}
+
/**
* igt_flush_uevents:
* @mon: A udev monitor initialized with #igt_watch_uevents
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index bd154d1c1..f776e71a4 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -164,6 +164,9 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
IGT_NUM_CRTC_PROPS
};
@@ -1136,6 +1139,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
+
/**
* igt_vblank_after_eq:
* @a: First vblank sequence number.
diff --git a/meson.build b/meson.build
index 64f57f232..cd8d35145 100644
--- a/meson.build
+++ b/meson.build
@@ -195,6 +195,11 @@ else
chamelium = disabler()
endif
+libghe = dependency('libghe', required : false)
+if libghe.found()
+ config.set('HAVE_LIBGHE', 1)
+endif
+
build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
pthreads = dependency('threads')
diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
new file mode 100644
index 000000000..c25aa022b
--- /dev/null
+++ b/tests/kms_histogram.c
@@ -0,0 +1,349 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: kms histogram
+ * Category: Display
+ * Description: Test to verify histogram features.
+ * Functionality: histogram
+ * Mega feature: Display
+ * Test category: functionality test
+ */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_vec.h"
+#ifdef HAVE_LIBGHE
+#include "ghe.h"
+#endif
+
+#define GLOBAL_HIST_DISABLE 0
+#define GLOBAL_HIST_ENABLE 1
+#define GLOBAL_HIST_DELAY 2
+#define FLIP_COUNT 20
+
+/**
+ * SUBTEST: global-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: global-color
+ * Description: Test to enable histogram, flip color fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: algo-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data and enhance pixels by
+ * multiplying by a pixel factor using algo
+ *
+ * SUBTEST: algo-color
+ * Description: Test to enable histogram, flip color fbs, wait for histogram event
+ * and then read the histogram data and enhance pixels by multiplying
+ * by a pixel factor using algo
+ */
+
+IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
+
+typedef struct data {
+ igt_display_t display;
+ int drm_fd;
+ igt_fb_t fb[5];
+} data_t;
+
+typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
+
+static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Enable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is enabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
+}
+
+static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Disable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is disabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
+}
+
+static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *plane;
+
+ disable_and_verify_global_histogram(data, pipe);
+
+ for_each_plane_on_pipe(&data->display, pipe, plane)
+ igt_plane_set_fb(plane, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_remove_fb(data->display.drm_fd, &data->fb[0]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[1]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[2]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[3]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[4]);
+}
+
+static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
+{
+ uint64_t blob_id;
+
+ blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
+ IGT_CRTC_GLOBAL_HISTOGRAM);
+ if (blob_id == 0)
+ return NULL;
+
+ return drmModeGetPropertyBlob(data->drm_fd, blob_id);
+}
+
+static void read_global_histogram(data_t *data, enum pipe pipe,
+ drmModePropertyBlobRes **hist_blob_ptr)
+{
+ uint32_t *histogram_ptr;
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
+ do {
+ global_hist_blob = get_global_histogram_data(data, pipe);
+ } while (!global_hist_blob);
+
+ igt_reset_timeout();
+
+ *hist_blob_ptr = global_hist_blob;
+ histogram_ptr = (uint32_t *) global_hist_blob->data;
+ for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
+ igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
+}
+
+#ifdef HAVE_LIBGHE
+static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
+{
+ uint32_t i;
+
+ for (i = 0; i < size; i++) {
+ /* Displaying IET LUT */
+ igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
+ }
+
+ igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
+ dietfactor, size);
+}
+
+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
+ igt_output_t *output)
+{
+ struct globalhist_args *argsPtr =
+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
+
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
+ argsPtr->resolution_x = mode->hdisplay;
+ argsPtr->resolution_y = mode->vdisplay;
+
+ igt_debug("Making call to global histogram algorithm.\n");
+ histogram_compute_generate_data_bin(argsPtr);
+
+ return argsPtr;
+}
+
+static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
+ igt_output_t *output,
+ drmModePropertyBlobRes *global_hist_blob)
+{
+ struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
+
+ igt_assert(args);
+ igt_debug("Writing pixel factor blob.\n");
+
+ set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
+ ARRAY_SIZE(args->dietfactor));
+ free(args);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+#endif
+
+static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip monochrome fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 0, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 1, 1, &data->fb[1]));
+}
+
+static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip color fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.5, 0, 0.5, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 0, &data->fb[1]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 1, 0, &data->fb[2]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 1, &data->fb[3]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 1, &data->fb[4]));
+}
+
+static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
+{
+ igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
+{
+ int i;
+ struct udev_monitor *mon = igt_watch_uevents();
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ bool event_detected = false;
+ int fb_count = color_fb ? 5 : 2;
+
+ if (color_fb)
+ create_color_fbs(data, mode);
+ else
+ create_monochrome_fbs(data, mode);
+
+ flip_fb(data, pipe, output, &data->fb[0]);
+ enable_and_verify_global_histogram(data, pipe);
+
+ igt_flush_uevents(mon);
+ for (i = 1; i <= FLIP_COUNT; i++) {
+ flip_fb(data, pipe, output, &data->fb[i % fb_count]);
+
+ /* Check for histogram event on every flip and break the loop if detected. */
+ if (igt_global_histogram_event_detected(mon, 0)) {
+ event_detected = true;
+ break;
+ }
+ }
+
+ igt_cleanup_uevents(mon);
+ igt_assert_f(event_detected, "Histogram event not generated.\n");
+}
+
+static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
+ bool color_fb, test_t test_pixel_factor)
+{
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ prepare_pipe(data, pipe, output, color_fb);
+
+ read_global_histogram(data, pipe, &global_hist_blob);
+
+ if (test_pixel_factor)
+ test_pixel_factor(data, pipe, output, global_hist_blob);
+
+ drmModeFreePropertyBlob(global_hist_blob);
+ cleanup_pipe(data, pipe, output);
+}
+
+static void run_tests_for_global_histogram(data_t *data, bool color_fb,
+ test_t test_pixel_factor)
+{
+ enum pipe pipe;
+ igt_output_t *output;
+
+ for_each_connected_output(&data->display, output) {
+ for_each_pipe(&data->display, pipe) {
+ if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
+ continue;
+
+ igt_display_reset(&data->display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(&data->display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
+ run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
+ }
+ }
+}
+
+static void run_algo_test(data_t *data, bool color_fb)
+{
+#ifdef HAVE_LIBGHE
+ run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
+#else
+ igt_skip("Histogram algorithm library not found.\n");
+#endif
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ igt_require(data.display.is_atomic);
+ }
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data.");
+ igt_subtest_with_dynamic("global-basic")
+ run_tests_for_global_histogram(&data, false, NULL);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data.");
+ igt_subtest_with_dynamic("global-color")
+ run_tests_for_global_histogram(&data, true, NULL);
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-basic")
+ run_algo_test(&data, false);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-color")
+ run_algo_test(&data, true);
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 2724c7a9a..89bba6454 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -37,6 +37,7 @@ test_progs = [
'kms_getfb',
'kms_hdmi_inject',
'kms_hdr',
+ 'kms_histogram',
'kms_invalid_mode',
'kms_lease',
'kms_multipipe_modeset',
@@ -380,6 +381,7 @@ extra_dependencies = {
'gem_eio': [ realtime ],
'gem_exec_balancer': [ lib_igt_perf ],
'gem_mmap_offset': [ libatomic ],
+ 'kms_histogram': [ libghe ],
'i915_pm_freq_mult': [ lib_igt_perf ],
'i915_pm_rc6_residency': [ lib_igt_perf ],
'perf': [ lib_igt_i915_perf ],
--
2.25.1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* ✗ Fi.CI.BUILD: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev5)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (18 preceding siblings ...)
2024-12-11 14:07 ` [PATCH i-g-t v5] tests/kms_histogram: Added IGT support to validate global histogram Mohammed Thasleem
@ 2024-12-11 19:58 ` Patchwork
2024-12-11 21:56 ` ✓ i915.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev6) Patchwork
` (4 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-12-11 19:58 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev5)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
Applying: tests/kms_histogram: Added IGT support to validate global histogram
Using index info to reconstruct a base tree...
M lib/igt_kms.c
M lib/igt_kms.h
M meson.build
Falling back to patching base and 3-way merge...
Auto-merging meson.build
Auto-merging lib/igt_kms.h
Auto-merging lib/igt_kms.c
CONFLICT (content): Merge conflict in lib/igt_kms.c
Patch failed at 0001 tests/kms_histogram: Added IGT support to validate global histogram
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".
^ permalink raw reply [flat|nested] 40+ messages in thread
* [PATCH i-g-t v6] tests/kms_histogram: Added IGT support to validate global histogram
2024-12-11 19:36 ` [PATCH i-g-t v5] " Mohammed Thasleem
@ 2024-12-11 20:31 ` Mohammed Thasleem
2024-12-19 17:34 ` Kamil Konieczny
2025-01-04 6:26 ` Lucas De Marchi
0 siblings, 2 replies; 40+ messages in thread
From: Mohammed Thasleem @ 2024-12-11 20:31 UTC (permalink / raw)
To: igt-dev; +Cc: Mohammed Thasleem, Adarsh G M, Bhanuprakash Modem
The IGT changes included tests for enabling/disabling histogram.
Validating the histogram event generation and if any One such library
Global Histogram Enhancement(GHE) present, will feed the histogram to
the library, get the enhanced LUT data and feed it back to the KMD.
For histogram generation, black/white and color images are flipped.
Display histogram is a hardware functionality where a statistics for 'x'
number of frames is generated to form a histogram data. This is notified
to the user via histogram event. Compositor then upon sensing the histogram
event will read the histogram data from KMD via crtc property.
A library can be developed to take this generated histogram as an input and
apply some algorithm to generate an Image Enhancement(IET).
This is further fed back to the KMD via crtc property. KMD will feed this
bask to the hardware. Hardware will use this as a multiplicand factor to
multiply with the incoming pixels at the end of the pipe which is then
pushed onto the display.
One such library Global Histogram Enhancement(GHE) will take the histogram
as input and apply the algorithm to enhance the density and then return
the enhanced factor.
GHE library link: https://github.com/intel/ghe
Display Global Histogram changes:
https://patchwork.freedesktop.org/series/135793/
https://lore.kernel.org/all/20241119104521.575377-1-arun.r.murthy@intel.com/
TODO: Extend the tests for different formats/modifiers.
v2: Remove eDP restriction. (Vandita)
Update crtc property name. (Arun)
v3: Update discription and test names. (Kamil)
Remove warning message from meson build. (Kamil)
v4: Fixed some nits. (Kamil)
v5: Update discription. (Kamil)
Minor changes. (Kamil)
Updated crtc property and algo api names. (Arun)
v6: Fix build failure.
Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 23 +++
lib/igt_kms.h | 5 +
meson.build | 5 +
tests/kms_histogram.c | 349 ++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 2 +
5 files changed, 384 insertions(+)
create mode 100644 tests/kms_histogram.c
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 3d061abc5..a67d17c4f 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -714,6 +714,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE",
+ [IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA",
+ [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2615,6 +2618,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_VRR_ENABLED))
igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_VRR_ENABLED, 0);
+ if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
+ igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
+
pipe->out_fence_fd = -1;
}
@@ -5643,6 +5649,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
ARRAY_SIZE(props));
}
+/**
+ * igt_global_histogram_event_detected:
+ * @mon: A udev monitor initialized with #igt_watch_uevents
+ * @timeout_secs: How long to wait for a lease change event to occur.
+ *
+ * Detect if a global Histogram event was received since we last checked the monitor.
+ *
+ * Returns: true if a sysfs global Histogram event was received, false if we timed out
+ */
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
+{
+ const char *props[1] = {"HISTOGRAM"};
+ int expected_val = 1;
+
+ return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
+}
+
/**
* igt_flush_uevents:
* @mon: A udev monitor initialized with #igt_watch_uevents
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 8810123fb..1e2a927ab 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -165,6 +165,9 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HISTOGRAM,
+ IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
IGT_NUM_CRTC_PROPS
};
@@ -1140,6 +1143,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
+bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
+
/**
* igt_vblank_after_eq:
* @a: First vblank sequence number.
diff --git a/meson.build b/meson.build
index 0f26f95c8..fdcbb6450 100644
--- a/meson.build
+++ b/meson.build
@@ -197,6 +197,11 @@ else
chamelium = disabler()
endif
+libghe = dependency('libghe', required : false)
+if libghe.found()
+ config.set('HAVE_LIBGHE', 1)
+endif
+
build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
pthreads = dependency('threads')
diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
new file mode 100644
index 000000000..c25aa022b
--- /dev/null
+++ b/tests/kms_histogram.c
@@ -0,0 +1,349 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: kms histogram
+ * Category: Display
+ * Description: Test to verify histogram features.
+ * Functionality: histogram
+ * Mega feature: Display
+ * Test category: functionality test
+ */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_vec.h"
+#ifdef HAVE_LIBGHE
+#include "ghe.h"
+#endif
+
+#define GLOBAL_HIST_DISABLE 0
+#define GLOBAL_HIST_ENABLE 1
+#define GLOBAL_HIST_DELAY 2
+#define FLIP_COUNT 20
+
+/**
+ * SUBTEST: global-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: global-color
+ * Description: Test to enable histogram, flip color fbs, wait for
+ * histogram event and then read the histogram data
+ *
+ * SUBTEST: algo-basic
+ * Description: Test to enable histogram, flip monochrome fbs, wait for
+ * histogram event and then read the histogram data and enhance pixels by
+ * multiplying by a pixel factor using algo
+ *
+ * SUBTEST: algo-color
+ * Description: Test to enable histogram, flip color fbs, wait for histogram event
+ * and then read the histogram data and enhance pixels by multiplying
+ * by a pixel factor using algo
+ */
+
+IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
+
+typedef struct data {
+ igt_display_t display;
+ int drm_fd;
+ igt_fb_t fb[5];
+} data_t;
+
+typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
+
+static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Enable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is enabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
+}
+
+static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
+{
+ uint32_t global_hist_value;
+
+ /* Disable global_hist */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Verify if global_hist is disabled */
+ global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
+ igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
+}
+
+static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *plane;
+
+ disable_and_verify_global_histogram(data, pipe);
+
+ for_each_plane_on_pipe(&data->display, pipe, plane)
+ igt_plane_set_fb(plane, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_remove_fb(data->display.drm_fd, &data->fb[0]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[1]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[2]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[3]);
+ igt_remove_fb(data->display.drm_fd, &data->fb[4]);
+}
+
+static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
+{
+ uint64_t blob_id;
+
+ blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
+ IGT_CRTC_GLOBAL_HISTOGRAM);
+ if (blob_id == 0)
+ return NULL;
+
+ return drmModeGetPropertyBlob(data->drm_fd, blob_id);
+}
+
+static void read_global_histogram(data_t *data, enum pipe pipe,
+ drmModePropertyBlobRes **hist_blob_ptr)
+{
+ uint32_t *histogram_ptr;
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
+ do {
+ global_hist_blob = get_global_histogram_data(data, pipe);
+ } while (!global_hist_blob);
+
+ igt_reset_timeout();
+
+ *hist_blob_ptr = global_hist_blob;
+ histogram_ptr = (uint32_t *) global_hist_blob->data;
+ for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
+ igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
+}
+
+#ifdef HAVE_LIBGHE
+static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
+{
+ uint32_t i;
+
+ for (i = 0; i < size; i++) {
+ /* Displaying IET LUT */
+ igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
+ }
+
+ igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
+ dietfactor, size);
+}
+
+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
+ igt_output_t *output)
+{
+ struct globalhist_args *argsPtr =
+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
+
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
+ argsPtr->resolution_x = mode->hdisplay;
+ argsPtr->resolution_y = mode->vdisplay;
+
+ igt_debug("Making call to global histogram algorithm.\n");
+ histogram_compute_generate_data_bin(argsPtr);
+
+ return argsPtr;
+}
+
+static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
+ igt_output_t *output,
+ drmModePropertyBlobRes *global_hist_blob)
+{
+ struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
+
+ igt_assert(args);
+ igt_debug("Writing pixel factor blob.\n");
+
+ set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
+ ARRAY_SIZE(args->dietfactor));
+ free(args);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+#endif
+
+static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip monochrome fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 0, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 1, 1, &data->fb[1]));
+}
+
+static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
+{
+ /* TODO: Extend the tests for different formats/modifiers. */
+ /* These frame buffers used to flip color fbs to get histogram event. */
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.5, 0, 0.5, &data->fb[0]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 0, &data->fb[1]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 1, 0, &data->fb[2]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0, 0, 1, &data->fb[3]));
+
+ igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1, 0, 1, &data->fb[4]));
+}
+
+static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
+{
+ igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
+{
+ int i;
+ struct udev_monitor *mon = igt_watch_uevents();
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ bool event_detected = false;
+ int fb_count = color_fb ? 5 : 2;
+
+ if (color_fb)
+ create_color_fbs(data, mode);
+ else
+ create_monochrome_fbs(data, mode);
+
+ flip_fb(data, pipe, output, &data->fb[0]);
+ enable_and_verify_global_histogram(data, pipe);
+
+ igt_flush_uevents(mon);
+ for (i = 1; i <= FLIP_COUNT; i++) {
+ flip_fb(data, pipe, output, &data->fb[i % fb_count]);
+
+ /* Check for histogram event on every flip and break the loop if detected. */
+ if (igt_global_histogram_event_detected(mon, 0)) {
+ event_detected = true;
+ break;
+ }
+ }
+
+ igt_cleanup_uevents(mon);
+ igt_assert_f(event_detected, "Histogram event not generated.\n");
+}
+
+static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
+ bool color_fb, test_t test_pixel_factor)
+{
+ drmModePropertyBlobRes *global_hist_blob = NULL;
+
+ prepare_pipe(data, pipe, output, color_fb);
+
+ read_global_histogram(data, pipe, &global_hist_blob);
+
+ if (test_pixel_factor)
+ test_pixel_factor(data, pipe, output, global_hist_blob);
+
+ drmModeFreePropertyBlob(global_hist_blob);
+ cleanup_pipe(data, pipe, output);
+}
+
+static void run_tests_for_global_histogram(data_t *data, bool color_fb,
+ test_t test_pixel_factor)
+{
+ enum pipe pipe;
+ igt_output_t *output;
+
+ for_each_connected_output(&data->display, output) {
+ for_each_pipe(&data->display, pipe) {
+ if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
+ continue;
+
+ igt_display_reset(&data->display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(&data->display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
+ run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
+ }
+ }
+}
+
+static void run_algo_test(data_t *data, bool color_fb)
+{
+#ifdef HAVE_LIBGHE
+ run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
+#else
+ igt_skip("Histogram algorithm library not found.\n");
+#endif
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ igt_require(data.display.is_atomic);
+ }
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data.");
+ igt_subtest_with_dynamic("global-basic")
+ run_tests_for_global_histogram(&data, false, NULL);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data.");
+ igt_subtest_with_dynamic("global-color")
+ run_tests_for_global_histogram(&data, true, NULL);
+
+ igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
+ "event and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-basic")
+ run_algo_test(&data, false);
+
+ igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
+ "and then read the histogram data and enhance pixels by multiplying "
+ "by a pixel factor using algo.");
+ igt_subtest_with_dynamic("algo-color")
+ run_algo_test(&data, true);
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 2724c7a9a..89bba6454 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -37,6 +37,7 @@ test_progs = [
'kms_getfb',
'kms_hdmi_inject',
'kms_hdr',
+ 'kms_histogram',
'kms_invalid_mode',
'kms_lease',
'kms_multipipe_modeset',
@@ -380,6 +381,7 @@ extra_dependencies = {
'gem_eio': [ realtime ],
'gem_exec_balancer': [ lib_igt_perf ],
'gem_mmap_offset': [ libatomic ],
+ 'kms_histogram': [ libghe ],
'i915_pm_freq_mult': [ lib_igt_perf ],
'i915_pm_rc6_residency': [ lib_igt_perf ],
'perf': [ lib_igt_i915_perf ],
--
2.25.1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (19 preceding siblings ...)
2024-12-11 19:58 ` ✗ Fi.CI.BUILD: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev5) Patchwork
@ 2024-12-11 21:56 ` Patchwork
2024-12-11 22:20 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-12-11 21:56 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev6)
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from IGT_8149 -> IGTPW_12300
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/index.html
Participating hosts (46 -> 44)
------------------------------
Missing (2): fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in IGTPW_12300 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][1] -> [ABORT][2] ([i915#12061]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8149/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- {bat-arls-6}: [ABORT][3] ([i915#12061]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8149/bat-arls-6/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [SKIP][5] ([i915#9197]) -> [PASS][6] +3 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8149/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Warnings ####
* igt@kms_busy@basic@flip:
- fi-cfl-8109u: [DMESG-WARN][7] ([i915#11621] / [i915#1982]) -> [DMESG-WARN][8] ([i915#11621]) +1 other test dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8149/fi-cfl-8109u/igt@kms_busy@basic@flip.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/fi-cfl-8109u/igt@kms_busy@basic@flip.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8149 -> IGTPW_12300
* Linux: CI_DRM_15824 -> CI_DRM_15826
CI-20190529: 20190529
CI_DRM_15824: b34d1ff04eaa0ed48ef25f1d758d2a55f7c3c292 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15826: f248857cbe7f15f761dad3c61b0fc21b5124de43 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12300: 042d613cbaf4c77da980322b1164c448a0aa40cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8149: 1e3893ae48c972da2338a62477d74de0f7b26776 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/index.html
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (20 preceding siblings ...)
2024-12-11 21:56 ` ✓ i915.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev6) Patchwork
@ 2024-12-11 22:20 ` Patchwork
2024-12-12 2:21 ` ✗ Xe.CI.Full: failure " Patchwork
` (2 subsequent siblings)
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-12-11 22:20 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5133 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev6)
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8149_BAT -> XEIGTPW_12300_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 8)
------------------------------
Additional (1): bat-lnl-1
Known issues
------------
Here are the changes found in XEIGTPW_12300_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-lnl-1: NOTRUN -> [SKIP][1] ([Intel XE#1466])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-lnl-1: NOTRUN -> [SKIP][2] ([Intel XE#2244])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-lnl-1: NOTRUN -> [SKIP][3] ([Intel XE#352]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_hdmi_inject@inject-audio:
- bat-lnl-1: NOTRUN -> [SKIP][4] ([Intel XE#1470] / [Intel XE#2853])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-lnl-1: NOTRUN -> [SKIP][5] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- bat-lnl-1: NOTRUN -> [SKIP][6] ([Intel XE#688]) +17 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_live_ktest@xe_bo:
- bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#1192]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_mmap@vram:
- bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#1416])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-lnl-1: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#2838])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-lnl-1: NOTRUN -> [SKIP][10] ([Intel XE#977])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-lnl-1: NOTRUN -> [SKIP][11] ([Intel XE#979])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-lnl-1: NOTRUN -> [SKIP][12] ([Intel XE#3342])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/bat-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8149 -> IGTPW_12300
* Linux: xe-2354-49199ebefcd6fc1e6dc38eafa23a2825bf39c27d -> xe-2355-a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238
IGTPW_12300: 042d613cbaf4c77da980322b1164c448a0aa40cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8149: 1e3893ae48c972da2338a62477d74de0f7b26776 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2354-49199ebefcd6fc1e6dc38eafa23a2825bf39c27d: 49199ebefcd6fc1e6dc38eafa23a2825bf39c27d
xe-2355-a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238: a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/index.html
[-- Attachment #2: Type: text/html, Size: 5958 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✗ Xe.CI.Full: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (21 preceding siblings ...)
2024-12-11 22:20 ` ✓ Xe.CI.BAT: " Patchwork
@ 2024-12-12 2:21 ` Patchwork
2024-12-12 10:33 ` Thasleem, Mohammed
2024-12-12 5:33 ` ✗ i915.CI.Full: " Patchwork
2024-12-13 10:31 ` ✓ i915.CI.Full: success " Patchwork
24 siblings, 1 reply; 40+ messages in thread
From: Patchwork @ 2024-12-12 2:21 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 94506 bytes --]
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev6)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8149_full -> XEIGTPW_12300_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12300_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12300_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12300_full:
### IGT changes ###
#### Possible regressions ####
* igt@fbdev@unaligned-read:
- shard-bmg: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@fbdev@unaligned-read.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
- shard-bmg: [PASS][2] -> [FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
* igt@kms_histogram@algo-basic (NEW):
- shard-bmg: NOTRUN -> [SKIP][4] +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_histogram@algo-basic.html
* igt@kms_histogram@global-basic (NEW):
- shard-lnl: NOTRUN -> [SKIP][5] +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_histogram@global-basic.html
* igt@xe_evict@evict-mixed-threads-large-multi-vm:
- shard-bmg: [PASS][6] -> [DMESG-WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html
New tests
---------
New tests have been introduced between XEIGT_8149_full and XEIGTPW_12300_full:
### New IGT tests (9) ###
* igt@kms_histogram@algo-basic:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@algo-color:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-basic:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-color:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@xe_gt_freq@freq_low_max:
- Statuses : 2 pass(s)
- Exec time: [0.20, 0.21] s
* igt@xe_gt_freq@freq_reset:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@xe_gt_freq@freq_reset_multiple:
- Statuses : 2 pass(s)
- Exec time: [25.11, 25.38] s
* igt@xe_gt_freq@freq_suspend:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.10, 6.49] s
* igt@xe_gt_freq@throttle_basic_api:
- Statuses : 2 pass(s)
- Exec time: [0.00, 0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_12300_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: NOTRUN -> [DMESG-WARN][8] ([Intel XE#3468]) +36 other tests dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3157])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-bmg: [PASS][11] -> [DMESG-WARN][12] ([Intel XE#3468] / [Intel XE#3783])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_async_flips@async-flip-suspend-resume.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: NOTRUN -> [FAIL][13] ([Intel XE#911]) +3 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@invalid-async-flip:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#873])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#3768])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#664]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3658]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [DMESG-FAIL][18] ([Intel XE#3468]) +13 other tests dmesg-fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) +11 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2327]) +5 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +11 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +29 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1428]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#610])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1467])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1477])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2191]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1512]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#367]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +18 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +46 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2652] / [Intel XE#787]) +13 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#3432]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#3432]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2669]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#314]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2325]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#306]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +29 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2252]) +13 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2341]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#307])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1468])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][49] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +13 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2321]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +6 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2321]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2291]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +15 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#323]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2286])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1508])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#3383])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
- shard-bmg: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#2705])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
* igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled:
- shard-bmg: [PASS][64] -> [DMESG-FAIL][65] ([Intel XE#2705] / [Intel XE#3468])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2244]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2244]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#702])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#703])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1138])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_feature_discovery@display-4x.html
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1138])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2375])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2316])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#2882])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#3321]) +1 other test fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][78] ([Intel XE#3321])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][79] ([Intel XE#2882]) +3 other tests fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1421]) +21 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][81] -> [DMESG-WARN][82] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-warn
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][83] -> [DMESG-WARN][84] ([Intel XE#3468]) +69 other tests dmesg-warn
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html
* igt@kms_flip@bo-too-big-interruptible:
- shard-lnl: NOTRUN -> [TIMEOUT][85] ([Intel XE#1504]) +1 other test timeout
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_flip@bo-too-big-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][86] -> [DMESG-FAIL][87] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][88] ([Intel XE#886]) +1 other test fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [INCOMPLETE][90] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test incomplete
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1401]) +14 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][93] -> [INCOMPLETE][94] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2380]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1397]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-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-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1401] / [Intel XE#1745]) +14 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#352])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2311]) +45 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#651]) +41 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [FAIL][102] ([Intel XE#2333]) +16 other tests fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1469])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2313]) +32 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2312]) +6 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#656]) +119 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#605])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_getfb@getfb-reject-ccs.html
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2502])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2340])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1470])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-bmg: NOTRUN -> [DMESG-FAIL][111] ([Intel XE#2705] / [Intel XE#3468])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#3374] / [Intel XE#3544])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#3374] / [Intel XE#3544])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1503]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2927]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_joiner@basic-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2927])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#346])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#346])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2934])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2934])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2486])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format:
- shard-bmg: [PASS][122] -> [INCOMPLETE][123] ([Intel XE#1035] / [Intel XE#3468])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_plane@pixel-format.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_plane@pixel-format.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#599]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2393]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#3307])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +63 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2763]) +34 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#870]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#736])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][131] ([Intel XE#1430])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1439] / [Intel XE#836])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-bmg: NOTRUN -> [INCOMPLETE][133] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-41:
- shard-bmg: NOTRUN -> [DMESG-WARN][134] ([Intel XE#1727] / [Intel XE#3468])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-50:
- shard-bmg: NOTRUN -> [INCOMPLETE][135] ([Intel XE#3468])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-50.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1489]) +5 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2893]) +10 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1128]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1406]) +11 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2234] / [Intel XE#2850]) +17 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2234])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#3414]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#3414]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1127]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2330])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2413]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1435])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][149] ([Intel XE#899]) +1 other test fail
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_universal_plane@disable-primary-vs-flip:
- shard-bmg: [PASS][150] -> [INCOMPLETE][151] ([Intel XE#1727])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_universal_plane@disable-primary-vs-flip.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_universal_plane@disable-primary-vs-flip.html
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][152] ([Intel XE#1727])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-3.html
* igt@kms_vblank@wait-forked@pipe-a-dp-2:
- shard-bmg: [PASS][153] -> [DMESG-FAIL][154] ([Intel XE#3468]) +12 other tests dmesg-fail
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_vblank@wait-forked@pipe-a-dp-2.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_vblank@wait-forked@pipe-a-dp-2.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#1499]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1499]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#756])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#756]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1091] / [Intel XE#2849])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#1091] / [Intel XE#2849])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1447]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2905]) +16 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@exec-queue-placements:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#2905]) +31 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_eudebug@exec-queue-placements.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][164] ([Intel XE#1473])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#688]) +31 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [TIMEOUT][166] ([Intel XE#1473] / [Intel XE#2472]) +1 other test timeout
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate:
- shard-bmg: NOTRUN -> [DMESG-WARN][167] ([Intel XE#1727])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate.html
* igt@xe_exec_balancer@no-exec-parallel-userptr:
- shard-bmg: [PASS][168] -> [DMESG-WARN][169] ([Intel XE#1727]) +7 other tests dmesg-warn
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_exec_balancer@no-exec-parallel-userptr.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_exec_balancer@no-exec-parallel-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2322]) +13 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#1392]) +28 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [PASS][172] -> [DMESG-WARN][173] ([Intel XE#3467])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#3343] / [Intel XE#3468])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: NOTRUN -> [DMESG-WARN][176] ([Intel XE#3467])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][177] ([Intel XE#3343] / [Intel XE#3468])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: NOTRUN -> [DMESG-WARN][178] ([Intel XE#3467] / [Intel XE#3468]) +2 other tests dmesg-warn
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#2229]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2229])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#2833])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#560])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_media_fill@media-fill.html
- shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#2459] / [Intel XE#2596])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#1416])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_mmap@vram.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#378])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210]) -> ([PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [SKIP][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236]) ([Intel XE#378])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-7/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-7/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-5/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-5/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-5/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-1/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-1/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-1/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_module_load@load.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][237] -> [DMESG-FAIL][238] ([Intel XE#3467])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@xe_module_load@many-reload.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_module_load@many-reload.html
* igt@xe_noexec_ping_pong:
- shard-lnl: NOTRUN -> [SKIP][239] ([Intel XE#379])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_noexec_ping_pong.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][240] ([Intel XE#2248])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][241] ([Intel XE#1420] / [Intel XE#2838])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][242] ([Intel XE#977])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][243] ([Intel XE#2245])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-lnl: NOTRUN -> [SKIP][244] ([Intel XE#979])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][245] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][246] ([Intel XE#2284])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][247] ([Intel XE#1948])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][248] ([Intel XE#2284])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][249] ([Intel XE#584]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-mocs:
- shard-bmg: NOTRUN -> [DMESG-WARN][250] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [ABORT][251] ([Intel XE#1607] / [Intel XE#1794])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [PASS][252] -> [ABORT][253] ([Intel XE#1794])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: NOTRUN -> [FAIL][254] ([Intel XE#958])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][255] ([Intel XE#944]) +6 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][256] ([Intel XE#3342]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [DMESG-WARN][257] ([Intel XE#3468]) -> [PASS][258] +67 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [DMESG-WARN][259] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][260] +1 other test pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][261] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [SKIP][263] ([Intel XE#2291]) -> [PASS][264] +1 other test pass
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [SKIP][265] ([Intel XE#2316]) -> [PASS][266] +2 other tests pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][267] ([Intel XE#3321]) -> [PASS][268] +1 other test pass
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3:
- shard-bmg: [FAIL][269] ([Intel XE#2882]) -> [PASS][270] +1 other test pass
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-bmg: [INCOMPLETE][271] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][272] +1 other test pass
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc:
- shard-bmg: [INCOMPLETE][273] ([Intel XE#1727]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [DMESG-FAIL][275] ([Intel XE#3468]) -> [PASS][276] +21 other tests pass
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [DMESG-WARN][277] ([Intel XE#2566] / [Intel XE#3468]) -> [PASS][278] +1 other test pass
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][279] ([Intel XE#718]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [INCOMPLETE][281] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3:
- shard-bmg: [DMESG-WARN][283] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][284] +4 other tests pass
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][285] ([Intel XE#1522]) -> [PASS][286] +1 other test pass
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@kms_vrr@flipline.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_vrr@flipline.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [DMESG-WARN][287] ([Intel XE#3467]) -> [PASS][288] +1 other test pass
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [DMESG-WARN][289] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [DMESG-WARN][291] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][292] +2 other tests pass
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_intel_bb@create-in-region@region-vram0:
- shard-bmg: [DMESG-WARN][293] ([Intel XE#1727]) -> [PASS][294] +3 other tests pass
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_intel_bb@create-in-region@region-vram0.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_intel_bb@create-in-region@region-vram0.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [SKIP][295] ([Intel XE#1192]) -> [PASS][296] +1 other test pass
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_live_ktest@xe_bo.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-lnl: [SKIP][297] ([Intel XE#1192]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_live_ktest@xe_dma_buf.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_pm@s2idle-basic-exec:
- shard-lnl: [ABORT][299] ([Intel XE#1358] / [Intel XE#1616] / [Intel XE#3766]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_pm@s2idle-basic-exec.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: [ABORT][301] ([Intel XE#1358] / [Intel XE#1616]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_pm@s2idle-d3hot-basic-exec.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-lnl: [ABORT][303] ([Intel XE#1358] / [Intel XE#3673]) -> [PASS][304] +1 other test pass
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_pm@s2idle-exec-after.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-mocs:
- shard-bmg: [ABORT][305] ([Intel XE#3468] / [Intel XE#3673]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_pm@s2idle-mocs.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [ABORT][307] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-prefetch.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [ABORT][309] ([Intel XE#1616]) -> [PASS][310] +2 other tests pass
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-lnl: [ABORT][311] ([Intel XE#1616] / [Intel XE#1694] / [Intel XE#3766]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_pm@s2idle-vm-bind-userptr.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-basic:
- shard-bmg: [DMESG-WARN][313] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@xe_pm@s3-basic.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_pm@s3-basic.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [ABORT][315] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-lnl: [ABORT][317] ([Intel XE#3673]) -> [PASS][318] +24 other tests pass
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_pm_residency@gt-c6-freeze@gt0.html
- shard-bmg: [ABORT][319] ([Intel XE#3673]) -> [PASS][320] +1 other test pass
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [DMESG-WARN][321] ([Intel XE#1727] / [Intel XE#3467]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][323] ([Intel XE#1178]) -> [INCOMPLETE][324] ([Intel XE#2715] / [Intel XE#3468]) +3 other tests incomplete
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_content_protection@legacy.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_content_protection@legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][325] ([Intel XE#3468]) -> [INCOMPLETE][326] ([Intel XE#3226])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][327] ([Intel XE#2291]) -> [DMESG-WARN][328] ([Intel XE#877])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][329] ([Intel XE#877]) -> [SKIP][330] ([Intel XE#2291])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [DMESG-FAIL][331] ([Intel XE#3468]) -> [FAIL][332] ([Intel XE#1695])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-bmg: [DMESG-WARN][333] ([Intel XE#3468]) -> [SKIP][334] ([Intel XE#2316])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [DMESG-FAIL][335] ([Intel XE#1727] / [Intel XE#3468]) -> [INCOMPLETE][336] ([Intel XE#2597] / [Intel XE#3468])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-bmg: [DMESG-WARN][337] ([Intel XE#1727] / [Intel XE#3468]) -> [INCOMPLETE][338] ([Intel XE#1727] / [Intel XE#3468])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][339] ([Intel XE#2312]) -> [SKIP][340] ([Intel XE#2311]) +8 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][341] ([Intel XE#2311]) -> [SKIP][342] ([Intel XE#2312]) +4 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [FAIL][343] ([Intel XE#2333]) -> [DMESG-FAIL][344] ([Intel XE#3468]) +4 other tests dmesg-fail
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [FAIL][345] ([Intel XE#2333]) -> [SKIP][346] ([Intel XE#2312]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][347] ([Intel XE#2312]) -> [FAIL][348] ([Intel XE#2333]) +1 other test fail
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [DMESG-FAIL][349] ([Intel XE#3468]) -> [FAIL][350] ([Intel XE#2333]) +10 other tests fail
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][351] ([Intel XE#2312]) -> [DMESG-FAIL][352] ([Intel XE#3468])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][353] ([Intel XE#2333]) -> [INCOMPLETE][354] ([Intel XE#1727] / [Intel XE#2050])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][355] ([Intel XE#2312]) -> [SKIP][356] ([Intel XE#2313]) +8 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][357] ([Intel XE#2313]) -> [SKIP][358] ([Intel XE#2312]) +8 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [TIMEOUT][359] ([Intel XE#1473]) -> [INCOMPLETE][360] ([Intel XE#1473] / [Intel XE#3468])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [INCOMPLETE][361] ([Intel XE#1473] / [Intel XE#3468]) -> [FAIL][362] ([Intel XE#1000])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [TIMEOUT][363] ([Intel XE#1473]) -> [FAIL][364] ([Intel XE#1000])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [DMESG-WARN][365] ([Intel XE#3343]) -> [DMESG-WARN][366] ([Intel XE#3343] / [Intel XE#3468])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [DMESG-WARN][367] -> [DMESG-WARN][368] ([Intel XE#3468])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [DMESG-WARN][369] ([Intel XE#3467]) -> [DMESG-WARN][370] ([Intel XE#3467] / [Intel XE#3468])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][371] ([Intel XE#1192]) -> [SKIP][372] ([Intel XE#2833])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3783
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8149 -> IGTPW_12300
* Linux: xe-2354-49199ebefcd6fc1e6dc38eafa23a2825bf39c27d -> xe-2355-a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238
IGTPW_12300: 042d613cbaf4c77da980322b1164c448a0aa40cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8149: 1e3893ae48c972da2338a62477d74de0f7b26776 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2354-49199ebefcd6fc1e6dc38eafa23a2825bf39c27d: 49199ebefcd6fc1e6dc38eafa23a2825bf39c27d
xe-2355-a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238: a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/index.html
[-- Attachment #2: Type: text/html, Size: 113582 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (22 preceding siblings ...)
2024-12-12 2:21 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-12-12 5:33 ` Patchwork
2024-12-12 10:29 ` Thasleem, Mohammed
2024-12-13 10:31 ` ✓ i915.CI.Full: success " Patchwork
24 siblings, 1 reply; 40+ messages in thread
From: Patchwork @ 2024-12-12 5:33 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev6)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15826_full -> IGTPW_12300_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12300_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12300_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12300_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@massive-random:
- shard-dg2: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-11/igt@gem_lmem_swapping@massive-random.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_lmem_swapping@massive-random.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [PASS][5] -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@i915_pm_rpm@system-suspend-devices.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_selftest@live:
- shard-rkl: [PASS][7] -> [DMESG-FAIL][8] +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-5/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@i915_selftest@live.html
* igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [CRASH][9] +3 other tests crash
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][11] -> [DMESG-WARN][12] +1 other test dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_histogram@algo-basic (NEW):
- shard-mtlp: NOTRUN -> [SKIP][13] +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_histogram@algo-basic.html
* igt@kms_histogram@algo-color (NEW):
- shard-dg2: NOTRUN -> [SKIP][14] +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-5/igt@kms_histogram@algo-color.html
* igt@kms_histogram@global-basic (NEW):
- shard-rkl: NOTRUN -> [SKIP][15] +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_histogram@global-basic.html
* igt@kms_histogram@global-color (NEW):
- shard-tglu: NOTRUN -> [SKIP][16] +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_histogram@global-color.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][17] +2 other tests incomplete
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@perf_pmu@rc6-suspend.html
New tests
---------
New tests have been introduced between CI_DRM_15826_full and IGTPW_12300_full:
### New IGT tests (4) ###
* igt@kms_histogram@algo-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@algo-color:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-color:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12300_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#8411])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#8411])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#11078])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][21] ([i915#11814] / [i915#11815])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
- shard-tglu: NOTRUN -> [ABORT][22] ([i915#12817] / [i915#5507])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8414])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#8414]) +18 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8414]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-1/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][29] -> [INCOMPLETE][30] ([i915#7297])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_ccs@suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#9323])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#9323])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][33] -> [INCOMPLETE][34] ([i915#12392] / [i915#7297])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#6335])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#6335])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#8562])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][38] ([i915#12353])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk7/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#8555]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][40] ([i915#1099]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb4/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@engines:
- shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#280])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#280])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#280])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#280])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][45] -> [ABORT][46] ([i915#10030] / [i915#7975] / [i915#8213])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-2/igt@gem_eio@hibernate.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][47] -> [FAIL][48] ([i915#12543] / [i915#5784])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-17/igt@gem_eio@reset-stress.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4771])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#8555])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4525]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4525]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4525])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#6334]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][55] ([i915#6334]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#6344])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#6344])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4812])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3539] / [i915#4852]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3539] / [i915#4852]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3281]) +11 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3281]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3281]) +9 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@gem_exec_reloc@basic-wc-read-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3281]) +10 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4812]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][66] -> [INCOMPLETE][67] ([i915#11441] / [i915#13304])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][68] -> [INCOMPLETE][69] ([i915#11441])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_exec_suspend@basic-s0@lmem0.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][70] ([i915#13196]) +1 other test incomplete
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4860]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#2190])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#4613]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#4613]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html
- shard-glk: NOTRUN -> [SKIP][75] ([i915#4613]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk8/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap_gtt@flink-race:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4077]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4077]) +9 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4083]) +6 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@gem_mmap_wc@write-read.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][81] ([i915#2658])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][82] ([i915#12964]) +1 other test timeout
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@gem_pxp@create-protected-buffer.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_pxp@create-protected-buffer.html
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglu: [PASS][85] -> [SKIP][86] ([i915#4270])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-4/igt@gem_pxp@fail-invalid-protected-context.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][87] ([i915#12917] / [i915#12964]) +2 other tests timeout
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#13033])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#13033])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3282]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3282])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@gem_readwrite@read-bad-handle.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8428]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190] / [i915#8428]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4885])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4885])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [PASS][97] -> [INCOMPLETE][98] ([i915#13306])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-glk1/igt@gem_softpin@noreloc-s3.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk4/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4077]) +15 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#4079]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4879])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#3323])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#3297]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3297])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#3297] / [i915#4880]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#3297]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@allowed-single:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gen9_exec_parse@allowed-single.html
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#2527]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#2856]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#2527]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#2527] / [i915#2856]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#2527] / [i915#2856]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@gen9_exec_parse@bb-start-cmd.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [PASS][116] -> [ABORT][117] ([i915#9820])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#8399])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#8399])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: NOTRUN -> [INCOMPLETE][120] ([i915#12455]) +1 other test incomplete
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [PASS][121] -> [FAIL][122] ([i915#12942]) +1 other test fail
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#11681] / [i915#6621])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@reset:
- shard-snb: NOTRUN -> [INCOMPLETE][124] ([i915#7790])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#11681])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6245])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][127] ([i915#9311]) +1 other test dmesg-warn
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@i915_selftest@mock.html
- shard-tglu: NOTRUN -> [DMESG-WARN][128] ([i915#9311]) +1 other test dmesg-warn
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-7/igt@i915_selftest@mock.html
- shard-glk: NOTRUN -> [DMESG-WARN][129] ([i915#9311]) +1 other test dmesg-warn
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@i915_selftest@mock.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][130] ([i915#4817])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk2/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#4212]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#4212])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#4215])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4212]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#8709]) +11 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#8709]) +7 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#8709]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#8709]) +7 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@crc-atomic:
- shard-glk: NOTRUN -> [INCOMPLETE][139] ([i915#1982]) +1 other test incomplete
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@kms_async_flips@crc-atomic.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [INCOMPLETE][140] ([i915#13287])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg1: [PASS][141] -> [FAIL][142] ([i915#5956])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#1769] / [i915#3555])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][146] -> [FAIL][147] ([i915#11808] / [i915#5956]) +1 other test fail
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][148] ([i915#5956])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5286]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#5286]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#5286]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#5286])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#5286]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][154] +8 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3638]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5190]) +7 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#3638]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6187])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#5190])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][160] +54 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538]) +7 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#12313]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#10307] / [i915#6095]) +177 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#6095]) +169 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#6095]) +74 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/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-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#12313])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#6095]) +24 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#12313])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][169] ([i915#12964]) +15 other tests dmesg-warn
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#12805])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#6095]) +90 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#6095]) +20 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#6095]) +49 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3742])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#7213]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#3742])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#7828]) +4 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#7828]) +6 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#7828]) +14 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#7828]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#7828]) +9 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#7828]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3116] / [i915#3299])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3299])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3299]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3116]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3116] / [i915#3299])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#3299]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#6944] / [i915#9424])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9424])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#9424])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#9424])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#9424]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#7116] / [i915#7118])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3555]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#13049]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#13049])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8814])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][201] -> [DMESG-WARN][202] ([i915#12964]) +40 other tests dmesg-warn
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555]) +4 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#13049]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-FAIL][206] ([i915#12964]) +2 other tests dmesg-fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#9809])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#13046] / [i915#5354]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#4103]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#9067])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#9067])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#4213])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#4103] / [i915#4213])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#4103])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][216] ([i915#12170])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][217] ([i915#11968])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#9833])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3804])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#1257])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_dp_aux_dev.html
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#1257])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#8812])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3469])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#1839])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#9337])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#9337])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#658])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#4881])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_fence_pin_leak.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#4881])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#3637]) +8 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8381]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#9934]) +5 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#8381]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#9934]) +7 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12745] / [i915#4839])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][242] ([i915#4839])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3637]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#9934]) +7 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#3637]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#8381]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-mtlp: [PASS][247] -> [FAIL][248] ([i915#11989]) +1 other test fail
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-6/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip@plain-flip-ts-check@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][249] ([i915#11989])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_flip@plain-flip-ts-check@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8810]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +5 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#2672]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672] / [i915#3555])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#8813]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555] / [i915#5190])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#2672]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#5274])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#5354]) +22 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#1825]) +24 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][269] +46 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#1825]) +12 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#8708]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-snb: [PASS][272] -> [SKIP][273] +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][274] -> [DMESG-FAIL][275] ([i915#12964]) +1 other test dmesg-fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][276] ([i915#10056])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#3458]) +11 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#8708]) +18 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#10433] / [i915#3458])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#8708]) +14 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#5439])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][282] +83 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#3023]) +13 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#3458]) +14 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][285] +402 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#6118])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#12713])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#10656])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#12388])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#10656])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#10656])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#12339])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#6301])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][298] +9 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][299] ([i915#12756]) +1 other test incomplete
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][300] ([i915#12178])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][301] ([i915#7862]) +1 other test fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][302] ([i915#12177])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][303] ([i915#10647]) +1 other test fail
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8821])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#3555]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#12247]) +13 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#12247]) +8 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#12247] / [i915#9423])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#12247]) +3 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#12247] / [i915#3555])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#12247] / [i915#3555])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9812])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#9812])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#12343])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#12343])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#9685])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#9685])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#3361])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#4281])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#8430])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#9519]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][322] -> [SKIP][323] ([i915#9519]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#9519])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#6524])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#6524])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#6524])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#12316]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#11520]) +8 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#11520]) +6 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][331] ([i915#11520]) +10 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#11520]) +4 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#11520]) +5 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#11520]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-glk: NOTRUN -> [SKIP][335] ([i915#11520]) +6 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#9683])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#9683]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#9683])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#9683])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#9683])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9688]) +13 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#9732]) +14 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +31 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +13 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +16 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-primary-render:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#9732]) +20 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_psr@psr-primary-render.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][347] +365 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#9685])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#5289])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#12755]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#12755] / [i915#5190])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#5289]) +2 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#5289])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg1: [PASS][354] -> [DMESG-WARN][355] ([i915#4423])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-12/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][356] ([i915#13179]) +1 other test abort
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_selftest@drm_framebuffer.html
- shard-snb: NOTRUN -> [ABORT][357] ([i915#13179]) +1 other test abort
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb5/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][358] ([i915#13179]) +1 other test abort
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][359] -> [FAIL][360] ([i915#5465]) +2 other tests fail
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-9/igt@kms_setmode@basic.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][361] -> [FAIL][362] ([i915#5465]) +2 other tests fail
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][363] ([IGT#160])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_sysfs_edid_timing.html
- shard-dg1: NOTRUN -> [FAIL][364] ([IGT#160] / [i915#6493])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][365] ([i915#8623])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][366] ([i915#12276]) +1 other test incomplete
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#11920])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][368] ([i915#11920])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][369] ([i915#11920])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#11920])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_vrr@lobf.html
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#11920])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#3555] / [i915#9906])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#3555] / [i915#9906])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#3555] / [i915#9906])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#9906])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#8808] / [i915#9906])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#9906])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][378] ([i915#2437] / [i915#9412])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][379] ([i915#2437]) +2 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#2437])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#2437] / [i915#9412])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#2437] / [i915#9412])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#2437] / [i915#9412])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][384] ([i915#2437] / [i915#9412])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][385] ([i915#2437])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#8516])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_busy@hang:
- shard-rkl: [PASS][387] -> [DMESG-WARN][388] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-5/igt@prime_busy@hang.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@prime_busy@hang.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#3708] / [i915#4077]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][390] ([i915#3708])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#3708])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][392] ([i915#12910]) +19 other tests fail
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][393] ([i915#9917]) +2 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-dg2: NOTRUN -> [SKIP][394] ([i915#9917])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4:
- shard-mtlp: NOTRUN -> [FAIL][395] ([i915#12910]) +8 other tests fail
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][396] ([i915#12910]) +8 other tests fail
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][397] +7 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][398] ([i915#4818])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][399] ([i915#4818])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@debugfs_test@read_all_entries_display_off:
- shard-mtlp: [ABORT][400] -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-8/igt@debugfs_test@read_all_entries_display_off.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@debugfs_test@read_all_entries_display_off.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [ABORT][402] ([i915#5507]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@device_reset@unbind-reset-rebind.html
* igt@gem_create@busy-create:
- shard-dg1: [INCOMPLETE][404] -> [PASS][405] +1 other test pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-14/igt@gem_create@busy-create.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_create@busy-create.html
* igt@gem_create@busy-create@lmem0:
- shard-dg2: [INCOMPLETE][406] -> [PASS][407] +1 other test pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-1/igt@gem_create@busy-create@lmem0.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@gem_create@busy-create@lmem0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: [INCOMPLETE][408] ([i915#12353]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [FAIL][410] ([i915#11980] / [i915#12580]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-7/igt@gem_ctx_persistence@hostile.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@unwedge-stress:
- shard-mtlp: [INCOMPLETE][412] -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-2/igt@gem_eio@unwedge-stress.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@gem_eio@unwedge-stress.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][414] ([i915#5493]) -> [PASS][415] +1 other test pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][416] ([i915#10729]) -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-tglu: [SKIP][418] ([i915#4270]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: [DMESG-WARN][420] ([i915#13029]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-10/igt@i915_module_load@reload-no-display.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][422] ([i915#12817] / [i915#9820]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][424] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [WARN][426] ([i915#12653]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@gem-idle:
- shard-dg2: [SKIP][428] -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-1/igt@i915_pm_rpm@gem-idle.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@i915_pm_rpm@gem-idle.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-dg1: [FAIL][430] -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1:
- shard-tglu:
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/index.html
^ permalink raw reply [flat|nested] 40+ messages in thread
* RE: ✗ i915.CI.Full: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
2024-12-12 5:33 ` ✗ i915.CI.Full: " Patchwork
@ 2024-12-12 10:29 ` Thasleem, Mohammed
0 siblings, 0 replies; 40+ messages in thread
From: Thasleem, Mohammed @ 2024-12-12 10:29 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org
Hi,
Below regression is not because of IGT patch. It might be due to something else requesting for full run.
* igt@gem_lmem_swapping@massive-random:
- shard-dg2: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-11/igt@gem_lmem_swapping@massive-random.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_lmem_swapping@massive-random.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [PASS][5] -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@i915_pm_rpm@system-suspend-devices.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_selftest@live:
- shard-rkl: [PASS][7] -> [DMESG-FAIL][8] +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-5/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@i915_selftest@live.html
* igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [CRASH][9] +3 other tests crash
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][11] -> [DMESG-WARN][12] +1 other test dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][17] +2 other tests incomplete
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@perf_pmu@rc6-suspend.html
Thanks,
Mohammed Thaseem
-----Original Message-----
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Thursday, December 12, 2024 11:03 AM
To: Thasleem, Mohammed <mohammed.thasleem@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ i915.CI.Full: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev6)
URL : https://patchwork.freedesktop.org/series/135789/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15826_full -> IGTPW_12300_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12300_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12300_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12300_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@massive-random:
- shard-dg2: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-11/igt@gem_lmem_swapping@massive-random.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_lmem_swapping@massive-random.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [PASS][5] -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@i915_pm_rpm@system-suspend-devices.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_selftest@live:
- shard-rkl: [PASS][7] -> [DMESG-FAIL][8] +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-5/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@i915_selftest@live.html
* igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [CRASH][9] +3 other tests crash
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][11] -> [DMESG-WARN][12] +1 other test dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_histogram@algo-basic (NEW):
- shard-mtlp: NOTRUN -> [SKIP][13] +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_histogram@algo-basic.html
* igt@kms_histogram@algo-color (NEW):
- shard-dg2: NOTRUN -> [SKIP][14] +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-5/igt@kms_histogram@algo-color.html
* igt@kms_histogram@global-basic (NEW):
- shard-rkl: NOTRUN -> [SKIP][15] +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_histogram@global-basic.html
* igt@kms_histogram@global-color (NEW):
- shard-tglu: NOTRUN -> [SKIP][16] +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_histogram@global-color.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][17] +2 other tests incomplete
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@perf_pmu@rc6-suspend.html
New tests
---------
New tests have been introduced between CI_DRM_15826_full and IGTPW_12300_full:
### New IGT tests (4) ###
* igt@kms_histogram@algo-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@algo-color:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-color:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12300_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#8411])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#8411])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#11078])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][21] ([i915#11814] / [i915#11815])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
- shard-tglu: NOTRUN -> [ABORT][22] ([i915#12817] / [i915#5507])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8414])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#8414]) +18 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8414]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-1/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][29] -> [INCOMPLETE][30] ([i915#7297])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_ccs@suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#9323])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#9323])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][33] -> [INCOMPLETE][34] ([i915#12392] / [i915#7297])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#6335])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#6335])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#8562])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][38] ([i915#12353])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk7/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#8555]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][40] ([i915#1099]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb4/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@engines:
- shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#280])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#280])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#280])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#280])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][45] -> [ABORT][46] ([i915#10030] / [i915#7975] / [i915#8213])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-2/igt@gem_eio@hibernate.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][47] -> [FAIL][48] ([i915#12543] / [i915#5784])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-17/igt@gem_eio@reset-stress.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4771])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#8555])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4525]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4525]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4525])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#6334]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][55] ([i915#6334]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#6344])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#6344])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4812])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3539] / [i915#4852]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3539] / [i915#4852]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3281]) +11 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3281]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3281]) +9 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@gem_exec_reloc@basic-wc-read-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3281]) +10 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4812]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][66] -> [INCOMPLETE][67] ([i915#11441] / [i915#13304])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][68] -> [INCOMPLETE][69] ([i915#11441])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_exec_suspend@basic-s0@lmem0.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][70] ([i915#13196]) +1 other test incomplete
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4860]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#2190])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#4613]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#4613]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html
- shard-glk: NOTRUN -> [SKIP][75] ([i915#4613]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk8/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap_gtt@flink-race:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4077]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4077]) +9 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4083]) +6 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@gem_mmap_wc@write-read.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][81] ([i915#2658])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][82] ([i915#12964]) +1 other test timeout
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@gem_pxp@create-protected-buffer.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_pxp@create-protected-buffer.html
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglu: [PASS][85] -> [SKIP][86] ([i915#4270])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-4/igt@gem_pxp@fail-invalid-protected-context.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][87] ([i915#12917] / [i915#12964]) +2 other tests timeout
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#13033])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#13033])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3282]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3282])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@gem_readwrite@read-bad-handle.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8428]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190] / [i915#8428]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4885])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4885])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [PASS][97] -> [INCOMPLETE][98] ([i915#13306])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-glk1/igt@gem_softpin@noreloc-s3.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk4/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4077]) +15 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#4079]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4879])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#3323])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#3297]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3297])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#3297] / [i915#4880]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#3297]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@allowed-single:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gen9_exec_parse@allowed-single.html
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#2527]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#2856]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#2527]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#2527] / [i915#2856]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#2527] / [i915#2856]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@gen9_exec_parse@bb-start-cmd.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [PASS][116] -> [ABORT][117] ([i915#9820])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#8399])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#8399])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: NOTRUN -> [INCOMPLETE][120] ([i915#12455]) +1 other test incomplete
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [PASS][121] -> [FAIL][122] ([i915#12942]) +1 other test fail
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#11681] / [i915#6621])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@reset:
- shard-snb: NOTRUN -> [INCOMPLETE][124] ([i915#7790])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#11681])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6245])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][127] ([i915#9311]) +1 other test dmesg-warn
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@i915_selftest@mock.html
- shard-tglu: NOTRUN -> [DMESG-WARN][128] ([i915#9311]) +1 other test dmesg-warn
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-7/igt@i915_selftest@mock.html
- shard-glk: NOTRUN -> [DMESG-WARN][129] ([i915#9311]) +1 other test dmesg-warn
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@i915_selftest@mock.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][130] ([i915#4817])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk2/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#4212]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#4212])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#4215])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4212]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#8709]) +11 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#8709]) +7 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#8709]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#8709]) +7 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@crc-atomic:
- shard-glk: NOTRUN -> [INCOMPLETE][139] ([i915#1982]) +1 other test incomplete
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@kms_async_flips@crc-atomic.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [INCOMPLETE][140] ([i915#13287])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg1: [PASS][141] -> [FAIL][142] ([i915#5956])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#1769] / [i915#3555])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][146] -> [FAIL][147] ([i915#11808] / [i915#5956]) +1 other test fail
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][148] ([i915#5956])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5286]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#5286]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#5286]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#5286])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#5286]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][154] +8 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3638]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5190]) +7 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#3638]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6187])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#5190])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][160] +54 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538]) +7 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#12313]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#10307] / [i915#6095]) +177 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#6095]) +169 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#6095]) +74 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/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-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#12313])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#6095]) +24 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#12313])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][169] ([i915#12964]) +15 other tests dmesg-warn
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#12805])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#6095]) +90 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#6095]) +20 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#6095]) +49 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3742])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#7213]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#3742])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#7828]) +4 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#7828]) +6 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#7828]) +14 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#7828]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#7828]) +9 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#7828]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3116] / [i915#3299])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3299])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3299]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3116]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3116] / [i915#3299])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#3299]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#6944] / [i915#9424])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9424])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#9424])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#9424])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#9424]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#7116] / [i915#7118])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3555]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#13049]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#13049])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8814])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][201] -> [DMESG-WARN][202] ([i915#12964]) +40 other tests dmesg-warn
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555]) +4 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#13049]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-FAIL][206] ([i915#12964]) +2 other tests dmesg-fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#9809])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#13046] / [i915#5354]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#4103]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#9067])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#9067])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#4213])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#4103] / [i915#4213])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#4103])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][216] ([i915#12170])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][217] ([i915#11968])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#9833])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3804])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#1257])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_dp_aux_dev.html
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#1257])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#8812])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3469])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#1839])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#9337])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#9337])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#658])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#4881])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_fence_pin_leak.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#4881])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#3637]) +8 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8381]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#9934]) +5 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#8381]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#9934]) +7 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12745] / [i915#4839])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][242] ([i915#4839])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3637]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#9934]) +7 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#3637]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#8381]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-mtlp: [PASS][247] -> [FAIL][248] ([i915#11989]) +1 other test fail
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-6/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip@plain-flip-ts-check@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][249] ([i915#11989])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_flip@plain-flip-ts-check@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8810]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +5 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#2672]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672] / [i915#3555])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#8813]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555] / [i915#5190])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#2672]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#5274])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#5354]) +22 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#1825]) +24 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][269] +46 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#1825]) +12 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#8708]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-snb: [PASS][272] -> [SKIP][273] +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][274] -> [DMESG-FAIL][275] ([i915#12964]) +1 other test dmesg-fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][276] ([i915#10056])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#3458]) +11 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#8708]) +18 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#10433] / [i915#3458])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#8708]) +14 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#5439])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][282] +83 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#3023]) +13 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#3458]) +14 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][285] +402 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#6118])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#12713])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#10656])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#12388])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#10656])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#10656])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#12339])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#6301])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][298] +9 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][299] ([i915#12756]) +1 other test incomplete
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][300] ([i915#12178])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][301] ([i915#7862]) +1 other test fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][302] ([i915#12177])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][303] ([i915#10647]) +1 other test fail
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8821])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#3555]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#12247]) +13 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#12247]) +8 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#12247] / [i915#9423])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#12247]) +3 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#12247] / [i915#3555])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#12247] / [i915#3555])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9812])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#9812])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#12343])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#12343])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#9685])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#9685])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#3361])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#4281])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#8430])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#9519]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][322] -> [SKIP][323] ([i915#9519]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#9519])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#6524])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#6524])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#6524])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#12316]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#11520]) +8 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#11520]) +6 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][331] ([i915#11520]) +10 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#11520]) +4 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#11520]) +5 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#11520]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-glk: NOTRUN -> [SKIP][335] ([i915#11520]) +6 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#9683])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#9683]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#9683])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#9683])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#9683])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9688]) +13 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#9732]) +14 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +31 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +13 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +16 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-primary-render:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#9732]) +20 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_psr@psr-primary-render.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][347] +365 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#9685])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#5289])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#12755]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#12755] / [i915#5190])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#5289]) +2 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#5289])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg1: [PASS][354] -> [DMESG-WARN][355] ([i915#4423])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-12/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][356] ([i915#13179]) +1 other test abort
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_selftest@drm_framebuffer.html
- shard-snb: NOTRUN -> [ABORT][357] ([i915#13179]) +1 other test abort
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb5/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][358] ([i915#13179]) +1 other test abort
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][359] -> [FAIL][360] ([i915#5465]) +2 other tests fail
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-9/igt@kms_setmode@basic.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][361] -> [FAIL][362] ([i915#5465]) +2 other tests fail
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][363] ([IGT#160])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_sysfs_edid_timing.html
- shard-dg1: NOTRUN -> [FAIL][364] ([IGT#160] / [i915#6493])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][365] ([i915#8623])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][366] ([i915#12276]) +1 other test incomplete
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#11920])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][368] ([i915#11920])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][369] ([i915#11920])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#11920])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_vrr@lobf.html
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#11920])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#3555] / [i915#9906])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#3555] / [i915#9906])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#3555] / [i915#9906])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#9906])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#8808] / [i915#9906])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#9906])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][378] ([i915#2437] / [i915#9412])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][379] ([i915#2437]) +2 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#2437])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#2437] / [i915#9412])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#2437] / [i915#9412])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#2437] / [i915#9412])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][384] ([i915#2437] / [i915#9412])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][385] ([i915#2437])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#8516])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_busy@hang:
- shard-rkl: [PASS][387] -> [DMESG-WARN][388] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-5/igt@prime_busy@hang.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@prime_busy@hang.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#3708] / [i915#4077]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][390] ([i915#3708])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#3708])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][392] ([i915#12910]) +19 other tests fail
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][393] ([i915#9917]) +2 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-dg2: NOTRUN -> [SKIP][394] ([i915#9917])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4:
- shard-mtlp: NOTRUN -> [FAIL][395] ([i915#12910]) +8 other tests fail
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][396] ([i915#12910]) +8 other tests fail
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][397] +7 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][398] ([i915#4818])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][399] ([i915#4818])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@debugfs_test@read_all_entries_display_off:
- shard-mtlp: [ABORT][400] -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-8/igt@debugfs_test@read_all_entries_display_off.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@debugfs_test@read_all_entries_display_off.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [ABORT][402] ([i915#5507]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@device_reset@unbind-reset-rebind.html
* igt@gem_create@busy-create:
- shard-dg1: [INCOMPLETE][404] -> [PASS][405] +1 other test pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-14/igt@gem_create@busy-create.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_create@busy-create.html
* igt@gem_create@busy-create@lmem0:
- shard-dg2: [INCOMPLETE][406] -> [PASS][407] +1 other test pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-1/igt@gem_create@busy-create@lmem0.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@gem_create@busy-create@lmem0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: [INCOMPLETE][408] ([i915#12353]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [FAIL][410] ([i915#11980] / [i915#12580]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-7/igt@gem_ctx_persistence@hostile.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@unwedge-stress:
- shard-mtlp: [INCOMPLETE][412] -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-2/igt@gem_eio@unwedge-stress.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@gem_eio@unwedge-stress.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][414] ([i915#5493]) -> [PASS][415] +1 other test pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][416] ([i915#10729]) -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-tglu: [SKIP][418] ([i915#4270]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: [DMESG-WARN][420] ([i915#13029]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-10/igt@i915_module_load@reload-no-display.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][422] ([i915#12817] / [i915#9820]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][424] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [WARN][426] ([i915#12653]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@gem-idle:
- shard-dg2: [SKIP][428] -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-1/igt@i915_pm_rpm@gem-idle.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@i915_pm_rpm@gem-idle.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-dg1: [FAIL][430] -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1:
- shard-tglu:
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/index.html
^ permalink raw reply [flat|nested] 40+ messages in thread
* RE: ✗ Xe.CI.Full: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
2024-12-12 2:21 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-12-12 10:33 ` Thasleem, Mohammed
2024-12-13 10:36 ` Illipilli, TejasreeX
0 siblings, 1 reply; 40+ messages in thread
From: Thasleem, Mohammed @ 2024-12-12 10:33 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 95543 bytes --]
Hi,
The regression is not because of IGT patch. It might be due to something else requesting for full run.
Possible regressions
* igt@fbdev@unaligned-read:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@fbdev@unaligned-read.html>
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html>
* igt@xe_evict@evict-mixed-threads-large-multi-vm:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html>
Thanks,
Mohammed Thasleem
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Thursday, December 12, 2024 7:52 AM
To: Thasleem, Mohammed <mohammed.thasleem@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.Full: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
Patch Details
Series:
tests/kms_histogram: Added IGT support to validate global histogram (rev6)
URL:
https://patchwork.freedesktop.org/series/135789/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/index.html
CI Bug Log - changes from XEIGT_8149_full -> XEIGTPW_12300_full
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12300_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12300_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_12300_full:
IGT changes
Possible regressions
* igt@fbdev@unaligned-read:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@fbdev@unaligned-read.html>
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html>
* igt@kms_histogram@algo-basic (NEW):
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_histogram@algo-basic.html> +3 other tests skip
* igt@kms_histogram@global-basic (NEW):
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_histogram@global-basic.html> +3 other tests skip
* igt@xe_evict@evict-mixed-threads-large-multi-vm:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html>
New tests
New tests have been introduced between XEIGT_8149_full and XEIGTPW_12300_full:
New IGT tests (9)
* igt@kms_histogram@algo-basic:
* Statuses : 2 skip(s)
* Exec time: [0.0] s
* igt@kms_histogram@algo-color:
* Statuses : 2 skip(s)
* Exec time: [0.0] s
* igt@kms_histogram@global-basic:
* Statuses : 2 skip(s)
* Exec time: [0.0] s
* igt@kms_histogram@global-color:
* Statuses : 2 skip(s)
* Exec time: [0.0] s
* igt@xe_gt_freq@freq_low_max:
* Statuses : 2 pass(s)
* Exec time: [0.20, 0.21] s
* igt@xe_gt_freq@freq_reset:
* Statuses : 1 pass(s)
* Exec time: [0.51] s
* igt@xe_gt_freq@freq_reset_multiple:
* Statuses : 2 pass(s)
* Exec time: [25.11, 25.38] s
* igt@xe_gt_freq@freq_suspend:
* Statuses : 1 pass(s) 1 skip(s)
* Exec time: [0.10, 6.49] s
* igt@xe_gt_freq@throttle_basic_api:
* Statuses : 2 pass(s)
* Exec time: [0.00, 0.01] s
Known issues
Here are the changes found in XEIGTPW_12300_full that come from known issues:
IGT changes
Issues hit
* igt@core_hotunplug@unplug-rescan:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +36 other tests dmesg-warn
* igt@intel_hwmon@hwmon-read:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@intel_hwmon@hwmon-read.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>)
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (Intel XE#3157<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157>)
* igt@kms_async_flips@async-flip-suspend-resume:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_async_flips@async-flip-suspend-resume.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_async_flips@async-flip-suspend-resume.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3783<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3783>)
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests fail
* igt@kms_async_flips@invalid-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* igt@kms_async_flips@invalid-async-flip-atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_async_flips@invalid-async-flip-atomic.html> (Intel XE#3768<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768>)
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_async_flips@test-cursor-atomic.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>) +1 other test skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#3658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>) +1 other test skip
* igt@kms_big_fb@linear-16bpp-rotate-180:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_big_fb@linear-16bpp-rotate-180.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +13 other tests dmesg-fail
* igt@kms_big_fb@linear-32bpp-rotate-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +11 other tests skip
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +5 other tests skip
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +11 other tests skip
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +29 other tests skip
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#1428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
* igt@kms_big_fb@yf-tiled-addfb:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>)
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#1477<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477>)
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +4 other tests skip
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) +1 other test skip
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) +5 other tests skip
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +18 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +46 other tests skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +13 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2 other tests skip
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +7 other tests skip
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html> (Intel XE#314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) +3 other tests skip
* igt@kms_chamelium_color@ctm-0-50:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +3 other tests skip
* igt@kms_chamelium_color@ctm-blue-to-red:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_chamelium_color@ctm-blue-to-red.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +6 other tests skip
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +29 other tests skip
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +13 other tests skip
* igt@kms_content_protection@atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_content_protection@atomic.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) +1 other test skip
* igt@kms_content_protection@dp-mst-type-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
* igt@kms_content_protection@lic-type-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_content_protection@lic-type-1.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>) +4 other tests skip
* igt@kms_content_protection@mei-interface:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_content_protection@mei-interface.html> (Intel XE#1468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468>)
* igt@kms_content_protection@srm@pipe-a-dp-2:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html> (Intel XE#2715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
* igt@kms_cursor_crc@cursor-onscreen-128x42:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +13 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-512x170:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +1 other test skip
* igt@kms_cursor_crc@cursor-random-32x32:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +6 other tests skip
* igt@kms_cursor_crc@cursor-sliding-512x512:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +3 other tests skip
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +3 other tests skip
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +15 other tests skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +3 other tests skip
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (Intel XE#1508<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508>)
* igt@kms_display_modes@extended-mode-basic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#3383<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383>)
* igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705>)
* igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
* igt@kms_dsc@dsc-with-bpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_dsc@dsc-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
* igt@kms_feature_discovery@display-2x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_feature_discovery@display-2x.html> (Intel XE#702<https://gitlab.freedesktop.org/drm/xe/kernel/issues/702>)
* igt@kms_feature_discovery@display-3x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
* igt@kms_feature_discovery@display-4x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_feature_discovery@display-4x.html> (Intel XE#1138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_feature_discovery@display-4x.html> (Intel XE#1138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>)
* igt@kms_feature_discovery@dp-mst:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html> (Intel XE#2375<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375>)
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +1 other test fail
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +3 other tests fail
* igt@kms_flip@2x-plain-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_flip@2x-plain-flip.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +21 other tests skip
* igt@kms_flip@2x-plain-flip-fb-recreate:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +5 other tests dmesg-warn
* igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +69 other tests dmesg-warn
* igt@kms_flip@bo-too-big-interruptible:
* shard-lnl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_flip@bo-too-big-interruptible.html> (Intel XE#1504<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504>) +1 other test timeout
* igt@kms_flip@flip-vs-suspend-interruptible:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +6 other tests dmesg-fail
* igt@kms_flip@plain-flip-ts-check@a-edp1:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +1 other test fail
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +14 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +14 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +4 other tests skip
* igt@kms_force_connector_basic@prune-stale-modes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html> (Intel XE#352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/352>)
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +45 other tests skip
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +41 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +16 other tests fail
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> (Intel XE#1469<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +32 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +6 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +119 other tests skip
* igt@kms_getfb@getfb-reject-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#605<https://gitlab.freedesktop.org/drm/xe/kernel/issues/605>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#2502<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502>)
* igt@kms_getfb@getfb2-accept-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* igt@kms_hdmi_inject@inject-4k:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_hdmi_inject@inject-4k.html> (Intel XE#1470<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470>)
* igt@kms_hdr@bpc-switch-suspend:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_hdr@bpc-switch-suspend.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_hdr@brightness-with-hdr:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
* igt@kms_hdr@invalid-metadata-sizes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) +2 other tests skip
* igt@kms_joiner@basic-ultra-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_joiner@basic-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
* igt@kms_joiner@invalid-modeset-big-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* igt@kms_panel_fitting@atomic-fastset:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html> (Intel XE#2486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486>)
* igt@kms_plane@pixel-format:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_plane@pixel-format.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_plane@pixel-format.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +5 other tests skip
* igt@kms_plane_lowres@tiling-y:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html> (Intel XE#2393<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393>) +1 other test skip
* igt@kms_plane_scaling@intel-max-src-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_plane_scaling@intel-max-src-size.html> (Intel XE#3307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307>)
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +63 other tests skip
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +34 other tests skip
* igt@kms_pm_backlight@bad-brightness:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_pm_backlight@bad-brightness.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) +1 other test skip
* igt@kms_pm_dc@dc3co-vpb-simulation:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#736<https://gitlab.freedesktop.org/drm/xe/kernel/issues/736>)
* igt@kms_pm_dc@dc6-psr:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>)
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
* igt@kms_pm_rpm@legacy-planes-dpms:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2864<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_rpm@legacy-planes-dpms@plane-41:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_rpm@legacy-planes-dpms@plane-50:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-50.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>) +1 other test skip
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +5 other tests skip
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +10 other tests skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>) +1 other test skip
* igt@kms_psr@fbc-pr-dpms:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_psr@fbc-pr-dpms.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +11 other tests skip
* igt@kms_psr@pr-sprite-plane-onoff:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_psr@pr-sprite-plane-onoff.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +17 other tests skip
* igt@kms_psr@psr2-primary-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_psr@psr2-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234>)
* igt@kms_rotation_crc@bad-pixel-format:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +1 other test skip
* igt@kms_rotation_crc@primary-rotation-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +4 other tests skip
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html> (Intel XE#2330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330>)
* igt@kms_scaling_modes@scaling-mode-full-aspect:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (Intel XE#2413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413>) +1 other test skip
* igt@kms_setmode@clone-exclusive-crtc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_setmode@clone-exclusive-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) +1 other test fail
* igt@kms_universal_plane@disable-primary-vs-flip:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_universal_plane@disable-primary-vs-flip.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_universal_plane@disable-primary-vs-flip.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-3:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_vblank@wait-forked@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_vblank@wait-forked@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_vblank@wait-forked@pipe-a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +12 other tests dmesg-fail
* igt@kms_vrr@flip-suspend:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_vrr@flip-suspend.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
* igt@kms_vrr@negative-basic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_vrr@negative-basic.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
* igt@kms_writeback@writeback-check-output:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_writeback@writeback-check-output.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +3 other tests skip
* igt@sriov_basic@enable-vfs-autoprobe-off:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
* igt@xe_compute@ccs-mode-compute-kernel:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html> (Intel XE#1447<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447>) +1 other test skip
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +16 other tests skip
* igt@xe_eudebug@exec-queue-placements:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_eudebug@exec-queue-placements.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +31 other tests skip
* igt@xe_evict@evict-beng-mixed-many-threads-large:
* shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_evict@evict-large-multi-vm:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_evict@evict-large-multi-vm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +31 other tests skip
* igt@xe_evict@evict-mixed-many-threads-small:
* shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) +1 other test timeout
* igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@xe_exec_balancer@no-exec-parallel-userptr:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_exec_balancer@no-exec-parallel-userptr.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_exec_balancer@no-exec-parallel-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +7 other tests dmesg-warn
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +13 other tests skip
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +28 other tests skip
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) +1 other test skip
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
* igt@xe_live_ktest@xe_eudebug:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_live_ktest@xe_eudebug.html> (Intel XE#2833<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833>)
* igt@xe_media_fill@media-fill:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_media_fill@media-fill.html> (Intel XE#560<https://gitlab.freedesktop.org/drm/xe/kernel/issues/560>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_media_fill@media-fill.html> (Intel XE#2459<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459> / Intel XE#2596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596>)
* igt@xe_mmap@vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_mmap@vram.html> (Intel XE#1416<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416>)
* igt@xe_module_load@force-load:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@force-load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* igt@xe_module_load@load:
* shard-lnl: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* igt@xe_module_load@many-reload:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@xe_module_load@many-reload.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_module_load@many-reload.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_noexec_ping_pong:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_noexec_ping_pong.html> (Intel XE#379<https://gitlab.freedesktop.org/drm/xe/kernel/issues/379>)
* igt@xe_oa@oa-tlb-invalidate:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
* igt@xe_pat@pat-index-xehpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1420<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420> / Intel XE#2838<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838>)
* igt@xe_pat@pat-index-xelp:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_pat@pat-index-xelp.html> (Intel XE#977<https://gitlab.freedesktop.org/drm/xe/kernel/issues/977>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_pat@pat-index-xelp.html> (Intel XE#2245<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245>)
* igt@xe_pat@pat-index-xelpg:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>)
* igt@xe_pm@d3cold-mmap-vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_pm@d3cold-mmap-vram.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 other test skip
* igt@xe_pm@d3cold-mocs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_pm@d3cold-mocs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* igt@xe_pm@d3hot-mmap-vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_pm@d3hot-mmap-vram.html> (Intel XE#1948<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948>)
* igt@xe_pm@s2idle-d3cold-basic-exec:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_pm@s2idle-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* igt@xe_pm@s3-mocs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_pm@s3-mocs.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>) +3 other tests skip
* igt@xe_pm@s4-mocs:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_pm@s4-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_pm@s4-vm-bind-prefetch:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html> (Intel XE#1607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607> / Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>)
* igt@xe_pm@s4-vm-bind-userptr:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>)
* igt@xe_pm_residency@toggle-gt-c6:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html> (Intel XE#958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/958>)
* igt@xe_query@multigpu-query-invalid-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_query@multigpu-query-invalid-size.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +6 other tests skip
* igt@xe_sriov_flr@flr-vf1-clear:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) +1 other test skip
Possible fixes
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> +67 other tests pass
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> +1 other test pass
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html>
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html> +1 other test pass
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> +2 other tests pass
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html> +1 other test pass
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3.html> +1 other test pass
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html> +1 other test pass
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html>
* igt@kms_hdr@static-toggle-suspend:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html> +21 other tests pass
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html> (Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html> +1 other test pass
* igt@kms_pm_dc@dc5-psr:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html>
* igt@kms_pm_rpm@modeset-stress-extra-wait:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2864<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html>
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html> +4 other tests pass
* igt@kms_vrr@flipline:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@kms_vrr@flipline.html> (Intel XE#1522<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_vrr@flipline.html> +1 other test pass
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> +1 other test pass
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html>
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> +2 other tests pass
* igt@xe_intel_bb@create-in-region@region-vram0:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_intel_bb@create-in-region@region-vram0.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_intel_bb@create-in-region@region-vram0.html> +3 other tests pass
* igt@xe_live_ktest@xe_bo:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_live_ktest@xe_bo.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_live_ktest@xe_bo.html> +1 other test pass
* igt@xe_live_ktest@xe_dma_buf:
* shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_live_ktest@xe_dma_buf.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_live_ktest@xe_dma_buf.html>
* igt@xe_pm@s2idle-basic-exec:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3766<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_pm@s2idle-basic-exec.html>
* igt@xe_pm@s2idle-d3hot-basic-exec:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_pm@s2idle-d3hot-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_pm@s2idle-d3hot-basic-exec.html>
* igt@xe_pm@s2idle-exec-after:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_pm@s2idle-exec-after.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_pm@s2idle-exec-after.html> +1 other test pass
* igt@xe_pm@s2idle-mocs:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_pm@s2idle-mocs.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_pm@s2idle-mocs.html>
* igt@xe_pm@s2idle-vm-bind-prefetch:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html> +1 other test pass
* igt@xe_pm@s2idle-vm-bind-unbind-all:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html> +2 other tests pass
* igt@xe_pm@s2idle-vm-bind-userptr:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_pm@s2idle-vm-bind-userptr.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#1694<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694> / Intel XE#3766<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_pm@s2idle-vm-bind-userptr.html>
* igt@xe_pm@s3-basic:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@xe_pm@s3-basic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_pm@s3-basic.html>
* igt@xe_pm@s4-d3hot-basic-exec:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_pm@s4-d3hot-basic-exec.html>
* igt@xe_pm_residency@gt-c6-freeze@gt0:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_pm_residency@gt-c6-freeze@gt0.html> +24 other tests pass
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html> +1 other test pass
* igt@xe_wedged@wedged-mode-toggle:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html>
Warnings
* igt@kms_content_protection@legacy:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_content_protection@legacy.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_content_protection@legacy.html> (Intel XE#2715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests incomplete
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> (Intel XE#3226<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)
* igt@kms_fbcon_fbt@fbc-suspend:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>)
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
* igt@kms_flip@flip-vs-suspend:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html> (Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +8 other tests skip
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +4 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +1 other test fail
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +10 other tests fail
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2050<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050>)
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +8 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +8 other tests skip
* igt@xe_evict@evict-beng-mixed-many-threads-small:
* shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_evict@evict-beng-mixed-threads-large:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_evict@evict-beng-mixed-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>)
* igt@xe_evict@evict-beng-threads-large:
* shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_live_ktest@xe_eudebug:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html> (Intel XE#2833<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833>)
Build changes
* IGT: IGT_8149 -> IGTPW_12300
* Linux: xe-2354-49199ebefcd6fc1e6dc38eafa23a2825bf39c27d -> xe-2355-a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238
IGTPW_12300: 042d613cbaf4c77da980322b1164c448a0aa40cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8149: 1e3893ae48c972da2338a62477d74de0f7b26776 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2354-49199ebefcd6fc1e6dc38eafa23a2825bf39c27d: 49199ebefcd6fc1e6dc38eafa23a2825bf39c27d
xe-2355-a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238: a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238
[-- Attachment #2: Type: text/html, Size: 172681 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* ✓ i915.CI.Full: success for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
` (23 preceding siblings ...)
2024-12-12 5:33 ` ✗ i915.CI.Full: " Patchwork
@ 2024-12-13 10:31 ` Patchwork
24 siblings, 0 replies; 40+ messages in thread
From: Patchwork @ 2024-12-13 10:31 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
== Series Details ==
Series: tests/kms_histogram: Added IGT support to validate global histogram (rev6)
URL : https://patchwork.freedesktop.org/series/135789/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15826_full -> IGTPW_12300_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between CI_DRM_15826_full and IGTPW_12300_full:
### New IGT tests (4) ###
* igt@kms_histogram@algo-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@algo-color:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_histogram@global-color:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12300_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#11078])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][4] ([i915#11814] / [i915#11815])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
- shard-tglu: NOTRUN -> [ABORT][5] ([i915#12817] / [i915#5507])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +18 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-1/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#7297])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_ccs@suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][16] -> [INCOMPLETE][17] ([i915#12392] / [i915#7297])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#6335])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][21] ([i915#12353])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk7/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb4/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@engines:
- shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][28] -> [ABORT][29] ([i915#10030] / [i915#7975] / [i915#8213])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-2/igt@gem_eio@hibernate.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#13197])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][31] -> [FAIL][32] ([i915#12543] / [i915#5784])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-17/igt@gem_eio@reset-stress.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4771])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#8555])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#6344])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#6344])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +11 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +9 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@gem_exec_reloc@basic-wc-read-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +10 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][50] -> [INCOMPLETE][51] ([i915#11441] / [i915#13304])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][52] -> [INCOMPLETE][53] ([i915#11441])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-8/igt@gem_exec_suspend@basic-s0@lmem0.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][54] ([i915#13196]) +1 other test incomplete
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#2190])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@massive-random:
- shard-dg2: [PASS][57] -> [SKIP][58] ([i915#13332])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-11/igt@gem_lmem_swapping@massive-random.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html
- shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk8/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap_gtt@flink-race:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +9 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@gem_mmap_wc@write-read.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][67] ([i915#2658])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][68] ([i915#12964]) +1 other test timeout
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@gem_pxp@create-protected-buffer.html
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@gem_pxp@create-protected-buffer.html
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglu: [PASS][71] -> [SKIP][72] ([i915#4270])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-4/igt@gem_pxp@fail-invalid-protected-context.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][73] ([i915#12917] / [i915#12964]) +2 other tests timeout
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#13033])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#13033])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@gem_readwrite@read-bad-handle.html
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4885])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4885])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [PASS][83] -> [INCOMPLETE][84] ([i915#13306])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-glk1/igt@gem_softpin@noreloc-s3.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk4/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4077]) +15 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_tiled_pread_pwrite.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [PASS][87] -> [FAIL][88] ([i915#13319])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4879])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#3323])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#3297]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@allowed-single:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#2856]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@gen9_exec_parse@allowed-single.html
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#2856]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@gen9_exec_parse@bb-start-cmd.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [PASS][104] -> [ABORT][105] ([i915#9820])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#8399])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#8399])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: NOTRUN -> [INCOMPLETE][108] ([i915#12455]) +1 other test incomplete
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [PASS][109] -> [FAIL][110] ([i915#12942]) +1 other test fail
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [PASS][111] -> [SKIP][112] ([i915#13328])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@i915_pm_rpm@system-suspend-devices.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681] / [i915#6621])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@reset:
- shard-snb: NOTRUN -> [INCOMPLETE][114] ([i915#7790])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#6245])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live:
- shard-rkl: [PASS][117] -> [DMESG-FAIL][118] ([i915#13342])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-5/igt@i915_selftest@live.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [PASS][119] -> [DMESG-FAIL][120] ([i915#13338])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-5/igt@i915_selftest@live@gt_pm.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) +1 other test dmesg-warn
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@i915_selftest@mock.html
- shard-tglu: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) +1 other test dmesg-warn
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-7/igt@i915_selftest@mock.html
- shard-glk: NOTRUN -> [DMESG-WARN][123] ([i915#9311]) +1 other test dmesg-warn
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@i915_selftest@mock.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#4817])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk2/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#4212]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4212])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4215])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4212]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#8709]) +11 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#8709]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#8709]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#8709]) +7 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@crc-atomic:
- shard-glk: NOTRUN -> [INCOMPLETE][133] ([i915#1982]) +1 other test incomplete
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@kms_async_flips@crc-atomic.html
* igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [CRASH][134] ([i915#13287]) +3 other tests crash
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [INCOMPLETE][135] ([i915#13287]) +1 other test incomplete
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg1: [PASS][136] -> [FAIL][137] ([i915#5956])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][141] -> [FAIL][142] ([i915#11808] / [i915#5956]) +1 other test fail
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][143] ([i915#5956])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5286]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#5286]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#5286]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#5286])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#5286]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][149] +8 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3638]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +7 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3638]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6187])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#5190])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][155] +54 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4538]) +7 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#10307] / [i915#6095]) +177 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#6095]) +169 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#6095]) +74 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/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-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#12313])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#6095]) +24 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#12313])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][164] ([i915#12964]) +15 other tests dmesg-warn
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#12805])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#6095]) +90 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#6095]) +20 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][168] ([i915#12796])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#6095]) +49 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3742])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#7213]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3742])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#7828]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#7828]) +6 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#7828]) +14 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#7828]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#7828]) +9 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#7828]) +6 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3116] / [i915#3299])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3299])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3299]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3116]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3116] / [i915#3299])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#3299]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#9424])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#9424])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#9424])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#6944] / [i915#9424])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#9424]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#6944] / [i915#7116] / [i915#7118])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#3555]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#13049])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8814])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][197] -> [DMESG-WARN][198] ([i915#12964]) +40 other tests dmesg-warn
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#3555]) +4 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#13049]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-FAIL][202] ([i915#12964]) +2 other tests dmesg-fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9809])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#13046] / [i915#5354]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#4103] / [i915#4213]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#4103]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#9067])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#9067])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#4213])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#4103] / [i915#4213])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#4103])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][212] ([i915#12170])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][213] ([i915#11968])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9833])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#3804])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#1257])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_dp_aux_dev.html
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#1257])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#8812])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#3469])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#1839])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#9337])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#9337])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#658])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#4881])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_fence_pin_leak.html
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#4881])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#3637]) +8 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8381]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#9934]) +5 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#8381]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9934]) +7 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][237] ([i915#12745] / [i915#4839])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][238] ([i915#4839])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][239] -> [DMESG-WARN][240] ([i915#12314]) +1 other test dmesg-warn
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3637]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#9934]) +7 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#3637]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#8381]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-mtlp: [PASS][245] -> [FAIL][246] ([i915#11989]) +1 other test fail
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-6/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip@plain-flip-ts-check@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][247] ([i915#11989])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_flip@plain-flip-ts-check@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8810]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#2672]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#2587] / [i915#2672] / [i915#3555])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#2587] / [i915#2672]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +4 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#8813]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555] / [i915#5190])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#2672]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#5274])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#5354]) +22 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#1825]) +24 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][267] +46 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#1825]) +12 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#8708]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-snb: [PASS][270] -> [SKIP][271] +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][272] -> [DMESG-FAIL][273] ([i915#12964]) +1 other test dmesg-fail
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][274] ([i915#10056])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#3458]) +11 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#8708]) +18 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#10433] / [i915#3458])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#8708]) +14 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#5439])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][280] +83 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#3023]) +13 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#3458]) +14 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][283] +402 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#6118])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#12713])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_hdr@static-toggle.html
* igt@kms_histogram@algo-basic (NEW):
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#13340]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-9/igt@kms_histogram@algo-basic.html
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#13340]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_histogram@algo-basic.html
* igt@kms_histogram@algo-color (NEW):
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#13340]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-5/igt@kms_histogram@algo-color.html
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#13340]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_histogram@algo-color.html
* igt@kms_histogram@global-basic (NEW):
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#13339]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-3/igt@kms_histogram@global-basic.html
* igt@kms_histogram@global-color (NEW):
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#13339]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_histogram@global-color.html
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#13339]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-7/igt@kms_histogram@global-color.html
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#13339]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-11/igt@kms_histogram@global-color.html
* igt@kms_joiner@basic-big-joiner:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#10656])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#12388])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#10656])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#10656])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#12339])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#6301])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][304] +9 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][305] ([i915#12756]) +1 other test incomplete
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][306] ([i915#12178])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][307] ([i915#7862]) +1 other test fail
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][308] ([i915#12177])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][309] ([i915#10647]) +1 other test fail
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8821])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#3555]) +4 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#12247]) +13 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#12247]) +8 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#9423])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#12247]) +3 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#3555])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#3555])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9812])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#9812])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#12343])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#12343])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#9685])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#9685])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#3361])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#4281])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#8430])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#9519]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][328] -> [SKIP][329] ([i915#9519]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#9519])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#6524])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#6524])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#6524])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12316]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#11520]) +8 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#11520]) +6 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][337] ([i915#11520]) +10 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#11520]) +4 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#11520]) +5 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#11520]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-glk: NOTRUN -> [SKIP][341] ([i915#11520]) +6 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#9683])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#9683]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#9683])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#9683])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#9683])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#9688]) +13 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-3/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#9732]) +14 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +31 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#1072] / [i915#9732]) +13 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#1072] / [i915#9732]) +16 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-primary-render:
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#9732]) +20 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_psr@psr-primary-render.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][353] +365 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk6/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#9685])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#5289])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#12755]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#12755] / [i915#5190])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#5289]) +2 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#5289])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg1: [PASS][360] -> [DMESG-WARN][361] ([i915#4423])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-12/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][362] ([i915#13179]) +1 other test abort
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@kms_selftest@drm_framebuffer.html
- shard-snb: NOTRUN -> [ABORT][363] ([i915#13179]) +1 other test abort
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-snb5/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][364] ([i915#13179]) +1 other test abort
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][365] -> [FAIL][366] ([i915#5465]) +2 other tests fail
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-9/igt@kms_setmode@basic.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][367] -> [FAIL][368] ([i915#5465]) +2 other tests fail
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][369] ([IGT#160])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_sysfs_edid_timing.html
- shard-dg1: NOTRUN -> [FAIL][370] ([IGT#160] / [i915#6493])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][371] ([i915#8623])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][372] ([i915#12276]) +1 other test incomplete
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][373] ([i915#11920])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-10/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#11920])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-7/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#11920])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-13/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#11920])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-3/igt@kms_vrr@lobf.html
- shard-mtlp: NOTRUN -> [SKIP][377] ([i915#11920])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#3555] / [i915#9906])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#3555] / [i915#9906])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][380] ([i915#3555] / [i915#9906])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][381] ([i915#3555] / [i915#9906])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-mtlp: NOTRUN -> [SKIP][382] ([i915#8808] / [i915#9906])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#9906])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][384] ([i915#2437] / [i915#9412])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][385] ([i915#2437]) +2 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#2437])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#2437] / [i915#9412])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu-1: NOTRUN -> [SKIP][388] ([i915#2437] / [i915#9412])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#2437] / [i915#9412])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][390] ([i915#2437] / [i915#9412])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][391] ([i915#2437])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][392] ([i915#8516])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][393] ([i915#13341])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk9/igt@perf_pmu@rc6-suspend.html
* igt@prime_busy@hang:
- shard-rkl: [PASS][394] -> [DMESG-WARN][395] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-rkl-5/igt@prime_busy@hang.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-6/igt@prime_busy@hang.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#3708] / [i915#4077]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-4/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][397] ([i915#3708])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][398] ([i915#3708])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][399] ([i915#12910]) +19 other tests fail
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][400] ([i915#9917]) +2 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#9917])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4:
- shard-mtlp: NOTRUN -> [FAIL][402] ([i915#12910]) +8 other tests fail
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-8/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][403] ([i915#12910]) +8 other tests fail
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][404] +7 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#4818])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][406] ([i915#4818])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-4/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@debugfs_test@read_all_entries_display_off:
- shard-mtlp: [ABORT][407] -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-8/igt@debugfs_test@read_all_entries_display_off.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@debugfs_test@read_all_entries_display_off.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [ABORT][409] ([i915#5507]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-8/igt@device_reset@unbind-reset-rebind.html
* igt@gem_create@busy-create:
- shard-dg1: [INCOMPLETE][411] -> [PASS][412] +1 other test pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-14/igt@gem_create@busy-create.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-12/igt@gem_create@busy-create.html
* igt@gem_create@busy-create@lmem0:
- shard-dg2: [INCOMPLETE][413] -> [PASS][414] +1 other test pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg2-1/igt@gem_create@busy-create@lmem0.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg2-6/igt@gem_create@busy-create@lmem0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: [INCOMPLETE][415] ([i915#12353]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-glk7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [FAIL][417] ([i915#11980] / [i915#12580]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-7/igt@gem_ctx_persistence@hostile.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@unwedge-stress:
- shard-mtlp: [INCOMPLETE][419] -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-2/igt@gem_eio@unwedge-stress.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-2/igt@gem_eio@unwedge-stress.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][421] ([i915#5493]) -> [PASS][422] +1 other test pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][423] ([i915#10729]) -> [PASS][424] +1 other test pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-tglu: [SKIP][425] ([i915#4270]) -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: [DMESG-WARN][427] ([i915#13029]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-10/igt@i915_module_load@reload-no-display.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-5/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][429] ([i915#12817] / [i915#9820]) -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][431] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][432]
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [WARN][433] ([i915#12653]) -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15826/shard
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12300/index.html
^ permalink raw reply [flat|nested] 40+ messages in thread
* RE: ✗ Xe.CI.Full: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
2024-12-12 10:33 ` Thasleem, Mohammed
@ 2024-12-13 10:36 ` Illipilli, TejasreeX
0 siblings, 0 replies; 40+ messages in thread
From: Illipilli, TejasreeX @ 2024-12-13 10:36 UTC (permalink / raw)
To: Thasleem, Mohammed, igt-dev@lists.freedesktop.org
Cc: I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 96176 bytes --]
Hi ,
https://patchwork.freedesktop.org/series/135789/ - Re-reported.
Xe.CI.Full – Addressed failures, Xe cannot be re-reported.
i915.CI.Full - Re-reported
Thank you,
Tejasree
From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Thasleem, Mohammed
Sent: Thursday, December 12, 2024 4:04 PM
To: igt-dev@lists.freedesktop.org
Cc: I915-ci-infra@lists.freedesktop.org
Subject: RE: ✗ Xe.CI.Full: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
Hi,
The regression is not because of IGT patch. It might be due to something else requesting for full run.
Possible regressions
* igt@fbdev@unaligned-read:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@fbdev@unaligned-read.html>
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html>
* igt@xe_evict@evict-mixed-threads-large-multi-vm:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html>
Thanks,
Mohammed Thasleem
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Thursday, December 12, 2024 7:52 AM
To: Thasleem, Mohammed <mohammed.thasleem@intel.com<mailto:mohammed.thasleem@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Xe.CI.Full: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev6)
Patch Details
Series:
tests/kms_histogram: Added IGT support to validate global histogram (rev6)
URL:
https://patchwork.freedesktop.org/series/135789/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/index.html
CI Bug Log - changes from XEIGT_8149_full -> XEIGTPW_12300_full
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12300_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12300_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_12300_full:
IGT changes
Possible regressions
* igt@fbdev@unaligned-read:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@fbdev@unaligned-read.html>
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html>
* igt@kms_histogram@algo-basic (NEW):
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_histogram@algo-basic.html> +3 other tests skip
* igt@kms_histogram@global-basic (NEW):
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_histogram@global-basic.html> +3 other tests skip
* igt@xe_evict@evict-mixed-threads-large-multi-vm:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large-multi-vm.html>
New tests
New tests have been introduced between XEIGT_8149_full and XEIGTPW_12300_full:
New IGT tests (9)
* igt@kms_histogram@algo-basic:
* Statuses : 2 skip(s)
* Exec time: [0.0] s
* igt@kms_histogram@algo-color:
* Statuses : 2 skip(s)
* Exec time: [0.0] s
* igt@kms_histogram@global-basic:
* Statuses : 2 skip(s)
* Exec time: [0.0] s
* igt@kms_histogram@global-color:
* Statuses : 2 skip(s)
* Exec time: [0.0] s
* igt@xe_gt_freq@freq_low_max:
* Statuses : 2 pass(s)
* Exec time: [0.20, 0.21] s
* igt@xe_gt_freq@freq_reset:
* Statuses : 1 pass(s)
* Exec time: [0.51] s
* igt@xe_gt_freq@freq_reset_multiple:
* Statuses : 2 pass(s)
* Exec time: [25.11, 25.38] s
* igt@xe_gt_freq@freq_suspend:
* Statuses : 1 pass(s) 1 skip(s)
* Exec time: [0.10, 6.49] s
* igt@xe_gt_freq@throttle_basic_api:
* Statuses : 2 pass(s)
* Exec time: [0.00, 0.01] s
Known issues
Here are the changes found in XEIGTPW_12300_full that come from known issues:
IGT changes
Issues hit
* igt@core_hotunplug@unplug-rescan:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +36 other tests dmesg-warn
* igt@intel_hwmon@hwmon-read:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@intel_hwmon@hwmon-read.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>)
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (Intel XE#3157<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157>)
* igt@kms_async_flips@async-flip-suspend-resume:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_async_flips@async-flip-suspend-resume.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_async_flips@async-flip-suspend-resume.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3783<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3783>)
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests fail
* igt@kms_async_flips@invalid-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* igt@kms_async_flips@invalid-async-flip-atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_async_flips@invalid-async-flip-atomic.html> (Intel XE#3768<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768>)
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_async_flips@test-cursor-atomic.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>) +1 other test skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#3658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>) +1 other test skip
* igt@kms_big_fb@linear-16bpp-rotate-180:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_big_fb@linear-16bpp-rotate-180.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +13 other tests dmesg-fail
* igt@kms_big_fb@linear-32bpp-rotate-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +11 other tests skip
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +5 other tests skip
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +11 other tests skip
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +29 other tests skip
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#1428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
* igt@kms_big_fb@yf-tiled-addfb:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>)
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#1477<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477>)
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +4 other tests skip
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) +1 other test skip
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) +5 other tests skip
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +18 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +46 other tests skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +13 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2 other tests skip
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +7 other tests skip
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html> (Intel XE#314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) +3 other tests skip
* igt@kms_chamelium_color@ctm-0-50:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +3 other tests skip
* igt@kms_chamelium_color@ctm-blue-to-red:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_chamelium_color@ctm-blue-to-red.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +6 other tests skip
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +29 other tests skip
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +13 other tests skip
* igt@kms_content_protection@atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_content_protection@atomic.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) +1 other test skip
* igt@kms_content_protection@dp-mst-type-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
* igt@kms_content_protection@lic-type-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_content_protection@lic-type-1.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>) +4 other tests skip
* igt@kms_content_protection@mei-interface:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_content_protection@mei-interface.html> (Intel XE#1468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468>)
* igt@kms_content_protection@srm@pipe-a-dp-2:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html> (Intel XE#2715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
* igt@kms_cursor_crc@cursor-onscreen-128x42:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +13 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-512x170:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +1 other test skip
* igt@kms_cursor_crc@cursor-random-32x32:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +6 other tests skip
* igt@kms_cursor_crc@cursor-sliding-512x512:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +3 other tests skip
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +3 other tests skip
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +15 other tests skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +3 other tests skip
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (Intel XE#1508<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508>)
* igt@kms_display_modes@extended-mode-basic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#3383<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383>)
* igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705>)
* igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
* igt@kms_dsc@dsc-with-bpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_dsc@dsc-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
* igt@kms_feature_discovery@display-2x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_feature_discovery@display-2x.html> (Intel XE#702<https://gitlab.freedesktop.org/drm/xe/kernel/issues/702>)
* igt@kms_feature_discovery@display-3x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
* igt@kms_feature_discovery@display-4x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_feature_discovery@display-4x.html> (Intel XE#1138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_feature_discovery@display-4x.html> (Intel XE#1138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>)
* igt@kms_feature_discovery@dp-mst:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html> (Intel XE#2375<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375>)
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +1 other test fail
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +3 other tests fail
* igt@kms_flip@2x-plain-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_flip@2x-plain-flip.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +21 other tests skip
* igt@kms_flip@2x-plain-flip-fb-recreate:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +5 other tests dmesg-warn
* igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +69 other tests dmesg-warn
* igt@kms_flip@bo-too-big-interruptible:
* shard-lnl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_flip@bo-too-big-interruptible.html> (Intel XE#1504<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504>) +1 other test timeout
* igt@kms_flip@flip-vs-suspend-interruptible:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +6 other tests dmesg-fail
* igt@kms_flip@plain-flip-ts-check@a-edp1:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +1 other test fail
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +14 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +14 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +4 other tests skip
* igt@kms_force_connector_basic@prune-stale-modes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html> (Intel XE#352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/352>)
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +45 other tests skip
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +41 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +16 other tests fail
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> (Intel XE#1469<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +32 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +6 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +119 other tests skip
* igt@kms_getfb@getfb-reject-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#605<https://gitlab.freedesktop.org/drm/xe/kernel/issues/605>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#2502<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502>)
* igt@kms_getfb@getfb2-accept-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* igt@kms_hdmi_inject@inject-4k:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@kms_hdmi_inject@inject-4k.html> (Intel XE#1470<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470>)
* igt@kms_hdr@bpc-switch-suspend:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_hdr@bpc-switch-suspend.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_hdr@brightness-with-hdr:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
* igt@kms_hdr@invalid-metadata-sizes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) +2 other tests skip
* igt@kms_joiner@basic-ultra-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_joiner@basic-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
* igt@kms_joiner@invalid-modeset-big-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* igt@kms_panel_fitting@atomic-fastset:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html> (Intel XE#2486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486>)
* igt@kms_plane@pixel-format:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_plane@pixel-format.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_plane@pixel-format.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +5 other tests skip
* igt@kms_plane_lowres@tiling-y:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html> (Intel XE#2393<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393>) +1 other test skip
* igt@kms_plane_scaling@intel-max-src-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_plane_scaling@intel-max-src-size.html> (Intel XE#3307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307>)
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +63 other tests skip
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +34 other tests skip
* igt@kms_pm_backlight@bad-brightness:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_pm_backlight@bad-brightness.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) +1 other test skip
* igt@kms_pm_dc@dc3co-vpb-simulation:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#736<https://gitlab.freedesktop.org/drm/xe/kernel/issues/736>)
* igt@kms_pm_dc@dc6-psr:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>)
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
* igt@kms_pm_rpm@legacy-planes-dpms:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2864<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_rpm@legacy-planes-dpms@plane-41:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_rpm@legacy-planes-dpms@plane-50:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-50.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>) +1 other test skip
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +5 other tests skip
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +10 other tests skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>) +1 other test skip
* igt@kms_psr@fbc-pr-dpms:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_psr@fbc-pr-dpms.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +11 other tests skip
* igt@kms_psr@pr-sprite-plane-onoff:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_psr@pr-sprite-plane-onoff.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +17 other tests skip
* igt@kms_psr@psr2-primary-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_psr@psr2-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234>)
* igt@kms_rotation_crc@bad-pixel-format:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +1 other test skip
* igt@kms_rotation_crc@primary-rotation-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +4 other tests skip
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html> (Intel XE#2330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330>)
* igt@kms_scaling_modes@scaling-mode-full-aspect:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (Intel XE#2413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413>) +1 other test skip
* igt@kms_setmode@clone-exclusive-crtc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@kms_setmode@clone-exclusive-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) +1 other test fail
* igt@kms_universal_plane@disable-primary-vs-flip:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_universal_plane@disable-primary-vs-flip.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_universal_plane@disable-primary-vs-flip.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-3:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_vblank@wait-forked@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_vblank@wait-forked@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_vblank@wait-forked@pipe-a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +12 other tests dmesg-fail
* igt@kms_vrr@flip-suspend:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_vrr@flip-suspend.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
* igt@kms_vrr@negative-basic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@kms_vrr@negative-basic.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
* igt@kms_writeback@writeback-check-output:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_writeback@writeback-check-output.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +3 other tests skip
* igt@sriov_basic@enable-vfs-autoprobe-off:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
* igt@xe_compute@ccs-mode-compute-kernel:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html> (Intel XE#1447<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447>) +1 other test skip
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +16 other tests skip
* igt@xe_eudebug@exec-queue-placements:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_eudebug@exec-queue-placements.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +31 other tests skip
* igt@xe_evict@evict-beng-mixed-many-threads-large:
* shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_evict@evict-large-multi-vm:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_evict@evict-large-multi-vm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +31 other tests skip
* igt@xe_evict@evict-mixed-many-threads-small:
* shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) +1 other test timeout
* igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@xe_exec_balancer@no-exec-parallel-userptr:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_exec_balancer@no-exec-parallel-userptr.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_exec_balancer@no-exec-parallel-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +7 other tests dmesg-warn
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +13 other tests skip
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +28 other tests skip
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) +1 other test skip
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
* igt@xe_live_ktest@xe_eudebug:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_live_ktest@xe_eudebug.html> (Intel XE#2833<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833>)
* igt@xe_media_fill@media-fill:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_media_fill@media-fill.html> (Intel XE#560<https://gitlab.freedesktop.org/drm/xe/kernel/issues/560>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_media_fill@media-fill.html> (Intel XE#2459<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459> / Intel XE#2596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596>)
* igt@xe_mmap@vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_mmap@vram.html> (Intel XE#1416<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416>)
* igt@xe_module_load@force-load:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@force-load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* igt@xe_module_load@load:
* shard-lnl: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* igt@xe_module_load@many-reload:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@xe_module_load@many-reload.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_module_load@many-reload.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_noexec_ping_pong:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_noexec_ping_pong.html> (Intel XE#379<https://gitlab.freedesktop.org/drm/xe/kernel/issues/379>)
* igt@xe_oa@oa-tlb-invalidate:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
* igt@xe_pat@pat-index-xehpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1420<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420> / Intel XE#2838<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838>)
* igt@xe_pat@pat-index-xelp:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_pat@pat-index-xelp.html> (Intel XE#977<https://gitlab.freedesktop.org/drm/xe/kernel/issues/977>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_pat@pat-index-xelp.html> (Intel XE#2245<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245>)
* igt@xe_pat@pat-index-xelpg:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>)
* igt@xe_pm@d3cold-mmap-vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_pm@d3cold-mmap-vram.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 other test skip
* igt@xe_pm@d3cold-mocs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-1/igt@xe_pm@d3cold-mocs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* igt@xe_pm@d3hot-mmap-vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_pm@d3hot-mmap-vram.html> (Intel XE#1948<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948>)
* igt@xe_pm@s2idle-d3cold-basic-exec:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_pm@s2idle-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* igt@xe_pm@s3-mocs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_pm@s3-mocs.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>) +3 other tests skip
* igt@xe_pm@s4-mocs:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_pm@s4-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_pm@s4-vm-bind-prefetch:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html> (Intel XE#1607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607> / Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>)
* igt@xe_pm@s4-vm-bind-userptr:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>)
* igt@xe_pm_residency@toggle-gt-c6:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html> (Intel XE#958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/958>)
* igt@xe_query@multigpu-query-invalid-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_query@multigpu-query-invalid-size.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +6 other tests skip
* igt@xe_sriov_flr@flr-vf1-clear:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-6/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) +1 other test skip
Possible fixes
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> +67 other tests pass
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> +1 other test pass
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html>
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html> +1 other test pass
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> +2 other tests pass
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html> +1 other test pass
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3.html> +1 other test pass
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html> +1 other test pass
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html>
* igt@kms_hdr@static-toggle-suspend:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html> +21 other tests pass
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html> (Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html> +1 other test pass
* igt@kms_pm_dc@dc5-psr:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html>
* igt@kms_pm_rpm@modeset-stress-extra-wait:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2864<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html>
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html> +4 other tests pass
* igt@kms_vrr@flipline:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@kms_vrr@flipline.html> (Intel XE#1522<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@kms_vrr@flipline.html> +1 other test pass
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> +1 other test pass
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html>
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> +2 other tests pass
* igt@xe_intel_bb@create-in-region@region-vram0:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_intel_bb@create-in-region@region-vram0.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_intel_bb@create-in-region@region-vram0.html> +3 other tests pass
* igt@xe_live_ktest@xe_bo:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_live_ktest@xe_bo.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_live_ktest@xe_bo.html> +1 other test pass
* igt@xe_live_ktest@xe_dma_buf:
* shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-4/igt@xe_live_ktest@xe_dma_buf.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_live_ktest@xe_dma_buf.html>
* igt@xe_pm@s2idle-basic-exec:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3766<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_pm@s2idle-basic-exec.html>
* igt@xe_pm@s2idle-d3hot-basic-exec:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-8/igt@xe_pm@s2idle-d3hot-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-4/igt@xe_pm@s2idle-d3hot-basic-exec.html>
* igt@xe_pm@s2idle-exec-after:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-3/igt@xe_pm@s2idle-exec-after.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-3/igt@xe_pm@s2idle-exec-after.html> +1 other test pass
* igt@xe_pm@s2idle-mocs:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_pm@s2idle-mocs.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_pm@s2idle-mocs.html>
* igt@xe_pm@s2idle-vm-bind-prefetch:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html> +1 other test pass
* igt@xe_pm@s2idle-vm-bind-unbind-all:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html> +2 other tests pass
* igt@xe_pm@s2idle-vm-bind-userptr:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_pm@s2idle-vm-bind-userptr.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#1694<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694> / Intel XE#3766<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-8/igt@xe_pm@s2idle-vm-bind-userptr.html>
* igt@xe_pm@s3-basic:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@xe_pm@s3-basic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@xe_pm@s3-basic.html>
* igt@xe_pm@s4-d3hot-basic-exec:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-7/igt@xe_pm@s4-d3hot-basic-exec.html>
* igt@xe_pm_residency@gt-c6-freeze@gt0:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-lnl-6/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-lnl-5/igt@xe_pm_residency@gt-c6-freeze@gt0.html> +24 other tests pass
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html> +1 other test pass
* igt@xe_wedged@wedged-mode-toggle:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html>
Warnings
* igt@kms_content_protection@legacy:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_content_protection@legacy.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_content_protection@legacy.html> (Intel XE#2715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests incomplete
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> (Intel XE#3226<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)
* igt@kms_fbcon_fbt@fbc-suspend:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>)
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
* igt@kms_flip@flip-vs-suspend:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html> (Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +8 other tests skip
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +4 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +1 other test fail
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +10 other tests fail
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2050<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050>)
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +8 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +8 other tests skip
* igt@xe_evict@evict-beng-mixed-many-threads-small:
* shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_evict@evict-beng-mixed-threads-large:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-3/igt@xe_evict@evict-beng-mixed-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>)
* igt@xe_evict@evict-beng-threads-large:
* shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_live_ktest@xe_eudebug:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8149/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12300/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html> (Intel XE#2833<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833>)
Build changes
* IGT: IGT_8149 -> IGTPW_12300
* Linux: xe-2354-49199ebefcd6fc1e6dc38eafa23a2825bf39c27d -> xe-2355-a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238
IGTPW_12300: 042d613cbaf4c77da980322b1164c448a0aa40cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8149: 1e3893ae48c972da2338a62477d74de0f7b26776 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2354-49199ebefcd6fc1e6dc38eafa23a2825bf39c27d: 49199ebefcd6fc1e6dc38eafa23a2825bf39c27d
xe-2355-a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238: a199bfe2876f5bbf2ba1a382cacbb62fb3fcb238
[-- Attachment #2: Type: text/html, Size: 205601 bytes --]
^ permalink raw reply [flat|nested] 40+ messages in thread
* Re: [PATCH i-g-t v6] tests/kms_histogram: Added IGT support to validate global histogram
2024-12-11 20:31 ` [PATCH i-g-t v6] " Mohammed Thasleem
@ 2024-12-19 17:34 ` Kamil Konieczny
2025-01-04 6:26 ` Lucas De Marchi
1 sibling, 0 replies; 40+ messages in thread
From: Kamil Konieczny @ 2024-12-19 17:34 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev, Adarsh G M, Bhanuprakash Modem
Hi Mohammed,
On 2024-12-12 at 02:01:19 +0530, Mohammed Thasleem wrote:
> The IGT changes included tests for enabling/disabling histogram.
> Validating the histogram event generation and if any One such library
> Global Histogram Enhancement(GHE) present, will feed the histogram to
> the library, get the enhanced LUT data and feed it back to the KMD.
> For histogram generation, black/white and color images are flipped.
>
> Display histogram is a hardware functionality where a statistics for 'x'
> number of frames is generated to form a histogram data. This is notified
> to the user via histogram event. Compositor then upon sensing the histogram
> event will read the histogram data from KMD via crtc property.
>
> A library can be developed to take this generated histogram as an input and
> apply some algorithm to generate an Image Enhancement(IET).
>
> This is further fed back to the KMD via crtc property. KMD will feed this
> bask to the hardware. Hardware will use this as a multiplicand factor to
> multiply with the incoming pixels at the end of the pipe which is then
> pushed onto the display.
>
> One such library Global Histogram Enhancement(GHE) will take the histogram
> as input and apply the algorithm to enhance the density and then return
> the enhanced factor.
> GHE library link: https://github.com/intel/ghe
> Display Global Histogram changes:
> https://patchwork.freedesktop.org/series/135793/
> https://lore.kernel.org/all/20241119104521.575377-1-arun.r.murthy@intel.com/
>
> TODO: Extend the tests for different formats/modifiers.
>
> v2: Remove eDP restriction. (Vandita)
> Update crtc property name. (Arun)
> v3: Update discription and test names. (Kamil)
> Remove warning message from meson build. (Kamil)
> v4: Fixed some nits. (Kamil)
> v5: Update discription. (Kamil)
> Minor changes. (Kamil)
> Updated crtc property and algo api names. (Arun)
> v6: Fix build failure.
>
> Signed-off-by: Adarsh G M <adarsh.g.m@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/igt_kms.c | 23 +++
> lib/igt_kms.h | 5 +
> meson.build | 5 +
> tests/kms_histogram.c | 349 ++++++++++++++++++++++++++++++++++++++++++
> tests/meson.build | 2 +
> 5 files changed, 384 insertions(+)
> create mode 100644 tests/kms_histogram.c
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index 3d061abc5..a67d17c4f 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -714,6 +714,9 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
> [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
> [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
> [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
> + [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE",
> + [IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA",
> + [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET",
> };
>
> const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
> @@ -2615,6 +2618,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
> if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_VRR_ENABLED))
> igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_VRR_ENABLED, 0);
>
> + if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
> + igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
> +
> pipe->out_fence_fd = -1;
> }
>
> @@ -5643,6 +5649,23 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs)
> ARRAY_SIZE(props));
> }
>
> +/**
> + * igt_global_histogram_event_detected:
> + * @mon: A udev monitor initialized with #igt_watch_uevents
> + * @timeout_secs: How long to wait for a lease change event to occur.
> + *
> + * Detect if a global Histogram event was received since we last checked the monitor.
> + *
> + * Returns: true if a sysfs global Histogram event was received, false if we timed out
> + */
> +bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs)
> +{
> + const char *props[1] = {"HISTOGRAM"};
> + int expected_val = 1;
> +
> + return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props));
> +}
> +
> /**
> * igt_flush_uevents:
> * @mon: A udev monitor initialized with #igt_watch_uevents
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 8810123fb..1e2a927ab 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -165,6 +165,9 @@ enum igt_atomic_crtc_properties {
> IGT_CRTC_OUT_FENCE_PTR,
> IGT_CRTC_VRR_ENABLED,
> IGT_CRTC_SCALING_FILTER,
> + IGT_CRTC_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HISTOGRAM,
> + IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> IGT_NUM_CRTC_PROPS
> };
>
> @@ -1140,6 +1143,8 @@ void igt_cleanup_uevents(struct udev_monitor *mon);
> bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier);
> bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier);
>
> +bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs);
> +
> /**
> * igt_vblank_after_eq:
> * @a: First vblank sequence number.
> diff --git a/meson.build b/meson.build
> index 0f26f95c8..fdcbb6450 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -197,6 +197,11 @@ else
> chamelium = disabler()
> endif
>
> +libghe = dependency('libghe', required : false)
> +if libghe.found()
> + config.set('HAVE_LIBGHE', 1)
> +endif
> +
> build_info += 'Build Chamelium test: @0@'.format(chamelium.found())
>
> pthreads = dependency('threads')
> diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c
> new file mode 100644
> index 000000000..c25aa022b
> --- /dev/null
> +++ b/tests/kms_histogram.c
> @@ -0,0 +1,349 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms histogram
> + * Category: Display
> + * Description: Test to verify histogram features.
> + * Functionality: histogram
> + * Mega feature: Display
> + * Test category: functionality test
> + */
> +
> +#include <errno.h>
> +#include <fcntl.h>
> +#include <limits.h>
> +#include <stdbool.h>
> +#include <stdio.h>
> +#include <string.h>
> +
> +#include "igt.h"
> +#include "igt_vec.h"
> +#ifdef HAVE_LIBGHE
> +#include "ghe.h"
> +#endif
> +
> +#define GLOBAL_HIST_DISABLE 0
> +#define GLOBAL_HIST_ENABLE 1
> +#define GLOBAL_HIST_DELAY 2
> +#define FLIP_COUNT 20
> +
> +/**
> + * SUBTEST: global-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: global-color
> + * Description: Test to enable histogram, flip color fbs, wait for
> + * histogram event and then read the histogram data
> + *
> + * SUBTEST: algo-basic
> + * Description: Test to enable histogram, flip monochrome fbs, wait for
> + * histogram event and then read the histogram data and enhance pixels by
> + * multiplying by a pixel factor using algo
> + *
> + * SUBTEST: algo-color
> + * Description: Test to enable histogram, flip color fbs, wait for histogram event
> + * and then read the histogram data and enhance pixels by multiplying
> + * by a pixel factor using algo
> + */
> +
> +IGT_TEST_DESCRIPTION("This test will verify the display histogram.");
> +
> +typedef struct data {
> + igt_display_t display;
> + int drm_fd;
> + igt_fb_t fb[5];
> +} data_t;
> +
> +typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*);
> +
> +static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe)
> +{
> + uint32_t global_hist_value;
> +
> + /* Enable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is enabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n");
> +}
> +
> +static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe)
> +{
> + uint32_t global_hist_value;
> +
> + /* Disable global_hist */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Verify if global_hist is disabled */
> + global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM);
> + igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n");
> +}
> +
> +static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> +{
> + igt_plane_t *plane;
> +
> + disable_and_verify_global_histogram(data, pipe);
> +
> + for_each_plane_on_pipe(&data->display, pipe, plane)
> + igt_plane_set_fb(plane, NULL);
> + igt_output_set_pipe(output, PIPE_NONE);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> + igt_remove_fb(data->display.drm_fd, &data->fb[0]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[1]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[2]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[3]);
> + igt_remove_fb(data->display.drm_fd, &data->fb[4]);
> +}
> +
> +static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe)
> +{
> + uint64_t blob_id;
> +
> + blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe],
> + IGT_CRTC_GLOBAL_HISTOGRAM);
> + if (blob_id == 0)
> + return NULL;
> +
> + return drmModeGetPropertyBlob(data->drm_fd, blob_id);
> +}
> +
> +static void read_global_histogram(data_t *data, enum pipe pipe,
> + drmModePropertyBlobRes **hist_blob_ptr)
> +{
> + uint32_t *histogram_ptr;
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n");
> + do {
> + global_hist_blob = get_global_histogram_data(data, pipe);
> + } while (!global_hist_blob);
> +
> + igt_reset_timeout();
> +
> + *hist_blob_ptr = global_hist_blob;
> + histogram_ptr = (uint32_t *) global_hist_blob->data;
> + for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++)
> + igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++));
> +}
> +
> +#ifdef HAVE_LIBGHE
> +static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size)
> +{
> + uint32_t i;
> +
> + for (i = 0; i < size; i++) {
> + /* Displaying IET LUT */
> + igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i));
> + }
> +
> + igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
> + dietfactor, size);
> +}
> +
> +static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
> + igt_output_t *output)
> +{
> + struct globalhist_args *argsPtr =
> + (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
> +
> + drmModeModeInfo *mode;
> +
> + mode = igt_output_get_mode(output);
> +
> + memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
> + argsPtr->resolution_x = mode->hdisplay;
> + argsPtr->resolution_y = mode->vdisplay;
> +
> + igt_debug("Making call to global histogram algorithm.\n");
> + histogram_compute_generate_data_bin(argsPtr);
> +
> + return argsPtr;
> +}
> +
> +static void algo_image_enhancement_factor(data_t *data, enum pipe pipe,
> + igt_output_t *output,
> + drmModePropertyBlobRes *global_hist_blob)
> +{
> + struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output);
> +
> + igt_assert(args);
> + igt_debug("Writing pixel factor blob.\n");
> +
> + set_pixel_factor(&data->display.pipes[pipe], args->dietfactor,
> + ARRAY_SIZE(args->dietfactor));
> + free(args);
> +
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +#endif
> +
> +static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode)
> +{
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip monochrome fbs to get histogram event. */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 0, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 1, 1, &data->fb[1]));
> +}
> +
> +static void create_color_fbs(data_t *data, drmModeModeInfo *mode)
> +{
> + /* TODO: Extend the tests for different formats/modifiers. */
> + /* These frame buffers used to flip color fbs to get histogram event. */
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.5, 0, 0.5, &data->fb[0]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 0, &data->fb[1]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 1, 0, &data->fb[2]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0, 0, 1, &data->fb[3]));
> +
> + igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1, 0, 1, &data->fb[4]));
> +}
> +
> +static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb)
> +{
> + igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb)
> +{
> + int i;
> + struct udev_monitor *mon = igt_watch_uevents();
> + drmModeModeInfo *mode = igt_output_get_mode(output);
> + bool event_detected = false;
> + int fb_count = color_fb ? 5 : 2;
> +
> + if (color_fb)
> + create_color_fbs(data, mode);
> + else
> + create_monochrome_fbs(data, mode);
> +
> + flip_fb(data, pipe, output, &data->fb[0]);
> + enable_and_verify_global_histogram(data, pipe);
> +
> + igt_flush_uevents(mon);
> + for (i = 1; i <= FLIP_COUNT; i++) {
> + flip_fb(data, pipe, output, &data->fb[i % fb_count]);
> +
> + /* Check for histogram event on every flip and break the loop if detected. */
> + if (igt_global_histogram_event_detected(mon, 0)) {
> + event_detected = true;
> + break;
> + }
> + }
> +
> + igt_cleanup_uevents(mon);
> + igt_assert_f(event_detected, "Histogram event not generated.\n");
> +}
> +
> +static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output,
> + bool color_fb, test_t test_pixel_factor)
> +{
> + drmModePropertyBlobRes *global_hist_blob = NULL;
> +
> + prepare_pipe(data, pipe, output, color_fb);
> +
> + read_global_histogram(data, pipe, &global_hist_blob);
> +
> + if (test_pixel_factor)
> + test_pixel_factor(data, pipe, output, global_hist_blob);
> +
> + drmModeFreePropertyBlob(global_hist_blob);
> + cleanup_pipe(data, pipe, output);
> +}
> +
> +static void run_tests_for_global_histogram(data_t *data, bool color_fb,
> + test_t test_pixel_factor)
> +{
> + enum pipe pipe;
> + igt_output_t *output;
> +
> + for_each_connected_output(&data->display, output) {
> + for_each_pipe(&data->display, pipe) {
> + if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM))
> + continue;
> +
> + igt_display_reset(&data->display);
> +
> + igt_output_set_pipe(output, pipe);
> + if (!intel_pipe_output_combo_valid(&data->display))
> + continue;
> +
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
> + run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor);
> + }
> + }
> +}
> +
> +static void run_algo_test(data_t *data, bool color_fb)
> +{
> +#ifdef HAVE_LIBGHE
> + run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor);
> +#else
> + igt_skip("Histogram algorithm library not found.\n");
> +#endif
> +}
> +
> +igt_main
> +{
> + data_t data = {};
> +
> + igt_fixture {
> + data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> + kmstest_set_vt_graphics_mode();
> + igt_display_require(&data.display, data.drm_fd);
> + igt_display_require_output(&data.display);
> + igt_require(data.display.is_atomic);
> + }
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
> + "event and then read the histogram data.");
> + igt_subtest_with_dynamic("global-basic")
> + run_tests_for_global_histogram(&data, false, NULL);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
> + "and then read the histogram data.");
> + igt_subtest_with_dynamic("global-color")
> + run_tests_for_global_histogram(&data, true, NULL);
> +
> + igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram "
> + "event and then read the histogram data and enhance pixels by multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("algo-basic")
> + run_algo_test(&data, false);
> +
> + igt_describe("Test to enable histogram, flip color fbs, wait for histogram event "
> + "and then read the histogram data and enhance pixels by multiplying "
> + "by a pixel factor using algo.");
> + igt_subtest_with_dynamic("algo-color")
> + run_algo_test(&data, true);
> +
> + igt_fixture {
> + igt_display_fini(&data.display);
> + drm_close_driver(data.drm_fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 2724c7a9a..89bba6454 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -37,6 +37,7 @@ test_progs = [
> 'kms_getfb',
> 'kms_hdmi_inject',
> 'kms_hdr',
> + 'kms_histogram',
> 'kms_invalid_mode',
> 'kms_lease',
> 'kms_multipipe_modeset',
> @@ -380,6 +381,7 @@ extra_dependencies = {
> 'gem_eio': [ realtime ],
> 'gem_exec_balancer': [ lib_igt_perf ],
> 'gem_mmap_offset': [ libatomic ],
> + 'kms_histogram': [ libghe ],
> 'i915_pm_freq_mult': [ lib_igt_perf ],
> 'i915_pm_rc6_residency': [ lib_igt_perf ],
> 'perf': [ lib_igt_i915_perf ],
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 40+ messages in thread
* Re: [PATCH i-g-t v6] tests/kms_histogram: Added IGT support to validate global histogram
2024-12-11 20:31 ` [PATCH i-g-t v6] " Mohammed Thasleem
2024-12-19 17:34 ` Kamil Konieczny
@ 2025-01-04 6:26 ` Lucas De Marchi
1 sibling, 0 replies; 40+ messages in thread
From: Lucas De Marchi @ 2025-01-04 6:26 UTC (permalink / raw)
To: Mohammed Thasleem
Cc: igt-dev, Adarsh G M, Bhanuprakash Modem, Nemesa Garg,
Arun R Murthy
On Thu, Dec 12, 2024 at 02:01:19AM +0530, Mohammed Thasleem wrote:
>+static struct globalhist_args *algo_get_pixel_factor(drmModePropertyBlobRes *global_hist_blob,
>+ igt_output_t *output)
>+{
>+ struct globalhist_args *argsPtr =
>+ (struct globalhist_args *)malloc(sizeof(struct globalhist_args));
>+
>+ drmModeModeInfo *mode;
>+
>+ mode = igt_output_get_mode(output);
>+
>+ memcpy(argsPtr->histogram, global_hist_blob->data, global_hist_blob->length);
>+ argsPtr->resolution_x = mode->hdisplay;
>+ argsPtr->resolution_y = mode->vdisplay;
>+
>+ igt_debug("Making call to global histogram algorithm.\n");
>+ histogram_compute_generate_data_bin(argsPtr);
../tests/kms_histogram.c: In function ‘algo_get_pixel_factor’:
../tests/kms_histogram.c:166:9: error: implicit declaration of function ‘histogram_compute_generate_data_bin’ [-Wimplicit-function-declaration]
166 | histogram_compute_generate_data_bin(argsPtr);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../tests/kms_histogram.c:166:9: warning: nested extern declaration of ‘histogram_compute_generate_data_bin’ [-Wnested-externs]
Looking at ghe.h in Ubuntu 24.10, it seems this function doesn't exist.
I thought the dep was missing a version check, but checking https://github.com/intel/ghe
it seems it never existed. What am I missing?
Lucas De Marchi
^ permalink raw reply [flat|nested] 40+ messages in thread
end of thread, other threads:[~2025-01-04 6:26 UTC | newest]
Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-05 9:13 [PATCH v1 0/1] Added IGT support to validate global histogram Mohammed Thasleem
2024-07-05 9:13 ` [PATCH v1 1/1] tests/kms_histogram: " Mohammed Thasleem
2024-09-11 5:21 ` Kulkarni, Vandita
2024-09-24 12:25 ` [PATCH i-g-t v2] " Mohammed Thasleem
2024-10-09 11:39 ` Modem, Bhanuprakash
2024-10-11 14:58 ` Kamil Konieczny
2024-10-17 11:20 ` [PATCH i-g-t v3] " Mohammed Thasleem
2024-11-05 5:24 ` [PATCH i-g-t v4] " Mohammed Thasleem
2024-11-05 17:22 ` Kamil Konieczny
2024-12-11 19:36 ` [PATCH i-g-t v5] " Mohammed Thasleem
2024-12-11 20:31 ` [PATCH i-g-t v6] " Mohammed Thasleem
2024-12-19 17:34 ` Kamil Konieczny
2025-01-04 6:26 ` Lucas De Marchi
2024-07-05 15:11 ` ✗ CI.xeBAT: failure for " Patchwork
2024-07-05 15:11 ` ✓ Fi.CI.BAT: success " Patchwork
2024-07-05 16:59 ` ✓ CI.xeFULL: " Patchwork
2024-07-06 18:43 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-09-26 3:19 ` ✗ Fi.CI.BAT: failure for Added IGT support to validate global histogram (rev2) Patchwork
2024-09-26 3:23 ` ✓ CI.xeBAT: success " Patchwork
2024-09-26 9:53 ` ✓ Fi.CI.IGT: " Patchwork
2024-09-26 11:50 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-17 11:12 ` [PATCH i-g-t] tests/kms_histogram: Added IGT support to validate global histogram Mohammed Thasleem
2024-10-17 13:23 ` ✓ CI.xeBAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev3) Patchwork
2024-10-17 13:26 ` ✓ Fi.CI.BAT: " Patchwork
2024-10-17 15:35 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-18 1:15 ` ✗ CI.xeFULL: " Patchwork
2024-11-05 6:59 ` ✓ Fi.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev4) Patchwork
2024-11-05 7:27 ` ✓ CI.xeBAT: " Patchwork
2024-11-05 22:56 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-11-06 4:17 ` ✗ CI.xeFULL: " Patchwork
2024-12-11 14:07 ` [PATCH i-g-t v5] tests/kms_histogram: Added IGT support to validate global histogram Mohammed Thasleem
2024-12-11 19:58 ` ✗ Fi.CI.BUILD: failure for tests/kms_histogram: Added IGT support to validate global histogram (rev5) Patchwork
2024-12-11 21:56 ` ✓ i915.CI.BAT: success for tests/kms_histogram: Added IGT support to validate global histogram (rev6) Patchwork
2024-12-11 22:20 ` ✓ Xe.CI.BAT: " Patchwork
2024-12-12 2:21 ` ✗ Xe.CI.Full: failure " Patchwork
2024-12-12 10:33 ` Thasleem, Mohammed
2024-12-13 10:36 ` Illipilli, TejasreeX
2024-12-12 5:33 ` ✗ i915.CI.Full: " Patchwork
2024-12-12 10:29 ` Thasleem, Mohammed
2024-12-13 10:31 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox