* [PATCH i-g-t v4 0/3] Move backlight read, write to lib
@ 2024-10-24 4:52 Santhosh Reddy Guddati
2024-10-24 4:52 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Move backlight read and " Santhosh Reddy Guddati
` (7 more replies)
0 siblings, 8 replies; 14+ messages in thread
From: Santhosh Reddy Guddati @ 2024-10-24 4:52 UTC (permalink / raw)
To: igt-dev
Cc: mohammed.thasleem, bhanuprakash.modem, suraj.kandpal,
pranay.samala, Santhosh Reddy Guddati
Move backlight read and backlight write functions to library and rename
the function as igt_backlight_read and igt_backlight_write.
changes include:
Moving the backlight read and write functions to the library.
Renaming the functions to `igt_backlight_read` and `igt_backlight_write`.
Updating the existing `kms_pm_backlight` to use the newly moved functions.
Adding a new scenario in `kms_hdr` to manipulate brightness while in HDR
using the newly moved functions.
Santhosh Reddy Guddati (3):
lib/igt_kms: Move backlight read and write to lib
tests/intel/kms_pm_backlight: Refactor and use functions from lib
tests/kms_hdr: Test brightness manipulation in HDR mode
lib/igt_kms.c | 66 ++++++++++++++++++++
lib/igt_kms.h | 12 ++++
tests/intel/kms_pm_backlight.c | 108 +++++++++------------------------
tests/kms_hdr.c | 42 ++++++++++++-
4 files changed, 147 insertions(+), 81 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t v4 1/3] lib/igt_kms: Move backlight read and write to lib
2024-10-24 4:52 [PATCH i-g-t v4 0/3] Move backlight read, write to lib Santhosh Reddy Guddati
@ 2024-10-24 4:52 ` Santhosh Reddy Guddati
2024-10-24 6:35 ` Thasleem, Mohammed
2024-10-24 4:52 ` [PATCH i-g-t v4 2/3] tests/intel/kms_pm_backlight: Refactor and use functions from lib Santhosh Reddy Guddati
` (6 subsequent siblings)
7 siblings, 1 reply; 14+ messages in thread
From: Santhosh Reddy Guddati @ 2024-10-24 4:52 UTC (permalink / raw)
To: igt-dev
Cc: mohammed.thasleem, bhanuprakash.modem, suraj.kandpal,
pranay.samala, Santhosh Reddy Guddati
move backlight_read and backlight_write functions from
kms_pm_backlight to library to reuse in other tests.
move and rename struct context to intel_backlight_context_t.
v2: Rename backlight_read to igt_backlight_read and backlight_write to
backlight_write (Suraj).
Add a new member to intel_backlight_context_t to cache vendor specific
backlight path.
Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
lib/igt_kms.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 12 ++++++++++
2 files changed, 78 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index bb35d4b82..5d8096a17 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -7119,3 +7119,69 @@ void igt_reset_link_params(int drm_fd, igt_output_t *output)
temp = drmModeGetConnector(drm_fd, output->config.connector->connector_id);
drmModeFreeConnector(temp);
}
+
+/**
+ * igt_backlight_read:
+ * @result: Pointer to store the result
+ * @fname: Name of the file to read
+ * @context: Pointer to the context structure
+ */
+int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context)
+{
+ int fd;
+ char full[PATH_MAX];
+ char dst[64];
+ int r, e;
+
+ igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s",
+ context->backlight_dir_path,
+ context->path,
+ fname) < PATH_MAX);
+
+ fd = open(full, O_RDONLY);
+ if (fd == -1)
+ return -errno;
+
+ r = read(fd, dst, sizeof(dst));
+ e = errno;
+ close(fd);
+
+ if (r < 0)
+ return -e;
+
+ errno = 0;
+ *result = strtol(dst, NULL, 10);
+ return errno;
+}
+
+/**
+ * igt_backlight_write:
+ * @value: Value to write
+ * @fname: Name of the file to write
+ * @context: Pointer to the context structure
+ */
+int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context)
+{
+ int fd;
+ char full[PATH_MAX];
+ char src[64];
+ int len;
+
+ igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s",
+ context->backlight_dir_path,
+ context->path,
+ fname) < PATH_MAX);
+
+ fd = open(full, O_WRONLY);
+ if (fd == -1)
+ return -errno;
+
+ len = snprintf(src, sizeof(src), "%i", value);
+ len = write(fd, src, len);
+ close(fd);
+
+ if (len < 0)
+ return len;
+
+ return 0;
+}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 2b26d2bbf..bd154d1c1 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -33,6 +33,7 @@
#include <stdint.h>
#include <stddef.h>
#include <assert.h>
+#include <limits.h>
#include <xf86drmMode.h>
@@ -513,6 +514,15 @@ typedef struct {
uint16_t tile_h_size, tile_v_size;
} igt_tile_info_t;
+/* Backlight context*/
+typedef struct {
+ int max;
+ int old;
+ igt_output_t *output;
+ char path[PATH_MAX];
+ char backlight_dir_path[PATH_MAX];
+} igt_backlight_context_t;
+
void igt_display_reset_outputs(igt_display_t *display);
void igt_display_require(igt_display_t *display, int drm_fd);
void igt_display_fini(igt_display_t *display);
@@ -1253,5 +1263,7 @@ bool igt_has_force_link_training_failure_debugfs(int drmfd, igt_output_t *output
int igt_get_dp_pending_lt_failures(int drm_fd, igt_output_t *output);
int igt_get_dp_pending_retrain(int drm_fd, igt_output_t *output);
void igt_reset_link_params(int drm_fd, igt_output_t *output);
+int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context);
+int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context);
#endif /* __IGT_KMS_H__ */
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH i-g-t v4 2/3] tests/intel/kms_pm_backlight: Refactor and use functions from lib
2024-10-24 4:52 [PATCH i-g-t v4 0/3] Move backlight read, write to lib Santhosh Reddy Guddati
2024-10-24 4:52 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Move backlight read and " Santhosh Reddy Guddati
@ 2024-10-24 4:52 ` Santhosh Reddy Guddati
2024-10-24 6:36 ` Thasleem, Mohammed
2024-10-24 4:52 ` [PATCH i-g-t v4 3/3] tests/kms_hdr: Test brightness manipulation in HDR mode Santhosh Reddy Guddati
` (5 subsequent siblings)
7 siblings, 1 reply; 14+ messages in thread
From: Santhosh Reddy Guddati @ 2024-10-24 4:52 UTC (permalink / raw)
To: igt-dev
Cc: mohammed.thasleem, bhanuprakash.modem, suraj.kandpal,
pranay.samala, Santhosh Reddy Guddati
Refactor to use igt_backlight_read and igt_backlight_write
update struct names to maintain consistency.
move struct context to library.
V2: update backlight_dir_path with BACKLIGHT_PATH.
v3: rename intel_backlight_context_t to igt_backlight_context_t (Suraj)
Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
tests/intel/kms_pm_backlight.c | 108 +++++++++------------------------
1 file changed, 28 insertions(+), 80 deletions(-)
diff --git a/tests/intel/kms_pm_backlight.c b/tests/intel/kms_pm_backlight.c
index 196b5af03..8b59725ac 100644
--- a/tests/intel/kms_pm_backlight.c
+++ b/tests/intel/kms_pm_backlight.c
@@ -72,13 +72,6 @@
* Functionality: backlight, dpms
*/
-struct context {
- int max;
- int old;
- igt_output_t *output;
- char path[PATH_MAX];
-};
-
enum {
TEST_NONE = 0,
TEST_DPMS,
@@ -96,65 +89,17 @@ enum {
IGT_TEST_DESCRIPTION("Basic backlight sysfs test");
-static int backlight_read(int *result, const char *fname, struct context *context)
-{
- int fd;
- char full[PATH_MAX];
- char dst[64];
- int r, e;
-
- igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s", BACKLIGHT_PATH, context->path, fname)
- < PATH_MAX);
- fd = open(full, O_RDONLY);
- if (fd == -1)
- return -errno;
-
- r = read(fd, dst, sizeof(dst));
- e = errno;
- close(fd);
-
- if (r < 0)
- return -e;
-
- errno = 0;
- *result = strtol(dst, NULL, 10);
- return errno;
-}
-
-static int backlight_write(int value, const char *fname, struct context *context)
-{
- int fd;
- char full[PATH_MAX];
- char src[64];
- int len;
-
- igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s", BACKLIGHT_PATH, context->path, fname)
- < PATH_MAX);
- fd = open(full, O_WRONLY);
- if (fd == -1)
- return -errno;
-
- len = snprintf(src, sizeof(src), "%i", value);
- len = write(fd, src, len);
- close(fd);
-
- if (len < 0)
- return len;
-
- return 0;
-}
-
-static void test_and_verify(struct context *context, int val)
+static void test_and_verify(igt_backlight_context_t *context, int val)
{
const int tolerance = val * TOLERANCE / 100;
int result;
- igt_assert_eq(backlight_write(val, "brightness", context), 0);
- igt_assert_eq(backlight_read(&result, "brightness", context), 0);
+ igt_assert_eq(igt_backlight_write(val, "brightness", context), 0);
+ igt_assert_eq(igt_backlight_read(&result, "brightness", context), 0);
/* Check that the exact value sticks */
igt_assert_eq(result, val);
- igt_assert_eq(backlight_read(&result, "actual_brightness", context), 0);
+ igt_assert_eq(igt_backlight_read(&result, "actual_brightness", context), 0);
/* Some rounding may happen depending on hw */
igt_assert_f(result >= max(0, val - tolerance) &&
result <= min(context->max, val + tolerance),
@@ -162,31 +107,31 @@ static void test_and_verify(struct context *context, int val)
result, val, tolerance);
}
-static void test_brightness(struct context *context)
+static void test_brightness(igt_backlight_context_t *context)
{
test_and_verify(context, 0);
test_and_verify(context, context->max);
test_and_verify(context, context->max / 2);
}
-static void test_bad_brightness(struct context *context)
+static void test_bad_brightness(igt_backlight_context_t *context)
{
int val;
/* First write some sane value */
- backlight_write(context->max / 2, "brightness", context);
+ igt_backlight_write(context->max / 2, "brightness", context);
/* Writing invalid values should fail and not change the value */
- igt_assert_lt(backlight_write(-1, "brightness", context), 0);
- backlight_read(&val, "brightness", context);
+ igt_assert_lt(igt_backlight_write(-1, "brightness", context), 0);
+ igt_backlight_read(&val, "brightness", context);
igt_assert_eq(val, context->max / 2);
- igt_assert_lt(backlight_write(context->max + 1, "brightness", context), 0);
- backlight_read(&val, "brightness", context);
+ igt_assert_lt(igt_backlight_write(context->max + 1, "brightness", context), 0);
+ igt_backlight_read(&val, "brightness", context);
igt_assert_eq(val, context->max / 2);
- igt_assert_lt(backlight_write(INT_MAX, "brightness", context), 0);
- backlight_read(&val, "brightness", context);
+ igt_assert_lt(igt_backlight_write(INT_MAX, "brightness", context), 0);
+ igt_backlight_read(&val, "brightness", context);
igt_assert_eq(val, context->max / 2);
}
-static void test_fade(struct context *context)
+static void test_fade(igt_backlight_context_t *context)
{
int i;
static const struct timespec ts = { .tv_sec = 0, .tv_nsec = FADESPEED*1000000 };
@@ -218,19 +163,19 @@ check_dpms(igt_output_t *output)
igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
}
-static void check_dpms_cycle(struct context *context)
+static void check_dpms_cycle(igt_backlight_context_t *context)
{
int max, val_1, val_2;
- backlight_read(&max, "max_brightness", context);
+ igt_backlight_read(&max, "max_brightness", context);
igt_assert(max);
- backlight_write(max / 2, "brightness", context);
- backlight_read(&val_1, "actual_brightness", context);
+ igt_backlight_write(max / 2, "brightness", context);
+ igt_backlight_read(&val_1, "actual_brightness", context);
check_dpms(context->output);
- backlight_read(&val_2, "actual_brightness", context);
+ igt_backlight_read(&val_2, "actual_brightness", context);
igt_assert_eq(val_1, val_2);
}
@@ -286,11 +231,11 @@ igt_main
igt_output_t *output;
char file_path_n[PATH_MAX] = "";
bool dual_edp = false;
- struct context contexts[NUM_EDP_OUTPUTS];
+ igt_backlight_context_t contexts[NUM_EDP_OUTPUTS];
struct {
const char *name;
const char *desc;
- void (*test_t) (struct context *);
+ void (*test_t)(igt_backlight_context_t *context);
int flags;
} tests[] = {
{ "basic-brightness", "test the basic brightness.", test_brightness, TEST_NONE },
@@ -339,14 +284,17 @@ igt_main
close(fd);
+ snprintf(contexts[i].backlight_dir_path, PATH_MAX, "%s", BACKLIGHT_PATH);
+
/* should be ../../cardX-$output */
snprintf(file_path_n, PATH_MAX, "%s/%s/device", BACKLIGHT_PATH,
contexts[i].path);
igt_assert_lt(16, readlink(file_path_n, full_name, sizeof(full_name) - 1));
name = basename(full_name);
- igt_assert(backlight_read(&contexts[i].max,
- "max_brightness", &contexts[i]) > -1);
- igt_skip_on(backlight_read(&contexts[i].old, "brightness", &contexts[i]));
+ igt_assert(igt_backlight_read(&contexts[i].max,
+ "max_brightness", &contexts[i]) > -1);
+ igt_skip_on(igt_backlight_read(&contexts[i].old,
+ "brightness", &contexts[i]));
if (!strcmp(name + 6, output->name)) {
contexts[i++].output = output;
@@ -383,7 +331,7 @@ igt_main
igt_fixture {
/* Restore old brightness */
for (i = 0; i < (dual_edp ? 2 : 1); i++)
- backlight_write(contexts[i].old, "brightness", &contexts[i]);
+ igt_backlight_write(contexts[i].old, "brightness", &contexts[i]);
igt_display_fini(&display);
igt_pm_restore_sata_link_power_management();
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH i-g-t v4 3/3] tests/kms_hdr: Test brightness manipulation in HDR mode
2024-10-24 4:52 [PATCH i-g-t v4 0/3] Move backlight read, write to lib Santhosh Reddy Guddati
2024-10-24 4:52 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Move backlight read and " Santhosh Reddy Guddati
2024-10-24 4:52 ` [PATCH i-g-t v4 2/3] tests/intel/kms_pm_backlight: Refactor and use functions from lib Santhosh Reddy Guddati
@ 2024-10-24 4:52 ` Santhosh Reddy Guddati
2024-10-24 4:59 ` Kandpal, Suraj
2024-10-24 6:37 ` Thasleem, Mohammed
2024-10-24 9:40 ` ✓ Fi.CI.BAT: success for Move backlight read, write to lib (rev4) Patchwork
` (4 subsequent siblings)
7 siblings, 2 replies; 14+ messages in thread
From: Santhosh Reddy Guddati @ 2024-10-24 4:52 UTC (permalink / raw)
To: igt-dev
Cc: mohammed.thasleem, bhanuprakash.modem, suraj.kandpal,
pranay.samala, Santhosh Reddy Guddati
Add subtests for backlight control on hdr enabled edp panels
by changing brightness via sysfs.
use igt_backlight_read and igt_backlight_write from library.
v4: improve the test description and cosmetics (Suraj).
Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
---
tests/kms_hdr.c | 42 +++++++++++++++++++++++++++++++++++++++++-
1 file changed, 41 insertions(+), 1 deletion(-)
diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index f123c6b36..b67902d43 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -64,6 +64,10 @@
* Description: Tests static toggle with suspend
* Functionality: colorspace, static_hdr, suspend
*
+ * SUBTEST: brightness-with-hdr
+ * Description: Tests brightness with HDR
+ * Functionality: colorspace, static_hdr
+ *
* SUBTEST: static-%s
* Description: Tests %arg[1].
* Functionality: colorspace, static_hdr
@@ -81,6 +85,8 @@ IGT_TEST_DESCRIPTION("Test HDR metadata interfaces and bpc switch");
#define HDR_STATIC_METADATA_BLOCK 0x06
#define USE_EXTENDED_TAG 0x07
+#define BACKLIGHT_PATH "/sys/class/backlight"
+
/* DRM HDR definitions. Not in the UAPI header, unfortunately. */
enum hdmi_metadata_type {
HDMI_STATIC_METADATA_TYPE1 = 0,
@@ -100,6 +106,7 @@ enum {
TEST_SWAP = 1 << 3,
TEST_INVALID_METADATA_SIZES = 1 << 4,
TEST_INVALID_HDR = 1 << 5,
+ TEST_BRIGHTNESS = 1 << 6,
};
/* BPC connector state. */
@@ -448,6 +455,28 @@ static void fill_hdr_output_metadata_st2048(struct hdr_output_metadata *meta)
meta->hdmi_metadata_type1.max_cll = 500; /* 500 nits */
}
+static void adjust_brightness(data_t *data, uint32_t flags)
+{
+ igt_backlight_context_t context;
+ int r_bright, w_bright;
+
+ snprintf(context.path, PATH_MAX, "intel_backlight");
+ snprintf(context.backlight_dir_path, PATH_MAX, "%s", BACKLIGHT_PATH);
+
+ igt_assert(igt_backlight_read(&context.max, "max_brightness", &context) > -1);
+ igt_assert(context.max);
+ igt_assert(igt_backlight_read(&context.old, "brightness", &context) > -1);
+
+ for (w_bright = 0; w_bright <= context.max ; w_bright += 50) {
+ igt_assert_eq(igt_backlight_write(w_bright, "brightness", &context), 0);
+ igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ igt_assert_eq(igt_backlight_read(&r_bright, "brightness", &context), 0);
+ igt_assert_eq(w_bright, r_bright);
+ }
+
+ igt_assert_eq(igt_backlight_write(context.old, "brightness", &context), 0);
+}
+
static void test_static_toggle(data_t *data, enum pipe pipe,
igt_output_t *output,
uint32_t flags)
@@ -483,6 +512,12 @@ static void test_static_toggle(data_t *data, enum pipe pipe,
igt_assert_eq(system("dmesg|tail -n 1000|grep -E \"Unknown EOTF [0-9]+\""), 0);
goto cleanup;
}
+
+ if (flags & TEST_BRIGHTNESS) {
+ igt_require_f(is_intel_device(data->fd), "Only supported on Intel devices\n");
+ adjust_brightness(data, flags);
+ }
+
igt_assert_output_bpc_equal(data->fd, pipe, output->name, 10);
/* Verify that the CRC are equal after DPMS or suspend. */
@@ -685,7 +720,8 @@ static void test_hdr(data_t *data, uint32_t flags)
igt_dynamic_f("pipe-%s-%s",
kmstest_pipe_name(pipe), output->name) {
- if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND | TEST_INVALID_HDR))
+ if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND |
+ TEST_INVALID_HDR | TEST_BRIGHTNESS))
test_static_toggle(data, pipe, output, flags);
if (flags & TEST_SWAP)
test_static_swap(data, pipe, output);
@@ -734,6 +770,10 @@ igt_main
igt_subtest_with_dynamic("static-toggle-suspend")
test_hdr(&data, TEST_SUSPEND);
+ igt_describe("Tests brightness while in HDR mode");
+ igt_subtest_with_dynamic("brightness-with-hdr")
+ test_hdr(&data, TEST_BRIGHTNESS);
+
igt_describe("Tests swapping static HDR metadata");
igt_subtest_with_dynamic("static-swap")
test_hdr(&data, TEST_SWAP);
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* RE: [PATCH i-g-t v4 3/3] tests/kms_hdr: Test brightness manipulation in HDR mode
2024-10-24 4:52 ` [PATCH i-g-t v4 3/3] tests/kms_hdr: Test brightness manipulation in HDR mode Santhosh Reddy Guddati
@ 2024-10-24 4:59 ` Kandpal, Suraj
2024-10-24 6:37 ` Thasleem, Mohammed
1 sibling, 0 replies; 14+ messages in thread
From: Kandpal, Suraj @ 2024-10-24 4:59 UTC (permalink / raw)
To: Reddy Guddati, Santhosh, igt-dev@lists.freedesktop.org
Cc: Thasleem, Mohammed, Modem, Bhanuprakash, Samala, Pranay
> -----Original Message-----
> From: Reddy Guddati, Santhosh <santhosh.reddy.guddati@intel.com>
> Sent: Thursday, October 24, 2024 10:22 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Thasleem, Mohammed <mohammed.thasleem@intel.com>; Modem,
> Bhanuprakash <bhanuprakash.modem@intel.com>; Kandpal, Suraj
> <suraj.kandpal@intel.com>; Samala, Pranay <pranay.samala@intel.com>;
> Reddy Guddati, Santhosh <santhosh.reddy.guddati@intel.com>
> Subject: [PATCH i-g-t v4 3/3] tests/kms_hdr: Test brightness manipulation in
> HDR mode
>
> Add subtests for backlight control on hdr enabled edp panels by changing
> brightness via sysfs.
>
> use igt_backlight_read and igt_backlight_write from library.
> v4: improve the test description and cosmetics (Suraj).
>
> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
LGTM,
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> tests/kms_hdr.c | 42 +++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 41 insertions(+), 1 deletion(-)
>
> diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c index f123c6b36..b67902d43
> 100644
> --- a/tests/kms_hdr.c
> +++ b/tests/kms_hdr.c
> @@ -64,6 +64,10 @@
> * Description: Tests static toggle with suspend
> * Functionality: colorspace, static_hdr, suspend
> *
> + * SUBTEST: brightness-with-hdr
> + * Description: Tests brightness with HDR
> + * Functionality: colorspace, static_hdr
> + *
> * SUBTEST: static-%s
> * Description: Tests %arg[1].
> * Functionality: colorspace, static_hdr @@ -81,6 +85,8 @@
> IGT_TEST_DESCRIPTION("Test HDR metadata interfaces and bpc switch");
> #define HDR_STATIC_METADATA_BLOCK 0x06
> #define USE_EXTENDED_TAG 0x07
>
> +#define BACKLIGHT_PATH "/sys/class/backlight"
> +
> /* DRM HDR definitions. Not in the UAPI header, unfortunately. */ enum
> hdmi_metadata_type {
> HDMI_STATIC_METADATA_TYPE1 = 0,
> @@ -100,6 +106,7 @@ enum {
> TEST_SWAP = 1 << 3,
> TEST_INVALID_METADATA_SIZES = 1 << 4,
> TEST_INVALID_HDR = 1 << 5,
> + TEST_BRIGHTNESS = 1 << 6,
> };
>
> /* BPC connector state. */
> @@ -448,6 +455,28 @@ static void fill_hdr_output_metadata_st2048(struct
> hdr_output_metadata *meta)
> meta->hdmi_metadata_type1.max_cll = 500; /* 500 nits */
> }
>
> +static void adjust_brightness(data_t *data, uint32_t flags) {
> + igt_backlight_context_t context;
> + int r_bright, w_bright;
> +
> + snprintf(context.path, PATH_MAX, "intel_backlight");
> + snprintf(context.backlight_dir_path, PATH_MAX, "%s",
> BACKLIGHT_PATH);
> +
> + igt_assert(igt_backlight_read(&context.max, "max_brightness",
> &context) > -1);
> + igt_assert(context.max);
> + igt_assert(igt_backlight_read(&context.old, "brightness", &context) >
> +-1);
> +
> + for (w_bright = 0; w_bright <= context.max ; w_bright += 50) {
> + igt_assert_eq(igt_backlight_write(w_bright, "brightness",
> &context), 0);
> + igt_display_commit_atomic(&data->display,
> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> + igt_assert_eq(igt_backlight_read(&r_bright, "brightness",
> &context), 0);
> + igt_assert_eq(w_bright, r_bright);
> + }
> +
> + igt_assert_eq(igt_backlight_write(context.old, "brightness",
> +&context), 0); }
> +
> static void test_static_toggle(data_t *data, enum pipe pipe,
> igt_output_t *output,
> uint32_t flags)
> @@ -483,6 +512,12 @@ static void test_static_toggle(data_t *data, enum
> pipe pipe,
> igt_assert_eq(system("dmesg|tail -n 1000|grep -E \"Unknown
> EOTF [0-9]+\""), 0);
> goto cleanup;
> }
> +
> + if (flags & TEST_BRIGHTNESS) {
> + igt_require_f(is_intel_device(data->fd), "Only supported on
> Intel devices\n");
> + adjust_brightness(data, flags);
> + }
> +
> igt_assert_output_bpc_equal(data->fd, pipe, output->name, 10);
>
> /* Verify that the CRC are equal after DPMS or suspend. */ @@ -685,7
> +720,8 @@ static void test_hdr(data_t *data, uint32_t flags)
>
> igt_dynamic_f("pipe-%s-%s",
> kmstest_pipe_name(pipe), output->name)
> {
> - if (flags & (TEST_NONE | TEST_DPMS |
> TEST_SUSPEND | TEST_INVALID_HDR))
> + if (flags & (TEST_NONE | TEST_DPMS |
> TEST_SUSPEND |
> + TEST_INVALID_HDR |
> TEST_BRIGHTNESS))
> test_static_toggle(data, pipe, output,
> flags);
> if (flags & TEST_SWAP)
> test_static_swap(data, pipe, output);
> @@ -734,6 +770,10 @@ igt_main
> igt_subtest_with_dynamic("static-toggle-suspend")
> test_hdr(&data, TEST_SUSPEND);
>
> + igt_describe("Tests brightness while in HDR mode");
> + igt_subtest_with_dynamic("brightness-with-hdr")
> + test_hdr(&data, TEST_BRIGHTNESS);
> +
> igt_describe("Tests swapping static HDR metadata");
> igt_subtest_with_dynamic("static-swap")
> test_hdr(&data, TEST_SWAP);
> --
> 2.34.1
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t v4 1/3] lib/igt_kms: Move backlight read and write to lib
2024-10-24 4:52 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Move backlight read and " Santhosh Reddy Guddati
@ 2024-10-24 6:35 ` Thasleem, Mohammed
2024-10-24 6:53 ` Reddy Guddati, Santhosh
0 siblings, 1 reply; 14+ messages in thread
From: Thasleem, Mohammed @ 2024-10-24 6:35 UTC (permalink / raw)
To: Santhosh Reddy Guddati, igt-dev
Cc: bhanuprakash.modem, suraj.kandpal, pranay.samala
On 10/24/2024 10:22 AM, Santhosh Reddy Guddati wrote:
> move backlight_read and backlight_write functions from
> kms_pm_backlight to library to reuse in other tests.
>
> move and rename struct context to intel_backlight_context_t.
> -->Please format discription correctly and start new line with capital.
>
> v2: Rename backlight_read to igt_backlight_read and backlight_write to
> backlight_write (Suraj).
> Add a new member to intel_backlight_context_t to cache vendor specific
> backlight path.
> -->please allin above line with v2
>
>
> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> lib/igt_kms.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_kms.h | 12 ++++++++++
> 2 files changed, 78 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index bb35d4b82..5d8096a17 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -7119,3 +7119,69 @@ void igt_reset_link_params(int drm_fd, igt_output_t *output)
> temp = drmModeGetConnector(drm_fd, output->config.connector->connector_id);
> drmModeFreeConnector(temp);
> }
> +
> +/**
> + * igt_backlight_read:
> + * @result: Pointer to store the result
> + * @fname: Name of the file to read
> + * @context: Pointer to the context structure
> + */
> +int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context)
> +{
> + int fd;
> + char full[PATH_MAX];
> + char dst[64];
> + int r, e;
> +
> + igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s",
> + context->backlight_dir_path,
> + context->path,
> + fname) < PATH_MAX);
> +
> + fd = open(full, O_RDONLY);
> + if (fd == -1)
> + return -errno;
> +
> + r = read(fd, dst, sizeof(dst));
> + e = errno;
> + close(fd);
> +
> + if (r < 0)
> + return -e;
> +
> + errno = 0;
> + *result = strtol(dst, NULL, 10);
> + return errno;
> +}
> +
> +/**
> + * igt_backlight_write:
> + * @value: Value to write
> + * @fname: Name of the file to write
> + * @context: Pointer to the context structure
> + */
> +int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context)
> +{
> + int fd;
> + char full[PATH_MAX];
> + char src[64];
> + int len;
> +
> + igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s",
> + context->backlight_dir_path,
> + context->path,
> + fname) < PATH_MAX);
> +
> + fd = open(full, O_WRONLY);
> + if (fd == -1)
> + return -errno;
> +
> + len = snprintf(src, sizeof(src), "%i", value);
> + len = write(fd, src, len);
> + close(fd);
> +
> + if (len < 0)
> + return len;
> +
> + return 0;
> +}
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 2b26d2bbf..bd154d1c1 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -33,6 +33,7 @@
> #include <stdint.h>
> #include <stddef.h>
> #include <assert.h>
> +#include <limits.h>
>
> #include <xf86drmMode.h>
>
> @@ -513,6 +514,15 @@ typedef struct {
> uint16_t tile_h_size, tile_v_size;
> } igt_tile_info_t;
>
> +/* Backlight context*/
> +typedef struct {
> + int max;
> + int old;
> + igt_output_t *output;
> + char path[PATH_MAX];
> + char backlight_dir_path[PATH_MAX];
> +} igt_backlight_context_t;
> +
> void igt_display_reset_outputs(igt_display_t *display);
> void igt_display_require(igt_display_t *display, int drm_fd);
> void igt_display_fini(igt_display_t *display);
> @@ -1253,5 +1263,7 @@ bool igt_has_force_link_training_failure_debugfs(int drmfd, igt_output_t *output
> int igt_get_dp_pending_lt_failures(int drm_fd, igt_output_t *output);
> int igt_get_dp_pending_retrain(int drm_fd, igt_output_t *output);
> void igt_reset_link_params(int drm_fd, igt_output_t *output);
> +int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context);
> +int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context);
>
> #endif /* __IGT_KMS_H__ */
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t v4 2/3] tests/intel/kms_pm_backlight: Refactor and use functions from lib
2024-10-24 4:52 ` [PATCH i-g-t v4 2/3] tests/intel/kms_pm_backlight: Refactor and use functions from lib Santhosh Reddy Guddati
@ 2024-10-24 6:36 ` Thasleem, Mohammed
0 siblings, 0 replies; 14+ messages in thread
From: Thasleem, Mohammed @ 2024-10-24 6:36 UTC (permalink / raw)
To: Santhosh Reddy Guddati, igt-dev
Cc: bhanuprakash.modem, suraj.kandpal, pranay.samala
On 10/24/2024 10:22 AM, Santhosh Reddy Guddati wrote:
> Refactor to use igt_backlight_read and igt_backlight_write
> update struct names to maintain consistency.
> move struct context to library.
> -->Start new line with capital.
>
> V2: update backlight_dir_path with BACKLIGHT_PATH.
> v3: rename intel_backlight_context_t to igt_backlight_context_t (Suraj)
>
> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> tests/intel/kms_pm_backlight.c | 108 +++++++++------------------------
> 1 file changed, 28 insertions(+), 80 deletions(-)
>
> diff --git a/tests/intel/kms_pm_backlight.c b/tests/intel/kms_pm_backlight.c
> index 196b5af03..8b59725ac 100644
> --- a/tests/intel/kms_pm_backlight.c
> +++ b/tests/intel/kms_pm_backlight.c
> @@ -72,13 +72,6 @@
> * Functionality: backlight, dpms
> */
>
> -struct context {
> - int max;
> - int old;
> - igt_output_t *output;
> - char path[PATH_MAX];
> -};
> -
> enum {
> TEST_NONE = 0,
> TEST_DPMS,
> @@ -96,65 +89,17 @@ enum {
>
> IGT_TEST_DESCRIPTION("Basic backlight sysfs test");
>
> -static int backlight_read(int *result, const char *fname, struct context *context)
> -{
> - int fd;
> - char full[PATH_MAX];
> - char dst[64];
> - int r, e;
> -
> - igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s", BACKLIGHT_PATH, context->path, fname)
> - < PATH_MAX);
> - fd = open(full, O_RDONLY);
> - if (fd == -1)
> - return -errno;
> -
> - r = read(fd, dst, sizeof(dst));
> - e = errno;
> - close(fd);
> -
> - if (r < 0)
> - return -e;
> -
> - errno = 0;
> - *result = strtol(dst, NULL, 10);
> - return errno;
> -}
> -
> -static int backlight_write(int value, const char *fname, struct context *context)
> -{
> - int fd;
> - char full[PATH_MAX];
> - char src[64];
> - int len;
> -
> - igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s", BACKLIGHT_PATH, context->path, fname)
> - < PATH_MAX);
> - fd = open(full, O_WRONLY);
> - if (fd == -1)
> - return -errno;
> -
> - len = snprintf(src, sizeof(src), "%i", value);
> - len = write(fd, src, len);
> - close(fd);
> -
> - if (len < 0)
> - return len;
> -
> - return 0;
> -}
> -
> -static void test_and_verify(struct context *context, int val)
> +static void test_and_verify(igt_backlight_context_t *context, int val)
> {
> const int tolerance = val * TOLERANCE / 100;
> int result;
>
> - igt_assert_eq(backlight_write(val, "brightness", context), 0);
> - igt_assert_eq(backlight_read(&result, "brightness", context), 0);
> + igt_assert_eq(igt_backlight_write(val, "brightness", context), 0);
> + igt_assert_eq(igt_backlight_read(&result, "brightness", context), 0);
> /* Check that the exact value sticks */
> igt_assert_eq(result, val);
>
> - igt_assert_eq(backlight_read(&result, "actual_brightness", context), 0);
> + igt_assert_eq(igt_backlight_read(&result, "actual_brightness", context), 0);
> /* Some rounding may happen depending on hw */
> igt_assert_f(result >= max(0, val - tolerance) &&
> result <= min(context->max, val + tolerance),
> @@ -162,31 +107,31 @@ static void test_and_verify(struct context *context, int val)
> result, val, tolerance);
> }
>
> -static void test_brightness(struct context *context)
> +static void test_brightness(igt_backlight_context_t *context)
> {
> test_and_verify(context, 0);
> test_and_verify(context, context->max);
> test_and_verify(context, context->max / 2);
> }
>
> -static void test_bad_brightness(struct context *context)
> +static void test_bad_brightness(igt_backlight_context_t *context)
> {
> int val;
> /* First write some sane value */
> - backlight_write(context->max / 2, "brightness", context);
> + igt_backlight_write(context->max / 2, "brightness", context);
> /* Writing invalid values should fail and not change the value */
> - igt_assert_lt(backlight_write(-1, "brightness", context), 0);
> - backlight_read(&val, "brightness", context);
> + igt_assert_lt(igt_backlight_write(-1, "brightness", context), 0);
> + igt_backlight_read(&val, "brightness", context);
> igt_assert_eq(val, context->max / 2);
> - igt_assert_lt(backlight_write(context->max + 1, "brightness", context), 0);
> - backlight_read(&val, "brightness", context);
> + igt_assert_lt(igt_backlight_write(context->max + 1, "brightness", context), 0);
> + igt_backlight_read(&val, "brightness", context);
> igt_assert_eq(val, context->max / 2);
> - igt_assert_lt(backlight_write(INT_MAX, "brightness", context), 0);
> - backlight_read(&val, "brightness", context);
> + igt_assert_lt(igt_backlight_write(INT_MAX, "brightness", context), 0);
> + igt_backlight_read(&val, "brightness", context);
> igt_assert_eq(val, context->max / 2);
> }
>
> -static void test_fade(struct context *context)
> +static void test_fade(igt_backlight_context_t *context)
> {
> int i;
> static const struct timespec ts = { .tv_sec = 0, .tv_nsec = FADESPEED*1000000 };
> @@ -218,19 +163,19 @@ check_dpms(igt_output_t *output)
> igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
> }
>
> -static void check_dpms_cycle(struct context *context)
> +static void check_dpms_cycle(igt_backlight_context_t *context)
> {
> int max, val_1, val_2;
>
> - backlight_read(&max, "max_brightness", context);
> + igt_backlight_read(&max, "max_brightness", context);
> igt_assert(max);
>
> - backlight_write(max / 2, "brightness", context);
> - backlight_read(&val_1, "actual_brightness", context);
> + igt_backlight_write(max / 2, "brightness", context);
> + igt_backlight_read(&val_1, "actual_brightness", context);
>
> check_dpms(context->output);
>
> - backlight_read(&val_2, "actual_brightness", context);
> + igt_backlight_read(&val_2, "actual_brightness", context);
> igt_assert_eq(val_1, val_2);
> }
>
> @@ -286,11 +231,11 @@ igt_main
> igt_output_t *output;
> char file_path_n[PATH_MAX] = "";
> bool dual_edp = false;
> - struct context contexts[NUM_EDP_OUTPUTS];
> + igt_backlight_context_t contexts[NUM_EDP_OUTPUTS];
> struct {
> const char *name;
> const char *desc;
> - void (*test_t) (struct context *);
> + void (*test_t)(igt_backlight_context_t *context);
> int flags;
> } tests[] = {
> { "basic-brightness", "test the basic brightness.", test_brightness, TEST_NONE },
> @@ -339,14 +284,17 @@ igt_main
>
> close(fd);
>
> + snprintf(contexts[i].backlight_dir_path, PATH_MAX, "%s", BACKLIGHT_PATH);
> +
> /* should be ../../cardX-$output */
> snprintf(file_path_n, PATH_MAX, "%s/%s/device", BACKLIGHT_PATH,
> contexts[i].path);
> igt_assert_lt(16, readlink(file_path_n, full_name, sizeof(full_name) - 1));
> name = basename(full_name);
> - igt_assert(backlight_read(&contexts[i].max,
> - "max_brightness", &contexts[i]) > -1);
> - igt_skip_on(backlight_read(&contexts[i].old, "brightness", &contexts[i]));
> + igt_assert(igt_backlight_read(&contexts[i].max,
> + "max_brightness", &contexts[i]) > -1);
> + igt_skip_on(igt_backlight_read(&contexts[i].old,
> + "brightness", &contexts[i]));
>
> if (!strcmp(name + 6, output->name)) {
> contexts[i++].output = output;
> @@ -383,7 +331,7 @@ igt_main
> igt_fixture {
> /* Restore old brightness */
> for (i = 0; i < (dual_edp ? 2 : 1); i++)
> - backlight_write(contexts[i].old, "brightness", &contexts[i]);
> + igt_backlight_write(contexts[i].old, "brightness", &contexts[i]);
>
> igt_display_fini(&display);
> igt_pm_restore_sata_link_power_management();
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t v4 3/3] tests/kms_hdr: Test brightness manipulation in HDR mode
2024-10-24 4:52 ` [PATCH i-g-t v4 3/3] tests/kms_hdr: Test brightness manipulation in HDR mode Santhosh Reddy Guddati
2024-10-24 4:59 ` Kandpal, Suraj
@ 2024-10-24 6:37 ` Thasleem, Mohammed
1 sibling, 0 replies; 14+ messages in thread
From: Thasleem, Mohammed @ 2024-10-24 6:37 UTC (permalink / raw)
To: Santhosh Reddy Guddati, igt-dev
Cc: bhanuprakash.modem, suraj.kandpal, pranay.samala
On 10/24/2024 10:22 AM, Santhosh Reddy Guddati wrote:
> Add subtests for backlight control on hdr enabled edp panels
> by changing brightness via sysfs.
>
> use igt_backlight_read and igt_backlight_write from library.
> -->Please format discription correctly.
>
> v4: improve the test description and cosmetics (Suraj).
>
> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> ---
> tests/kms_hdr.c | 42 +++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 41 insertions(+), 1 deletion(-)
>
> diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
> index f123c6b36..b67902d43 100644
> --- a/tests/kms_hdr.c
> +++ b/tests/kms_hdr.c
> @@ -64,6 +64,10 @@
> * Description: Tests static toggle with suspend
> * Functionality: colorspace, static_hdr, suspend
> *
> + * SUBTEST: brightness-with-hdr
> + * Description: Tests brightness with HDR
> + * Functionality: colorspace, static_hdr
> + *
> * SUBTEST: static-%s
> * Description: Tests %arg[1].
> * Functionality: colorspace, static_hdr
> @@ -81,6 +85,8 @@ IGT_TEST_DESCRIPTION("Test HDR metadata interfaces and bpc switch");
> #define HDR_STATIC_METADATA_BLOCK 0x06
> #define USE_EXTENDED_TAG 0x07
>
> +#define BACKLIGHT_PATH "/sys/class/backlight"
> +
> /* DRM HDR definitions. Not in the UAPI header, unfortunately. */
> enum hdmi_metadata_type {
> HDMI_STATIC_METADATA_TYPE1 = 0,
> @@ -100,6 +106,7 @@ enum {
> TEST_SWAP = 1 << 3,
> TEST_INVALID_METADATA_SIZES = 1 << 4,
> TEST_INVALID_HDR = 1 << 5,
> + TEST_BRIGHTNESS = 1 << 6,
> };
>
> /* BPC connector state. */
> @@ -448,6 +455,28 @@ static void fill_hdr_output_metadata_st2048(struct hdr_output_metadata *meta)
> meta->hdmi_metadata_type1.max_cll = 500; /* 500 nits */
> }
>
> +static void adjust_brightness(data_t *data, uint32_t flags)
> +{
> + igt_backlight_context_t context;
> + int r_bright, w_bright;
> +
> + snprintf(context.path, PATH_MAX, "intel_backlight");
> + snprintf(context.backlight_dir_path, PATH_MAX, "%s", BACKLIGHT_PATH);
> +
> + igt_assert(igt_backlight_read(&context.max, "max_brightness", &context) > -1);
> + igt_assert(context.max);
> + igt_assert(igt_backlight_read(&context.old, "brightness", &context) > -1);
> +
> + for (w_bright = 0; w_bright <= context.max ; w_bright += 50) {
> + igt_assert_eq(igt_backlight_write(w_bright, "brightness", &context), 0);
> + igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> + igt_assert_eq(igt_backlight_read(&r_bright, "brightness", &context), 0);
> + igt_assert_eq(w_bright, r_bright);
> + }
> +
> + igt_assert_eq(igt_backlight_write(context.old, "brightness", &context), 0);
> +}
> +
> static void test_static_toggle(data_t *data, enum pipe pipe,
> igt_output_t *output,
> uint32_t flags)
> @@ -483,6 +512,12 @@ static void test_static_toggle(data_t *data, enum pipe pipe,
> igt_assert_eq(system("dmesg|tail -n 1000|grep -E \"Unknown EOTF [0-9]+\""), 0);
> goto cleanup;
> }
> +
> + if (flags & TEST_BRIGHTNESS) {
> + igt_require_f(is_intel_device(data->fd), "Only supported on Intel devices\n");
> + adjust_brightness(data, flags);
> + }
> +
> igt_assert_output_bpc_equal(data->fd, pipe, output->name, 10);
>
> /* Verify that the CRC are equal after DPMS or suspend. */
> @@ -685,7 +720,8 @@ static void test_hdr(data_t *data, uint32_t flags)
>
> igt_dynamic_f("pipe-%s-%s",
> kmstest_pipe_name(pipe), output->name) {
> - if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND | TEST_INVALID_HDR))
> + if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND |
> + TEST_INVALID_HDR | TEST_BRIGHTNESS))
> test_static_toggle(data, pipe, output, flags);
> if (flags & TEST_SWAP)
> test_static_swap(data, pipe, output);
> @@ -734,6 +770,10 @@ igt_main
> igt_subtest_with_dynamic("static-toggle-suspend")
> test_hdr(&data, TEST_SUSPEND);
>
> + igt_describe("Tests brightness while in HDR mode");
> + igt_subtest_with_dynamic("brightness-with-hdr")
> + test_hdr(&data, TEST_BRIGHTNESS);
> +
> igt_describe("Tests swapping static HDR metadata");
> igt_subtest_with_dynamic("static-swap")
> test_hdr(&data, TEST_SWAP);
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t v4 1/3] lib/igt_kms: Move backlight read and write to lib
2024-10-24 6:35 ` Thasleem, Mohammed
@ 2024-10-24 6:53 ` Reddy Guddati, Santhosh
0 siblings, 0 replies; 14+ messages in thread
From: Reddy Guddati, Santhosh @ 2024-10-24 6:53 UTC (permalink / raw)
To: Thasleem, Mohammed, igt-dev
Cc: bhanuprakash.modem, suraj.kandpal, pranay.samala
On 24-10-2024 12:05, Thasleem, Mohammed wrote:
>
> On 10/24/2024 10:22 AM, Santhosh Reddy Guddati wrote:
>> move backlight_read and backlight_write functions from
>> kms_pm_backlight to library to reuse in other tests.
>>
>> move and rename struct context to intel_backlight_context_t.
>> -->Please format discription correctly and start new line with capital.
>>
>> v2: Rename backlight_read to igt_backlight_read and backlight_write to
>> backlight_write (Suraj).
>> Add a new member to intel_backlight_context_t to cache vendor specific
>> backlight path.
>> -->please allin above line with v2
Hi Thasleem,
Thanks for the feedback, I will make sure to update the
description while merging
>>
>>
>> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
>> Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
>> ---
>> lib/igt_kms.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++
>> lib/igt_kms.h | 12 ++++++++++
>> 2 files changed, 78 insertions(+)
>>
>> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
>> index bb35d4b82..5d8096a17 100644
>> --- a/lib/igt_kms.c
>> +++ b/lib/igt_kms.c
>> @@ -7119,3 +7119,69 @@ void igt_reset_link_params(int drm_fd,
>> igt_output_t *output)
>> temp = drmModeGetConnector(drm_fd, output->config.connector-
>> >connector_id);
>> drmModeFreeConnector(temp);
>> }
>> +
>> +/**
>> + * igt_backlight_read:
>> + * @result: Pointer to store the result
>> + * @fname: Name of the file to read
>> + * @context: Pointer to the context structure
>> + */
>> +int igt_backlight_read(int *result, const char *fname,
>> igt_backlight_context_t *context)
>> +{
>> + int fd;
>> + char full[PATH_MAX];
>> + char dst[64];
>> + int r, e;
>> +
>> + igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s",
>> + context->backlight_dir_path,
>> + context->path,
>> + fname) < PATH_MAX);
>> +
>> + fd = open(full, O_RDONLY);
>> + if (fd == -1)
>> + return -errno;
>> +
>> + r = read(fd, dst, sizeof(dst));
>> + e = errno;
>> + close(fd);
>> +
>> + if (r < 0)
>> + return -e;
>> +
>> + errno = 0;
>> + *result = strtol(dst, NULL, 10);
>> + return errno;
>> +}
>> +
>> +/**
>> + * igt_backlight_write:
>> + * @value: Value to write
>> + * @fname: Name of the file to write
>> + * @context: Pointer to the context structure
>> + */
>> +int igt_backlight_write(int value, const char *fname,
>> igt_backlight_context_t *context)
>> +{
>> + int fd;
>> + char full[PATH_MAX];
>> + char src[64];
>> + int len;
>> +
>> + igt_assert(snprintf(full, PATH_MAX, "%s/%s/%s",
>> + context->backlight_dir_path,
>> + context->path,
>> + fname) < PATH_MAX);
>> +
>> + fd = open(full, O_WRONLY);
>> + if (fd == -1)
>> + return -errno;
>> +
>> + len = snprintf(src, sizeof(src), "%i", value);
>> + len = write(fd, src, len);
>> + close(fd);
>> +
>> + if (len < 0)
>> + return len;
>> +
>> + return 0;
>> +}
>> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
>> index 2b26d2bbf..bd154d1c1 100644
>> --- a/lib/igt_kms.h
>> +++ b/lib/igt_kms.h
>> @@ -33,6 +33,7 @@
>> #include <stdint.h>
>> #include <stddef.h>
>> #include <assert.h>
>> +#include <limits.h>
>> #include <xf86drmMode.h>
>> @@ -513,6 +514,15 @@ typedef struct {
>> uint16_t tile_h_size, tile_v_size;
>> } igt_tile_info_t;
>> +/* Backlight context*/
>> +typedef struct {
>> + int max;
>> + int old;
>> + igt_output_t *output;
>> + char path[PATH_MAX];
>> + char backlight_dir_path[PATH_MAX];
>> +} igt_backlight_context_t;
>> +
>> void igt_display_reset_outputs(igt_display_t *display);
>> void igt_display_require(igt_display_t *display, int drm_fd);
>> void igt_display_fini(igt_display_t *display);
>> @@ -1253,5 +1263,7 @@ bool
>> igt_has_force_link_training_failure_debugfs(int drmfd, igt_output_t
>> *output
>> int igt_get_dp_pending_lt_failures(int drm_fd, igt_output_t *output);
>> int igt_get_dp_pending_retrain(int drm_fd, igt_output_t *output);
>> void igt_reset_link_params(int drm_fd, igt_output_t *output);
>> +int igt_backlight_read(int *result, const char *fname,
>> igt_backlight_context_t *context);
>> +int igt_backlight_write(int value, const char *fname,
>> igt_backlight_context_t *context);
>> #endif /* __IGT_KMS_H__ */
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Fi.CI.BAT: success for Move backlight read, write to lib (rev4)
2024-10-24 4:52 [PATCH i-g-t v4 0/3] Move backlight read, write to lib Santhosh Reddy Guddati
` (2 preceding siblings ...)
2024-10-24 4:52 ` [PATCH i-g-t v4 3/3] tests/kms_hdr: Test brightness manipulation in HDR mode Santhosh Reddy Guddati
@ 2024-10-24 9:40 ` Patchwork
2024-10-24 10:21 ` ✓ CI.xeBAT: " Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-24 9:40 UTC (permalink / raw)
To: Reddy Guddati, Santhosh; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11823 bytes --]
== Series Details ==
Series: Move backlight read, write to lib (rev4)
URL : https://patchwork.freedesktop.org/series/140013/
State : success
== Summary ==
CI Bug Log - changes from IGT_8082 -> IGTPW_11969
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/index.html
Participating hosts (45 -> 45)
------------------------------
Additional (2): fi-skl-6600u bat-dg1-6
Missing (2): fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in IGTPW_11969 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-dg1-6: NOTRUN -> [SKIP][1] ([i915#12311] / [i915#1849])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-dg1-6/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- fi-skl-6600u: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@random-engines:
- fi-skl-6600u: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html
* igt@i915_selftest@live:
- bat-arls-2: [PASS][4] -> [ABORT][5] ([i915#12133])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-arls-2/igt@i915_selftest@live.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-arls-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-2: [PASS][6] -> [ABORT][7] ([i915#12061])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-arls-2/igt@i915_selftest@live@workarounds.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-arls-2/igt@i915_selftest@live@workarounds.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- bat-dg1-6: NOTRUN -> [SKIP][8] ([i915#12311]) +54 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-dg1-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_dsc@dsc-basic:
- fi-skl-6600u: NOTRUN -> [SKIP][9] +9 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/fi-skl-6600u/igt@kms_dsc@dsc-basic.html
* igt@prime_vgem@basic-write:
- bat-dg1-6: NOTRUN -> [SKIP][10] ([i915#11723] / [i915#12311])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-dg1-6/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-twl-1: [INCOMPLETE][11] ([i915#12133] / [i915#9413]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-twl-1/igt@i915_selftest@live.html
- bat-dg2-9: [ABORT][13] ([i915#12133]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-dg2-9/igt@i915_selftest@live.html
* igt@i915_selftest@live@client:
- bat-dg2-9: [ABORT][15] ([i915#12305]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live@client.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-dg2-9/igt@i915_selftest@live@client.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: [INCOMPLETE][17] ([i915#9413]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][19] ([i915#11621]) -> [PASS][20] +132 other tests pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
#### Warnings ####
* igt@debugfs_test@basic-hwmon:
- bat-adlm-1: [SKIP][21] ([i915#3826]) -> [SKIP][22] ([i915#3826] / [i915#9900])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@debugfs_test@basic-hwmon.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-adlm-1: [SKIP][23] ([i915#1849] / [i915#2582]) -> [SKIP][24] ([i915#1849] / [i915#2582] / [i915#9900])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@fbdev@info.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@fbdev@info.html
* igt@fbdev@read:
- bat-adlm-1: [SKIP][25] ([i915#2582]) -> [SKIP][26] ([i915#2582] / [i915#9900]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@fbdev@read.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@fbdev@read.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adlm-1: [SKIP][27] ([i915#4613]) -> [SKIP][28] ([i915#4613] / [i915#9900]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic:
- bat-adlm-1: [SKIP][29] ([i915#3282]) -> [SKIP][30] ([i915#3282] / [i915#9900])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@gem_tiled_pread_basic.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-adlm-1: [SKIP][31] ([i915#6621]) -> [SKIP][32] ([i915#6621] / [i915#9900])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@i915_pm_rps@basic-api.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@i915_pm_rps@basic-api.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- bat-adlm-1: [SKIP][33] ([i915#9875] / [i915#9900]) -> [SKIP][34] ([i915#9900]) +16 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-adlm-1: [SKIP][35] ([i915#3637]) -> [SKIP][36] ([i915#3637] / [i915#9900]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adlm-1: [SKIP][37] -> [SKIP][38] ([i915#9900])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-adlm-1: [SKIP][39] ([i915#1849] / [i915#4342]) -> [SKIP][40] ([i915#1849] / [i915#4342] / [i915#9900])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adlm-1: [SKIP][41] ([i915#5354]) -> [SKIP][42] ([i915#5354] / [i915#9900])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_pm_backlight@basic-brightness.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-adlm-1: [SKIP][43] ([i915#1072] / [i915#9732]) -> [SKIP][44] ([i915#1072] / [i915#9732] / [i915#9900]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_psr@psr-sprite-plane-onoff.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adlm-1: [SKIP][45] ([i915#3555]) -> [SKIP][46] ([i915#3555] / [i915#9900])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-write:
- bat-adlm-1: [SKIP][47] ([i915#3708]) -> [SKIP][48] ([i915#3708] / [i915#9900]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@prime_vgem@basic-write.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/bat-adlm-1/igt@prime_vgem@basic-write.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305
[i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[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#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9875]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9875
[i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8082 -> IGTPW_11969
* Linux: CI_DRM_15576 -> CI_DRM_15587
CI-20190529: 20190529
CI_DRM_15576: d5bac12430b0d4a980c0498b3c946772950e70ee @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15587: 3d45ea06af2c04db741c142380d97001b3cdb5da @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11969: b9f25761f2a3afdefe9893c10426cb796deca8dc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/index.html
[-- Attachment #2: Type: text/html, Size: 15881 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.xeBAT: success for Move backlight read, write to lib (rev4)
2024-10-24 4:52 [PATCH i-g-t v4 0/3] Move backlight read, write to lib Santhosh Reddy Guddati
` (3 preceding siblings ...)
2024-10-24 9:40 ` ✓ Fi.CI.BAT: success for Move backlight read, write to lib (rev4) Patchwork
@ 2024-10-24 10:21 ` Patchwork
2024-10-24 12:09 ` ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-24 10:21 UTC (permalink / raw)
To: Reddy Guddati, Santhosh; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3463 bytes --]
== Series Details ==
Series: Move backlight read, write to lib (rev4)
URL : https://patchwork.freedesktop.org/series/140013/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8082_BAT -> XEIGTPW_11969_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11969_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_8082/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_11969/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
- bat-dg2-oem2: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#2874]) +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11969/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][5] ([Intel XE#1861]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11969/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-2: [INCOMPLETE][7] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11969/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Warnings ####
* igt@kms_dsc@dsc-basic:
- bat-lnl-1: [SKIP][9] ([Intel XE#599]) -> [SKIP][10] ([Intel XE#2244])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-lnl-1/igt@kms_dsc@dsc-basic.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11969/bat-lnl-1/igt@kms_dsc@dsc-basic.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
Build changes
-------------
* IGT: IGT_8082 -> IGTPW_11969
* Linux: xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 -> xe-2109-cef44d6820e61ebf180bd771e78f162b4bae4a6f
IGTPW_11969: b9f25761f2a3afdefe9893c10426cb796deca8dc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52
xe-2109-cef44d6820e61ebf180bd771e78f162b4bae4a6f: cef44d6820e61ebf180bd771e78f162b4bae4a6f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11969/index.html
[-- Attachment #2: Type: text/html, Size: 4255 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.IGT: failure for Move backlight read, write to lib (rev4)
2024-10-24 4:52 [PATCH i-g-t v4 0/3] Move backlight read, write to lib Santhosh Reddy Guddati
` (4 preceding siblings ...)
2024-10-24 10:21 ` ✓ CI.xeBAT: " Patchwork
@ 2024-10-24 12:09 ` Patchwork
2024-10-24 22:47 ` ✓ CI.xeFULL: success " Patchwork
2024-10-25 15:11 ` ✓ Fi.CI.IGT: " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-24 12:09 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100260 bytes --]
== Series Details ==
Series: Move backlight read, write to lib (rev4)
URL : https://patchwork.freedesktop.org/series/140013/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15587_full -> IGTPW_11969_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11969_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11969_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_11969/index.html
Participating hosts (8 -> 9)
------------------------------
Additional (2): shard-dg2-set2 shard-glk-0
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11969_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_hdr@brightness-with-hdr (NEW):
- shard-mtlp: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
#### Warnings ####
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][5] ([i915#9519]) -> [TIMEOUT][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
New tests
---------
New tests have been introduced between CI_DRM_15587_full and IGTPW_11969_full:
### New IGT tests (3) ###
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_hdr@brightness-with-hdr:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-d-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.75] s
Known issues
------------
Here are the changes found in IGTPW_11969_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [PASS][12] -> [ABORT][13] ([i915#5507])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-idle.html
* igt@fbdev@pan:
- shard-dg2: [PASS][16] -> [SKIP][17] ([i915#2582])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-5/igt@fbdev@pan.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@fbdev@pan.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_compute@compute-square:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#9310])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#6335])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8562])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#8562])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#8562])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#8562])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: [PASS][27] -> [FAIL][28] ([i915#12031])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#8555]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@smoketest:
- shard-tglu: [PASS][30] -> [FAIL][31] ([i915#11837])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-10/igt@gem_ctx_persistence@smoketest.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-8/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@invalid-args:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#280]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: NOTRUN -> [FAIL][37] ([i915#2846])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-solo:
- shard-rkl: NOTRUN -> [FAIL][38] ([i915#2842]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share:
- shard-rkl: [PASS][40] -> [FAIL][41] ([i915#2842]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-5/igt@gem_exec_fair@basic-pace-share.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-tglu-1: NOTRUN -> [FAIL][42] ([i915#2842]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3711])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#5107])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][47] +10 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +8 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +15 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +6 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_schedule@pi-ringfull@bcs0:
- shard-tglu: NOTRUN -> [FAIL][52] ([i915#12296]) +5 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-8/igt@gem_exec_schedule@pi-ringfull@bcs0.html
* igt@gem_exec_schedule@pi-ringfull@ccs0:
- shard-dg2: NOTRUN -> [FAIL][53] ([i915#12296]) +7 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@gem_exec_schedule@pi-ringfull@ccs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][57] -> [INCOMPLETE][58] ([i915#11441]) +1 other test incomplete
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-8/igt@gem_exec_suspend@basic-s0@lmem0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4860]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#2190])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#12193])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4565])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#284])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#284])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#284])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gem_media_vme.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +6 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +8 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4083]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4270]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-14/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4270]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#4270]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#5190] / [i915#8428]) +6 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#8411]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4079]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4077]) +8 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#3297])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#3297])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#3297]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#3281] / [i915#3297])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gen9_exec_parse@batch-invalid-length.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#2527])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][108] -> [ABORT][109] ([i915#9820])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#8399])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: NOTRUN -> [INCOMPLETE][111] ([i915#12455]) +1 other test incomplete
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][112] ([i915#2681]) +1 other test warn
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][113] -> [FAIL][114] ([i915#3591])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4387])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@i915_pm_sseu@full-enable.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#4212]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4212]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#8709]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/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-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#8709]) +11 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#9531])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#1769] / [i915#3555])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][127] -> [FAIL][128] ([i915#11808]) +1 other test fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [PASS][129] -> [SKIP][130] ([i915#9197]) +32 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][131] +15 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#5286])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#5286]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#5286]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#5286]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3638]) +6 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +9 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#5190] / [i915#9197]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6187])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][143] +74 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#6095]) +49 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#6095]) +64 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#9197]) +23 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#12313])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#6095]) +76 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#12313]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#12313])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#12313])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#6095]) +152 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#6095]) +88 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6095]) +29 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3742])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1 (NEW):
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#4087]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#7828]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-15/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7828]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#7828]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#7828]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#7828]) +5 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#7828]) +9 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#9424])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_content_protection@lic-type-0.html
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#9424])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#9424]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#11453] / [i915#3359])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#3555]) +5 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8814])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#11453] / [i915#3359])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#11453] / [i915#3359])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#11453] / [i915#3359])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555]) +5 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8814]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][177] +29 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#9809]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#4103])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-snb: NOTRUN -> [FAIL][180] ([i915#2346])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#8588])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#1769] / [i915#3555] / [i915#3804])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3804])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3804])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#12402])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#3840])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#1839])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#1839])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#1839])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#1839])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#9337])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#658])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#658])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#658])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#3637] / [i915#3966])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3637]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#8381])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3637]) +5 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-snb: [PASS][203] -> [FAIL][204] ([i915#2122]) +7 other tests fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#9934]) +6 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg1: [PASS][206] -> [DMESG-WARN][207] ([i915#4423]) +2 other tests dmesg-warn
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-17/igt@kms_flip@absolute-wf_vblank.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible:
- shard-dg2: [PASS][208] -> [SKIP][209] ([i915#5354]) +11 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-dg2: [PASS][210] -> [FAIL][211] ([i915#2122])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank.html
- shard-rkl: [PASS][212] -> [FAIL][213] ([i915#2122])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-dp3:
- shard-dg2: NOTRUN -> [FAIL][214] ([i915#2122]) +2 other tests fail
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank@b-dp3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][215] ([i915#2122]) +1 other test fail
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2: [PASS][216] -> [INCOMPLETE][217] ([i915#4839] / [i915#6113])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-8/igt@kms_flip@flip-vs-suspend.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [PASS][218] -> [INCOMPLETE][219] ([i915#4839] / [i915#6113]) +1 other test incomplete
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-dg1: NOTRUN -> [INCOMPLETE][220] ([i915#6113]) +1 other test incomplete
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@d-edp1:
- shard-mtlp: [PASS][221] -> [INCOMPLETE][222] ([i915#6113]) +1 other test incomplete
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-3/igt@kms_flip@flip-vs-suspend@d-edp1.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-2/igt@kms_flip@flip-vs-suspend@d-edp1.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a2:
- shard-dg2: NOTRUN -> [INCOMPLETE][223] ([i915#4839] / [i915#6113])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#2672] / [i915#3555]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/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-dg1: NOTRUN -> [SKIP][226] ([i915#2587] / [i915#2672]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/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@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#2672]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#2587] / [i915#2672]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/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-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#8813]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#2672]) +6 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672] / [i915#3555])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#3555]) +6 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [PASS][235] -> [SKIP][236] ([i915#3555]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [PASS][240] -> [FAIL][241] ([i915#6880])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8708]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8708]) +13 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][244] +36 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
- shard-snb: NOTRUN -> [SKIP][245] +39 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][246] -> [SKIP][247] +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#1825]) +46 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#5354]) +44 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#8708]) +13 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#10433] / [i915#3458])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#3023]) +20 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#1825]) +11 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3458]) +13 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][255] +55 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#3458]) +13 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#433])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#10656])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#10656]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#12388])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#12394])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#12339])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#12339])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#12388])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#12388])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#6301])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-dg2: [PASS][271] -> [SKIP][272] ([i915#9581])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-8/igt@kms_plane@planar-pixel-format-settings.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane_alpha_blend@coverage-7efc:
- shard-dg2: [PASS][273] -> [SKIP][274] ([i915#7294])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-7/igt@kms_plane_alpha_blend@coverage-7efc.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-7efc.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3582])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#11614] / [i915#3582])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-d-edp-1.html
* igt@kms_plane_multiple@tiling-4:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#3555]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-15/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu: NOTRUN -> [FAIL][279] ([i915#8292]) +1 other test fail
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#9423]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#12247]) +13 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2: [PASS][282] -> [SKIP][283] ([i915#8152] / [i915#9423])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- shard-dg2: [PASS][284] -> [SKIP][285] ([i915#8152])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#12247]) +9 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8152] / [i915#9423])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#8152])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#8152] / [i915#9423])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#8152])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#12247]) +4 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#12247]) +17 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#12247] / [i915#6953])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#12247]) +3 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#12247]) +13 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-dg2: [PASS][297] -> [SKIP][298] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- shard-dg2: [PASS][299] -> [SKIP][300] ([i915#12247]) +11 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- shard-dg2: [PASS][301] -> [SKIP][302] ([i915#12247] / [i915#8152]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-dg2: [PASS][303] -> [SKIP][304] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#6953])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/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][306] ([i915#12247] / [i915#3555] / [i915#9423])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#9812])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#5354])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#9812])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#9685])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#9685])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#9685])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][313] -> [FAIL][314] ([i915#9295])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#4281])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#9340])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#9340])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#8430])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#9519])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#9519])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#9519])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][322] -> [SKIP][323] ([i915#9519])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#3547])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#6524])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#6524])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#11520]) +4 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#9808]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12316]) +5 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#11520]) +6 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#11520]) +6 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#11520]) +3 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#11520]) +4 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#9683])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9683])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#9688]) +11 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#9732]) +18 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +21 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +12 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@pr-sprite-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#9732]) +18 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_psr@pr-sprite-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9732]) +10 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#5289])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#5289])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][344] ([i915#5289])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#11131] / [i915#4235])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#3555]) +7 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][347] ([i915#12231]) +1 other test abort
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][348] -> [FAIL][349] ([i915#5465]) +2 other tests fail
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-4/igt@kms_setmode@basic.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_setmode@basic.html
- shard-rkl: [PASS][350] -> [FAIL][351] ([i915#5465])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-4/igt@kms_setmode@basic.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][352] ([i915#5465])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-1:
- shard-snb: [PASS][353] -> [FAIL][354] ([i915#5465])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb5/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb7/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#8623])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#8623])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#11920])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#11920])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#3555] / [i915#9906])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#9906]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#8808] / [i915#9906])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#2437])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#2436])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][364] ([i915#2436])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#2434])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#2435])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@semaphore-busy:
- shard-mtlp: [PASS][367] -> [FAIL][368] ([i915#4349]) +1 other test fail
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-8/igt@perf_pmu@semaphore-busy.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@perf_pmu@semaphore-busy.html
- shard-dg2: [PASS][369] -> [FAIL][370] ([i915#4349]) +1 other test fail
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-7/igt@perf_pmu@semaphore-busy.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-5/igt@perf_pmu@semaphore-busy.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#3708] / [i915#4077])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#3708] / [i915#4077])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#3708] / [i915#4077]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#3291] / [i915#3708])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#3291] / [i915#3708])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][376] ([i915#3708]) +2 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-14/igt@prime_vgem@fence-flip-hang.html
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#3708])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#9917])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#9917])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#9917]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@fbdev@eof:
- shard-dg2: [SKIP][381] ([i915#2582]) -> [PASS][382] +1 other test pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@fbdev@eof.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@fbdev@eof.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][383] ([i915#5784]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@gem_eio@unwedge-stress.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][385] ([i915#9820]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][387] ([i915#3591]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [ABORT][389] ([i915#12216]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
* igt@kms_color@ctm-0-50@pipe-b-edp-1:
- shard-mtlp: [FAIL][391] -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-3/igt@kms_color@ctm-0-50@pipe-b-edp-1.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_color@ctm-0-50@pipe-b-edp-1.html
* igt@kms_color@ctm-max:
- shard-dg2: [SKIP][393] ([i915#5354]) -> [PASS][394] +5 other tests pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_color@ctm-max.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_color@ctm-max.html
* igt@kms_cursor_edge_walk@128x128-top-bottom:
- shard-dg2: [SKIP][395] ([i915#9197]) -> [PASS][396] +26 other tests pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_cursor_edge_walk@128x128-top-bottom.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_cursor_edge_walk@128x128-top-bottom.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-snb: [FAIL][397] ([i915#2346]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][399] ([i915#2122]) -> [PASS][400] +1 other test pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [FAIL][401] ([i915#11961] / [i915#2122]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_flip@blocking-wf_vblank.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
- shard-rkl: [FAIL][403] ([i915#11961]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-rmfb-interruptible@a-edp1:
- shard-mtlp: [INCOMPLETE][405] ([i915#6113]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-7/igt@kms_flip@flip-vs-rmfb-interruptible@a-edp1.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-8/igt@kms_flip@flip-vs-rmfb-interruptible@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-dg2: [FAIL][407] ([i915#2122]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_flip@plain-flip-fb-recreate.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][409] ([i915#2122]) -> [PASS][410] +2 other tests pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-8/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-tglu: [FAIL][411] ([i915#2122]) -> [PASS][412] +5 other tests pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-10/igt@kms_flip@plain-flip-ts-check-interruptible.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-snb: [SKIP][413] -> [PASS][414] +2 other tests pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-dg2: [SKIP][415] ([i915#3555]) -> [PASS][416] +2 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_invalid_mode@bad-vsync-end.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_plane@plane-panning-bottom-right:
- shard-dg2: [SKIP][417] ([i915#8825]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_plane@plane-panning-bottom-right.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
- shard-dg2: [SKIP][419] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- shard-dg2: [SKIP][421] ([i915#12247] / [i915#8152]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-dg2: [SKIP][423] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][424]
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-dg2: [SKIP][425] ([i915#8152] / [i915#9423]) -> [PASS][426] +1 other test pass
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- shard-dg2: [SKIP][427] ([i915#12247]) -> [PASS][428] +11 other tests pass
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2: [SKIP][429] ([i915#8152]) -> [PASS][430] +2 other tests pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_pm_rpm@cursor:
- shard-dg2: [SKIP][431] ([i915#1849]) -> [PASS][432]
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_pm_rpm@cursor.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][433] ([i915#9519]) -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[434]: https://intel-g
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/index.html
[-- Attachment #2: Type: text/html, Size: 109577 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.xeFULL: success for Move backlight read, write to lib (rev4)
2024-10-24 4:52 [PATCH i-g-t v4 0/3] Move backlight read, write to lib Santhosh Reddy Guddati
` (5 preceding siblings ...)
2024-10-24 12:09 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-24 22:47 ` Patchwork
2024-10-25 15:11 ` ✓ Fi.CI.IGT: " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-24 22:47 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1371 bytes --]
== Series Details ==
Series: Move backlight read, write to lib (rev4)
URL : https://patchwork.freedesktop.org/series/140013/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8082_full -> XEIGTPW_11969_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between XEIGT_8082_full and XEIGTPW_11969_full:
### New IGT tests (1) ###
* igt@kms_hdr@brightness-with-hdr:
- Statuses :
- Exec time: [None] s
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8082 -> IGTPW_11969
* Linux: xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 -> xe-2109-cef44d6820e61ebf180bd771e78f162b4bae4a6f
IGTPW_11969: b9f25761f2a3afdefe9893c10426cb796deca8dc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52
xe-2109-cef44d6820e61ebf180bd771e78f162b4bae4a6f: cef44d6820e61ebf180bd771e78f162b4bae4a6f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11969/index.html
[-- Attachment #2: Type: text/html, Size: 1960 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Fi.CI.IGT: success for Move backlight read, write to lib (rev4)
2024-10-24 4:52 [PATCH i-g-t v4 0/3] Move backlight read, write to lib Santhosh Reddy Guddati
` (6 preceding siblings ...)
2024-10-24 22:47 ` ✓ CI.xeFULL: success " Patchwork
@ 2024-10-25 15:11 ` Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-10-25 15:11 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100260 bytes --]
== Series Details ==
Series: Move backlight read, write to lib (rev4)
URL : https://patchwork.freedesktop.org/series/140013/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15587_full -> IGTPW_11969_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_11969_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11969_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_11969/index.html
Participating hosts (8 -> 9)
------------------------------
Additional (2): shard-dg2-set2 shard-glk-0
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11969_full:
### IGT changes ###
#### Warnings ####
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][1] ([i915#9519]) -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
New tests
---------
New tests have been introduced between CI_DRM_15587_full and IGTPW_11969_full:
### New IGT tests (1) ###
* igt@kms_hdr@brightness-with-hdr:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.00] s
Known issues
------------
Here are the changes found in IGTPW_11969_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [PASS][8] -> [ABORT][9] ([i915#5507])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-idle.html
* igt@fbdev@pan:
- shard-dg2: [PASS][12] -> [SKIP][13] ([i915#2582])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-5/igt@fbdev@pan.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@fbdev@pan.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_compute@compute-square:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9310])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#8562])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8562])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: [PASS][23] -> [FAIL][24] ([i915#12031])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@smoketest:
- shard-tglu: [PASS][26] -> [FAIL][27] ([i915#11837])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-10/igt@gem_ctx_persistence@smoketest.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-8/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@invalid-args:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: NOTRUN -> [FAIL][33] ([i915#2846])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-solo:
- shard-rkl: NOTRUN -> [FAIL][34] ([i915#2842]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share:
- shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2842]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-5/igt@gem_exec_fair@basic-pace-share.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-tglu-1: NOTRUN -> [FAIL][38] ([i915#2842]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3711])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#5107])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][43] +10 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +8 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3281]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +15 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +6 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_schedule@pi-ringfull@bcs0:
- shard-tglu: NOTRUN -> [FAIL][48] ([i915#12296]) +5 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-8/igt@gem_exec_schedule@pi-ringfull@bcs0.html
* igt@gem_exec_schedule@pi-ringfull@ccs0:
- shard-dg2: NOTRUN -> [FAIL][49] ([i915#12296]) +7 other tests fail
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@gem_exec_schedule@pi-ringfull@ccs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4812]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][53] -> [INCOMPLETE][54] ([i915#11441]) +1 other test incomplete
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-8/igt@gem_exec_suspend@basic-s0@lmem0.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4860]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#2190])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#12193])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#284])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#284])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#284])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gem_media_vme.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +8 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +7 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-14/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#4270]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190] / [i915#8428]) +6 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#8411]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4079])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4079]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4077]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3297])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#3281] / [i915#3297])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@gen9_exec_parse@batch-invalid-length.html
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][104] -> [ABORT][105] ([i915#9820])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#8399])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: NOTRUN -> [INCOMPLETE][107] ([i915#12455]) +1 other test incomplete
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][108] ([i915#2681]) +1 other test warn
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][109] -> [FAIL][110] ([i915#3591])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#11681]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#11681]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4387])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@i915_pm_sseu@full-enable.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4212])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4212]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4212]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#8709]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/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-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#8709]) +11 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#3555])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#9531])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][123] -> [FAIL][124] ([i915#11808]) +1 other test fail
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [PASS][125] -> [SKIP][126] ([i915#9197]) +32 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][127] +15 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#5286])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +6 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5286]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#5286]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3638]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3638]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5190]) +9 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#5190])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#5190] / [i915#9197]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6187])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][139] +74 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#6095]) +49 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#6095]) +64 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#9197]) +23 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#12313])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#6095]) +76 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#12313]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#12313])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#12313])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#6095]) +152 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#6095]) +88 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6095]) +29 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#3742])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4087]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#7828]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-15/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7828]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#7828]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#7828]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#7828]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#7828]) +9 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_content_protection@lic-type-0.html
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#11453] / [i915#3359])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#3555]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8814])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#11453] / [i915#3359])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#11453] / [i915#3359])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#11453] / [i915#3359])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555]) +5 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#8814]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][173] +29 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#9809]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#4103])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-snb: NOTRUN -> [FAIL][176] ([i915#2346])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#8588])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#1769] / [i915#3555] / [i915#3804])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3804])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3804])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#12402])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3840])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#1839])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#1839])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#1839])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#1839])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#9337])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#658])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#658])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#658])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3637] / [i915#3966])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3637]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#8381])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3637]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3637]) +5 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-snb: [PASS][199] -> [FAIL][200] ([i915#2122]) +7 other tests fail
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#9934]) +6 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg1: [PASS][202] -> [DMESG-WARN][203] ([i915#4423]) +2 other tests dmesg-warn
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-17/igt@kms_flip@absolute-wf_vblank.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible:
- shard-dg2: [PASS][204] -> [SKIP][205] ([i915#5354]) +11 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-dg2: [PASS][206] -> [FAIL][207] ([i915#2122])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank.html
- shard-rkl: [PASS][208] -> [FAIL][209] ([i915#2122])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-dp3:
- shard-dg2: NOTRUN -> [FAIL][210] ([i915#2122]) +2 other tests fail
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank@b-dp3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][211] ([i915#2122]) +1 other test fail
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2: [PASS][212] -> [INCOMPLETE][213] ([i915#4839] / [i915#6113])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-8/igt@kms_flip@flip-vs-suspend.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [PASS][214] -> [INCOMPLETE][215] ([i915#4839] / [i915#6113]) +1 other test incomplete
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-dg1: NOTRUN -> [INCOMPLETE][216] ([i915#6113]) +1 other test incomplete
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@d-edp1:
- shard-mtlp: [PASS][217] -> [INCOMPLETE][218] ([i915#6113]) +1 other test incomplete
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-3/igt@kms_flip@flip-vs-suspend@d-edp1.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-2/igt@kms_flip@flip-vs-suspend@d-edp1.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a2:
- shard-dg2: NOTRUN -> [INCOMPLETE][219] ([i915#4839] / [i915#6113])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) +3 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/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-dg1: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/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@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#2672]) +4 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/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-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#8813]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672]) +6 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672] / [i915#3555])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555]) +6 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [PASS][231] -> [SKIP][232] ([i915#3555]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [PASS][236] -> [FAIL][237] ([i915#6880])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#8708]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#8708]) +13 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][240] +36 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
- shard-snb: NOTRUN -> [SKIP][241] +39 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][242] -> [SKIP][243] +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#1825]) +46 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5354]) +44 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#8708]) +13 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#10433] / [i915#3458])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#3023]) +20 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#1825]) +11 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#3458]) +13 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][251] +55 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#3458]) +13 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#433])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr (NEW):
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#1187])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#1187])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#1187])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#1187])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#10656])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#10656]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#12388])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#12394])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#12339])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#12339])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#12388])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#12388])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#6301])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-dg2: [PASS][271] -> [SKIP][272] ([i915#9581])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-8/igt@kms_plane@planar-pixel-format-settings.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane_alpha_blend@coverage-7efc:
- shard-dg2: [PASS][273] -> [SKIP][274] ([i915#7294])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-7/igt@kms_plane_alpha_blend@coverage-7efc.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-7efc.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3582])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#11614] / [i915#3582])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-d-edp-1.html
* igt@kms_plane_multiple@tiling-4:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#3555]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-15/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu: NOTRUN -> [FAIL][279] ([i915#8292]) +1 other test fail
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#9423]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#12247]) +13 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2: [PASS][282] -> [SKIP][283] ([i915#8152] / [i915#9423])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- shard-dg2: [PASS][284] -> [SKIP][285] ([i915#8152])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#12247]) +9 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8152] / [i915#9423])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#8152])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#8152] / [i915#9423])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#8152])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#12247]) +4 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#12247]) +17 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#12247] / [i915#6953])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#12247]) +3 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#12247]) +13 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-dg2: [PASS][297] -> [SKIP][298] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- shard-dg2: [PASS][299] -> [SKIP][300] ([i915#12247]) +11 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- shard-dg2: [PASS][301] -> [SKIP][302] ([i915#12247] / [i915#8152]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-dg2: [PASS][303] -> [SKIP][304] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#6953])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/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][306] ([i915#12247] / [i915#3555] / [i915#9423])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#9812])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#5354])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#9812])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#9685])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#9685])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#9685])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][313] -> [FAIL][314] ([i915#9295])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#4281])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#9340])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#9340])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#8430])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#9519])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#9519])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#9519])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][322] -> [SKIP][323] ([i915#9519])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#3547])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#6524])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#6524])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#11520]) +4 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#9808]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12316]) +5 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#11520]) +6 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-3/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#11520]) +6 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#11520]) +3 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-13/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#11520]) +4 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#9683])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9683])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-9/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#9688]) +11 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#9732]) +18 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +21 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +12 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-16/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@pr-sprite-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#9732]) +18 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_psr@pr-sprite-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9732]) +10 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#5289])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#5289])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][344] ([i915#5289])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#11131] / [i915#4235])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#3555]) +7 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][347] ([i915#12231]) +1 other test abort
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][348] -> [FAIL][349] ([i915#5465]) +2 other tests fail
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-4/igt@kms_setmode@basic.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-6/igt@kms_setmode@basic.html
- shard-rkl: [PASS][350] -> [FAIL][351] ([i915#5465])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-4/igt@kms_setmode@basic.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][352] ([i915#5465])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-1:
- shard-snb: [PASS][353] -> [FAIL][354] ([i915#5465])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb5/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb7/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#8623])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#8623])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#11920])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#11920])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#3555] / [i915#9906])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#9906]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#8808] / [i915#9906])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#2437])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-2/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#2436])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][364] ([i915#2436])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#2434])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#2435])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@semaphore-busy:
- shard-mtlp: [PASS][367] -> [FAIL][368] ([i915#4349]) +1 other test fail
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-8/igt@perf_pmu@semaphore-busy.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@perf_pmu@semaphore-busy.html
- shard-dg2: [PASS][369] -> [FAIL][370] ([i915#4349]) +1 other test fail
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-7/igt@perf_pmu@semaphore-busy.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-5/igt@perf_pmu@semaphore-busy.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#3708] / [i915#4077])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#3708] / [i915#4077])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#3708] / [i915#4077]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#3291] / [i915#3708])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#3291] / [i915#3708])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][376] ([i915#3708]) +2 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-14/igt@prime_vgem@fence-flip-hang.html
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#3708])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#9917])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-1/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#9917])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#9917]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@fbdev@eof:
- shard-dg2: [SKIP][381] ([i915#2582]) -> [PASS][382] +1 other test pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@fbdev@eof.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@fbdev@eof.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][383] ([i915#5784]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-12/igt@gem_eio@unwedge-stress.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][385] ([i915#9820]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][387] ([i915#3591]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [ABORT][389] ([i915#12216]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
* igt@kms_color@ctm-0-50@pipe-b-edp-1:
- shard-mtlp: [FAIL][391] ([i915#12520]) -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-3/igt@kms_color@ctm-0-50@pipe-b-edp-1.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-7/igt@kms_color@ctm-0-50@pipe-b-edp-1.html
* igt@kms_color@ctm-max:
- shard-dg2: [SKIP][393] ([i915#5354]) -> [PASS][394] +5 other tests pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_color@ctm-max.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_color@ctm-max.html
* igt@kms_cursor_edge_walk@128x128-top-bottom:
- shard-dg2: [SKIP][395] ([i915#9197]) -> [PASS][396] +26 other tests pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_cursor_edge_walk@128x128-top-bottom.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_cursor_edge_walk@128x128-top-bottom.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-snb: [FAIL][397] ([i915#2346]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][399] ([i915#2122]) -> [PASS][400] +1 other test pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [FAIL][401] ([i915#11961] / [i915#2122]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_flip@blocking-wf_vblank.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
- shard-rkl: [FAIL][403] ([i915#11961]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-rmfb-interruptible@a-edp1:
- shard-mtlp: [INCOMPLETE][405] ([i915#6113]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-7/igt@kms_flip@flip-vs-rmfb-interruptible@a-edp1.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-8/igt@kms_flip@flip-vs-rmfb-interruptible@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-dg2: [FAIL][407] ([i915#2122]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_flip@plain-flip-fb-recreate.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][409] ([i915#2122]) -> [PASS][410] +2 other tests pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-mtlp-8/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-tglu: [FAIL][411] ([i915#2122]) -> [PASS][412] +5 other tests pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-10/igt@kms_flip@plain-flip-ts-check-interruptible.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-tglu-10/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-snb: [SKIP][413] -> [PASS][414] +2 other tests pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-dg2: [SKIP][415] ([i915#3555]) -> [PASS][416] +2 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_invalid_mode@bad-vsync-end.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_plane@plane-panning-bottom-right:
- shard-dg2: [SKIP][417] ([i915#8825]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_plane@plane-panning-bottom-right.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
- shard-dg2: [SKIP][419] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- shard-dg2: [SKIP][421] ([i915#12247] / [i915#8152]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-dg2: [SKIP][423] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][424]
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-dg2: [SKIP][425] ([i915#8152] / [i915#9423]) -> [PASS][426] +1 other test pass
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- shard-dg2: [SKIP][427] ([i915#12247]) -> [PASS][428] +11 other tests pass
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2: [SKIP][429] ([i915#8152]) -> [PASS][430] +2 other tests pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_pm_rpm@cursor:
- shard-dg2: [SKIP][431] ([i915#1849]) -> [PASS][432]
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_pm_rpm@cursor.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-4/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][433] ([i915#9519]) -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][435] ([i915#9519])
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11969/index.html
[-- Attachment #2: Type: text/html, Size: 109538 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-10-25 15:11 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-24 4:52 [PATCH i-g-t v4 0/3] Move backlight read, write to lib Santhosh Reddy Guddati
2024-10-24 4:52 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Move backlight read and " Santhosh Reddy Guddati
2024-10-24 6:35 ` Thasleem, Mohammed
2024-10-24 6:53 ` Reddy Guddati, Santhosh
2024-10-24 4:52 ` [PATCH i-g-t v4 2/3] tests/intel/kms_pm_backlight: Refactor and use functions from lib Santhosh Reddy Guddati
2024-10-24 6:36 ` Thasleem, Mohammed
2024-10-24 4:52 ` [PATCH i-g-t v4 3/3] tests/kms_hdr: Test brightness manipulation in HDR mode Santhosh Reddy Guddati
2024-10-24 4:59 ` Kandpal, Suraj
2024-10-24 6:37 ` Thasleem, Mohammed
2024-10-24 9:40 ` ✓ Fi.CI.BAT: success for Move backlight read, write to lib (rev4) Patchwork
2024-10-24 10:21 ` ✓ CI.xeBAT: " Patchwork
2024-10-24 12:09 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-24 22:47 ` ✓ CI.xeFULL: success " Patchwork
2024-10-25 15:11 ` ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox