* [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset
@ 2023-12-01 4:01 Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 1/7] tests/kms_vrr: Use lib helper to print connector modes Bhanuprakash Modem
` (9 more replies)
0 siblings, 10 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-12-01 4:01 UTC (permalink / raw)
To: igt-dev
Add new subtest to switch between low refresh rate to high
refresh rate and vice versa seamlessly without modeset.
V2: Minor cleanups
V3: Fix few condition checks
Bhanuprakash Modem (7):
tests/kms_vrr: Use lib helper to print connector modes
tests/kms_vrr: Clear VRR before exit
tests/kms_vrr: Move all config constaints to new function
tests/kms_vrr: Fix bigjoiner constraint
tests/kms_vrr: Fix the logic to calculate expected rate
tests/kms_vrr: Add new subtest to switch RR without modeset
HAX: DO_NOT_MERGE: test only seamless-rr-switch
tests/intel-ci/fast-feedback.testlist | 178 +--------------
tests/intel-ci/xe-fast-feedback.testlist | 268 +----------------------
tests/kms_vrr.c | 218 ++++++++++++++----
3 files changed, 186 insertions(+), 478 deletions(-)
--
2.40.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [i-g-t V3 1/7] tests/kms_vrr: Use lib helper to print connector modes
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
@ 2023-12-01 4:01 ` Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 2/7] tests/kms_vrr: Clear VRR before exit Bhanuprakash Modem
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-12-01 4:01 UTC (permalink / raw)
To: igt-dev
Instead of writing a new logic at test level, use library helper
to print connector modes.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_vrr.c | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 13b347631..a9098597b 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -65,13 +65,6 @@
*/
#define TEST_DURATION_NS (5000000000ull)
-#define DRM_MODE_FMT "\"%s\": %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x"
-#define DRM_MODE_ARG(m) \
- (m)->name, (m)->vrefresh, (m)->clock, \
- (m)->hdisplay, (m)->hsync_start, (m)->hsync_end, (m)->htotal, \
- (m)->vdisplay, (m)->vsync_start, (m)->vsync_end, (m)->vtotal, \
- (m)->type, (m)->flags
-
enum {
TEST_BASIC = 1 << 0,
TEST_DPMS = 1 << 1,
@@ -162,14 +155,16 @@ output_mode_with_maxrate(igt_output_t *output, unsigned int vrr_max)
drmModeConnectorPtr connector = output->config.connector;
drmModeModeInfo mode = *igt_output_get_mode(output);
- igt_debug("Default Mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(&mode));
+ igt_info("Default Mode: ");
+ kmstest_dump_mode(&mode);
for (i = 0; i < connector->count_modes; i++)
if (connector->modes[i].vrefresh > mode.vrefresh &&
connector->modes[i].vrefresh <= vrr_max)
mode = connector->modes[i];
- igt_debug("Override Mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(&mode));
+ igt_info("Override Mode: ");
+ kmstest_dump_mode(&mode);
return mode;
}
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [i-g-t V3 2/7] tests/kms_vrr: Clear VRR before exit
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 1/7] tests/kms_vrr: Use lib helper to print connector modes Bhanuprakash Modem
@ 2023-12-01 4:01 ` Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 3/7] tests/kms_vrr: Move all config constaints to new function Bhanuprakash Modem
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-12-01 4:01 UTC (permalink / raw)
To: igt-dev
Before exiting the subtest, make sure to clear the VRR.
V2: - New function for cleanup
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_vrr.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index a9098597b..1765991c6 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -469,8 +469,11 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
igt_assert_f(result < 10,
"Refresh rate (%u Hz) %"PRIu64"ns: Target VRR %s threshold exceeded, result was %u%%\n",
((range.max + range.min) / 2), rate, (flags & TEST_NEGATIVE)? "on" : "off", result);
+}
- /* Clean-up */
+static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_VRR_ENABLED, false);
igt_plane_set_fb(data->primary, NULL);
igt_output_set_pipe(output, PIPE_NONE);
igt_output_override_mode(output, NULL);
@@ -510,6 +513,9 @@ run_vrr_test(data_t *data, test_t test, uint32_t flags)
igt_dynamic_f("pipe-%s-%s",
kmstest_pipe_name(pipe), output->name)
test(data, pipe, output, flags);
+
+ test_cleanup(data, pipe, output);
+
break;
}
}
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [i-g-t V3 3/7] tests/kms_vrr: Move all config constaints to new function
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 1/7] tests/kms_vrr: Use lib helper to print connector modes Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 2/7] tests/kms_vrr: Clear VRR before exit Bhanuprakash Modem
@ 2023-12-01 4:01 ` Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 4/7] tests/kms_vrr: Fix bigjoiner constraint Bhanuprakash Modem
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-12-01 4:01 UTC (permalink / raw)
To: igt-dev
No functional change, cleanup only. Move all config checks
to new function.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_vrr.c | 24 ++++++++++++++++--------
1 file changed, 16 insertions(+), 8 deletions(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 1765991c6..4cad663e4 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -483,6 +483,21 @@ static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
igt_remove_fb(data->drm_fd, &data->fb0);
}
+static bool config_constraint(igt_output_t *output, uint32_t flags)
+{
+ if (!has_vrr(output))
+ return false;
+
+ /* For Negative tests, panel should be non-vrr. */
+ if ((flags & TEST_NEGATIVE) && vrr_capable(output))
+ return false;
+
+ if ((flags & ~TEST_NEGATIVE) && !vrr_capable(output))
+ return false;
+
+ return true;
+}
+
/* Runs tests on outputs that are VRR capable. */
static void
run_vrr_test(data_t *data, test_t test, uint32_t flags)
@@ -492,14 +507,7 @@ run_vrr_test(data_t *data, test_t test, uint32_t flags)
for_each_connected_output(&data->display, output) {
enum pipe pipe;
- if (!has_vrr(output))
- continue;
-
- /* For Negative tests, panel should be non-vrr. */
- if ((flags & TEST_NEGATIVE) && vrr_capable(output))
- continue;
-
- if ((flags & ~TEST_NEGATIVE) && !vrr_capable(output))
+ if (!config_constraint(output, flags))
continue;
for_each_pipe(&data->display, pipe) {
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [i-g-t V3 4/7] tests/kms_vrr: Fix bigjoiner constraint
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
` (2 preceding siblings ...)
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 3/7] tests/kms_vrr: Move all config constaints to new function Bhanuprakash Modem
@ 2023-12-01 4:01 ` Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 5/7] tests/kms_vrr: Fix the logic to calculate expected rate Bhanuprakash Modem
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-12-01 4:01 UTC (permalink / raw)
To: igt-dev
Before starting the subtest, we are checking the selected pipe/output
combo validity with default mode, but inside the subtest we are using
the mode with highest resolution.
Few panels exposing 4K as a default mode even though it supports 8K,
in this scenario test may misbehave due to the bigjoiner involvement.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_vrr.c | 64 ++++++++++++++++++++++++++++++-------------------
1 file changed, 39 insertions(+), 25 deletions(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 4cad663e4..71b9e4735 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -163,9 +163,6 @@ output_mode_with_maxrate(igt_output_t *output, unsigned int vrr_max)
connector->modes[i].vrefresh <= vrr_max)
mode = connector->modes[i];
- igt_info("Override Mode: ");
- kmstest_dump_mode(&mode);
-
return mode;
}
@@ -230,24 +227,8 @@ static void set_vrr_on_pipe(data_t *data, enum pipe pipe, bool enabled)
/* Prepare the display for testing on the given pipe. */
static void prepare_test(data_t *data, igt_output_t *output, enum pipe pipe)
{
- drmModeModeInfo mode;
cairo_t *cr;
-
- /* Reset output */
- igt_display_reset(&data->display);
- igt_output_set_pipe(output, pipe);
-
- /* Capture VRR range */
- data->range = get_vrr_range(data, output);
-
- /* Override mode with max vrefresh.
- * - vrr_min range should be less than the override mode vrefresh.
- * - Limit the vrr_max range with the override mode vrefresh.
- */
- mode = output_mode_with_maxrate(output, data->range.max);
- igt_require(mode.vrefresh > data->range.min);
- data->range.max = mode.vrefresh;
- igt_output_override_mode(output, &mode);
+ drmModeModeInfo mode = *igt_output_get_mode(output);
/* Prepare resources */
igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay,
@@ -483,7 +464,36 @@ static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
igt_remove_fb(data->drm_fd, &data->fb0);
}
-static bool config_constraint(igt_output_t *output, uint32_t flags)
+static bool output_constraint(data_t *data, igt_output_t *output)
+{
+ drmModeModeInfo mode;
+
+ /* Reset output */
+ igt_display_reset(&data->display);
+
+ /* Capture VRR range */
+ data->range = get_vrr_range(data, output);
+
+ /*
+ * Override mode with max vrefresh.
+ * - vrr_min range should be less than the override mode vrefresh.
+ * - Limit the vrr_max range with the override mode vrefresh.
+ */
+ mode = output_mode_with_maxrate(output, data->range.max);
+ if (mode.vrefresh < data->range.min)
+ return false;
+
+ data->range.max = mode.vrefresh;
+
+ igt_info("Override Mode: ");
+ kmstest_dump_mode(&mode);
+
+ igt_output_override_mode(output, &mode);
+
+ return true;
+}
+
+static bool config_constraint(data_t *data, igt_output_t *output, uint32_t flags)
{
if (!has_vrr(output))
return false;
@@ -495,6 +505,9 @@ static bool config_constraint(igt_output_t *output, uint32_t flags)
if ((flags & ~TEST_NEGATIVE) && !vrr_capable(output))
return false;
+ if (!output_constraint(data, output))
+ return false;
+
return true;
}
@@ -507,16 +520,17 @@ run_vrr_test(data_t *data, test_t test, uint32_t flags)
for_each_connected_output(&data->display, output) {
enum pipe pipe;
- if (!config_constraint(output, flags))
+ if (!config_constraint(data, output, flags))
continue;
for_each_pipe(&data->display, pipe) {
if (igt_pipe_connector_valid(pipe, output)) {
- igt_display_reset(&data->display);
-
igt_output_set_pipe(output, pipe);
- if (!intel_pipe_output_combo_valid(&data->display))
+
+ if (!intel_pipe_output_combo_valid(&data->display)) {
+ igt_output_set_pipe(output, PIPE_NONE);
continue;
+ }
igt_dynamic_f("pipe-%s-%s",
kmstest_pipe_name(pipe), output->name)
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [i-g-t V3 5/7] tests/kms_vrr: Fix the logic to calculate expected rate
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
` (3 preceding siblings ...)
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 4/7] tests/kms_vrr: Fix bigjoiner constraint Bhanuprakash Modem
@ 2023-12-01 4:01 ` Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-12-01 4:01 UTC (permalink / raw)
To: igt-dev
Fix the condition check to measure the expected refresh rate.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_vrr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 71b9e4735..1809164eb 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -327,7 +327,7 @@ flip_and_measure(data_t *data, igt_output_t *output, enum pipe pipe,
* difference between 144Hz and 143Hz which should give this
* enough accuracy for most use cases.
*/
- if ((rate_ns < vtest_ns.min) && (rate_ns >= vtest_ns.max))
+ if ((rate_ns <= vtest_ns.min) && (rate_ns >= vtest_ns.max))
diff_ns = rate_ns;
else
diff_ns = vtest_ns.max;
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [i-g-t V3 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
` (4 preceding siblings ...)
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 5/7] tests/kms_vrr: Fix the logic to calculate expected rate Bhanuprakash Modem
@ 2023-12-01 4:01 ` Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 7/7] HAX: DO_NOT_MERGE: test only seamless-rr-switch Bhanuprakash Modem
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-12-01 4:01 UTC (permalink / raw)
To: igt-dev
Add new subtest to switch between low refresh rate to high
refresh rate and vice versa seamlessly without modeset.
Below are the sequence of operations to perform:
With VRR:
+---------------------------+
| Step | VRR | Mode | Flip |
+------+------+------+------+
| 1 | Off | High | Yes |
| 2 | On | Low | Yes |
| 3 | On | High | Yes |
| 4 | Off | High | No |
+------+------+------+------+
Without VRR:
+---------------------------+
| Step | VRR | Mode | Flip |
+------+------+------+------+
| 1 | Off | High | Yes |
| 2 | Off | Low | Yes |
| 3 | Off | High | Yes |
+------+------+------+------+
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_vrr.c | 137 ++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 126 insertions(+), 11 deletions(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 1809164eb..1361194af 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -53,6 +53,10 @@
* SUBTEST: flipline
* Description: Make sure that flips happen at flipline decision boundary.
*
+ * SUBTEST: seamless-rr-switch
+ * Description: Test to switch RR seamlessly without modeset.
+ * Functionality: adaptive_sync, drrs, lrr
+ *
* SUBTEST: negative-basic
* Description: Make sure that VRR should not be enabled on the Non-VRR panel.
*/
@@ -70,7 +74,14 @@ enum {
TEST_DPMS = 1 << 1,
TEST_SUSPEND = 1 << 2,
TEST_FLIPLINE = 1 << 3,
- TEST_NEGATIVE = 1 << 4,
+ TEST_SEAMLESS_RR = 1 << 4,
+ TEST_NEGATIVE = 1 << 5,
+};
+
+enum {
+ HIGH_RR_MODE,
+ LOW_RR_MODE,
+ RR_MODES_COUNT,
};
typedef struct range {
@@ -85,6 +96,7 @@ typedef struct data {
igt_fb_t fb0;
igt_fb_t fb1;
range_t range;
+ drmModeModeInfo switch_modes[RR_MODES_COUNT];
} data_t;
typedef struct vtest_ns {
@@ -166,6 +178,24 @@ output_mode_with_maxrate(igt_output_t *output, unsigned int vrr_max)
return mode;
}
+static drmModeModeInfo
+low_rr_mode_with_same_res(igt_output_t *output, unsigned int vrr_min)
+{
+ int i;
+ drmModeConnectorPtr connector = output->config.connector;
+ drmModeModeInfo mode = *igt_output_get_mode(output);
+
+ for (i = 0; i < connector->count_modes; i++)
+ /* TODO: Improve checks for downclock */
+ if (connector->modes[i].hdisplay == mode.hdisplay &&
+ connector->modes[i].vdisplay == mode.vdisplay &&
+ connector->modes[i].vrefresh < mode.vrefresh &&
+ connector->modes[i].vrefresh >= vrr_min)
+ mode = connector->modes[i];
+
+ return mode;
+}
+
/* Read min and max vrr range from the connector debugfs. */
static range_t
get_vrr_range(data_t *data, igt_output_t *output)
@@ -378,6 +408,9 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
igt_info("VRR Test execution on %s, PIPE_%s with VRR range: (%u-%u) Hz\n",
output->name, kmstest_pipe_name(pipe), range.min, range.max);
+ igt_info("Override Mode: ");
+ kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]);
+
set_vrr_on_pipe(data, pipe, true);
/*
@@ -454,7 +487,9 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
{
- igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_VRR_ENABLED, false);
+ if (vrr_capable(output))
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_VRR_ENABLED, false);
+
igt_plane_set_fb(data->primary, NULL);
igt_output_set_pipe(output, PIPE_NONE);
igt_output_override_mode(output, NULL);
@@ -464,9 +499,65 @@ static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
igt_remove_fb(data->drm_fd, &data->fb0);
}
-static bool output_constraint(data_t *data, igt_output_t *output)
+static void
+test_seamless_rr_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
{
- drmModeModeInfo mode;
+ uint32_t result;
+ vtest_ns_t vtest_ns;
+ uint64_t rate;
+ bool vrr = vrr_capable(output);
+
+ igt_info("Use HIGH_RR Mode as default (VRR: OFF): ");
+ kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]);
+
+ prepare_test(data, output, pipe);
+ vtest_ns = get_test_rate_ns(data->range);
+
+ rate = vtest_ns.max;
+ result = flip_and_measure(data, output, pipe, rate, TEST_DURATION_NS);
+ igt_assert_f(result > 75,
+ "Refresh rate (%u Hz) %"PRIu64"ns: Target VRR off threshold not reached, result was %u%%\n",
+ data->range.max, rate, result);
+
+ /* Switch to low rr mode without modeset. */
+ igt_info("Switch to LOW_RR Mode (VRR: %s): ", vrr ? "ON" : "OFF");
+ kmstest_dump_mode(&data->switch_modes[LOW_RR_MODE]);
+ igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]);
+ if (vrr)
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_VRR_ENABLED, true);
+ igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) == 0);
+
+ rate = vtest_ns.min;
+ result = flip_and_measure(data, output, pipe, rate, TEST_DURATION_NS);
+ igt_assert_f(result > 75,
+ "Refresh rate (%u Hz) %"PRIu64"ns: Target VRR %s threshold not reached, result was %u%%\n",
+ data->range.min, rate, vrr ? "on" : "off", result);
+
+ /* Switch back to high rr mode without modeset. */
+ igt_info("Switch back to HIGH_RR Mode (VRR: %s): ", vrr ? "ON" : "OFF");
+ kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]);
+ igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]);
+ igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) == 0);
+
+ rate = vtest_ns.mid;
+ result = flip_and_measure(data, output, pipe, rate, TEST_DURATION_NS);
+ igt_assert_f(vrr ? (result > 75) : (result < 10),
+ "Refresh rate (%u Hz) %"PRIu64"ns: Target VRR %s threshold %s, result was %u%%\n",
+ ((data->range.max + data->range.min) / 2), rate,
+ vrr ? "on" : "off", vrr ? "not reached" : "exceeded", result);
+
+ if (vrr) {
+ igt_info("Disable VRR.\n");
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_VRR_ENABLED, true);
+ igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) == 0);
+ }
+}
+
+static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags)
+{
+ if ((flags & TEST_SEAMLESS_RR) &&
+ output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP)
+ return false;
/* Reset output */
igt_display_reset(&data->display);
@@ -474,21 +565,35 @@ static bool output_constraint(data_t *data, igt_output_t *output)
/* Capture VRR range */
data->range = get_vrr_range(data, output);
+ /*
+ * FIXME: Read the DRRS capability, currently assuming:
+ * - Panel should contain 2 modes only
+ * - Both modes should have the same resolution but different RR
+ */
+ if (!vrr_capable(output) && output->config.connector->count_modes != 2)
+ return false;
+
/*
* Override mode with max vrefresh.
* - vrr_min range should be less than the override mode vrefresh.
* - Limit the vrr_max range with the override mode vrefresh.
*/
- mode = output_mode_with_maxrate(output, data->range.max);
- if (mode.vrefresh < data->range.min)
+ data->switch_modes[HIGH_RR_MODE] = output_mode_with_maxrate(output, data->range.max);
+ if (data->switch_modes[HIGH_RR_MODE].vrefresh < data->range.min)
return false;
- data->range.max = mode.vrefresh;
+ data->range.max = data->switch_modes[HIGH_RR_MODE].vrefresh;
+ igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]);
- igt_info("Override Mode: ");
- kmstest_dump_mode(&mode);
+ /* Search for a low refresh rate mode. */
+ if (!(flags & TEST_SEAMLESS_RR))
+ return true;
+
+ data->switch_modes[LOW_RR_MODE] = low_rr_mode_with_same_res(output, data->range.min);
+ if (data->switch_modes[LOW_RR_MODE].vrefresh == data->switch_modes[HIGH_RR_MODE].vrefresh)
+ return false;
- igt_output_override_mode(output, &mode);
+ data->range.min = data->switch_modes[LOW_RR_MODE].vrefresh;
return true;
}
@@ -498,6 +603,9 @@ static bool config_constraint(data_t *data, igt_output_t *output, uint32_t flags
if (!has_vrr(output))
return false;
+ if (flags & TEST_SEAMLESS_RR)
+ goto out;
+
/* For Negative tests, panel should be non-vrr. */
if ((flags & TEST_NEGATIVE) && vrr_capable(output))
return false;
@@ -505,7 +613,8 @@ static bool config_constraint(data_t *data, igt_output_t *output, uint32_t flags
if ((flags & ~TEST_NEGATIVE) && !vrr_capable(output))
return false;
- if (!output_constraint(data, output))
+out:
+ if (!output_constraint(data, output, flags))
return false;
return true;
@@ -581,6 +690,12 @@ igt_main
igt_subtest_with_dynamic("negative-basic")
run_vrr_test(&data, test_basic, TEST_NEGATIVE);
+ igt_describe("Test to switch RR seamlessly without modeset.");
+ igt_subtest_with_dynamic("seamless-rr-switch") {
+ igt_require_intel(data.drm_fd);
+ run_vrr_test(&data, test_seamless_rr_basic, TEST_SEAMLESS_RR);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [i-g-t V3 7/7] HAX: DO_NOT_MERGE: test only seamless-rr-switch
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
` (5 preceding siblings ...)
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
@ 2023-12-01 4:01 ` Bhanuprakash Modem
2023-12-01 5:09 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_vrr: Add new subtest to switch RR without modeset (rev4) Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-12-01 4:01 UTC (permalink / raw)
To: igt-dev
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 178 +--------------
tests/intel-ci/xe-fast-feedback.testlist | 268 +----------------------
2 files changed, 8 insertions(+), 438 deletions(-)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index aeba0ab29..73ddbda4e 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -1,177 +1,7 @@
# Try to load the driver if it's not available yet.
igt@i915_module_load@load
-# Keep alphabetically sorted by default
-igt@core_auth@basic-auth
-igt@debugfs_test@read_all_entries
-igt@debugfs_test@basic-hwmon
-igt@fbdev@eof
-igt@fbdev@info
-igt@fbdev@nullptr
-igt@fbdev@read
-igt@fbdev@write
-igt@gem_basic@bad-close
-igt@gem_basic@create-close
-igt@gem_basic@create-fd-close
-igt@gem_busy@busy@all-engines
-igt@gem_close_race@basic-process
-igt@gem_close_race@basic-threads
-igt@gem_ctx_create@basic
-igt@gem_ctx_create@basic-files
-igt@gem_ctx_exec@basic
-igt@gem_exec_basic@basic
-igt@gem_exec_create@basic
-igt@gem_exec_fence@basic-busy
-igt@gem_exec_fence@basic-wait
-igt@gem_exec_fence@basic-await
-igt@gem_exec_fence@nb-await
-igt@gem_exec_gttfill@basic
-igt@gem_exec_parallel@engines
-igt@gem_exec_store@basic
-igt@gem_flink_basic@bad-flink
-igt@gem_flink_basic@bad-open
-igt@gem_flink_basic@basic
-igt@gem_flink_basic@double-flink
-igt@gem_flink_basic@flink-lifetime
-igt@gem_huc_copy@huc-copy
-igt@gem_linear_blits@basic
-igt@gem_mmap@basic
-igt@gem_mmap_gtt@basic
-igt@gem_render_linear_blits@basic
-igt@gem_render_tiled_blits@basic
-igt@gem_ringfill@basic-all
-igt@gem_softpin@allocator-basic
-igt@gem_softpin@allocator-basic-reserve
-igt@gem_softpin@safe-alignment
-igt@gem_sync@basic-all
-igt@gem_sync@basic-each
-igt@gem_tiled_blits@basic
-igt@gem_tiled_fence_blits@basic
-igt@gem_tiled_pread_basic
-igt@gem_wait@busy@all-engines
-igt@gem_wait@wait@all-engines
-igt@i915_getparams_basic@basic-eu-total
-igt@i915_getparams_basic@basic-subslice-total
-igt@i915_hangman@error-state-basic
-igt@i915_pciid
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@basic-y-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@bo-too-small-due-to-tiling
-igt@kms_addfb_basic@clobberred-modifier
-igt@kms_addfb_basic@framebuffer-vs-set-tiling
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@tile-pitch-mismatch
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_busy@basic
-igt@kms_prop_blob@basic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@force-load-detect
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_pm_backlight@basic-brightness
-igt@kms_pm_rpm@basic-pci-d3-state
-igt@kms_pm_rpm@basic-rte
-igt@kms_psr@psr_primary_page_flip
-igt@kms_psr@psr_cursor_plane_move
-igt@kms_psr@psr_sprite_plane_onoff
-igt@kms_psr@psr_primary_mmap_gtt
-igt@kms_setmode@basic-clone-single-crtc
-igt@i915_pm_rps@basic-api
-igt@prime_self_import@basic-llseek-bad
-igt@prime_self_import@basic-llseek-size
-igt@prime_self_import@basic-with_fd_dup
-igt@prime_self_import@basic-with_one_bo
-igt@prime_self_import@basic-with_one_bo_two_files
-igt@prime_self_import@basic-with_two_bos
-igt@prime_vgem@basic-fence-flip
-igt@prime_vgem@basic-fence-mmap
-igt@prime_vgem@basic-fence-read
-igt@prime_vgem@basic-gtt
-igt@prime_vgem@basic-read
-igt@prime_vgem@basic-write
-igt@vgem_basic@setversion
-igt@vgem_basic@create
-igt@vgem_basic@debugfs
-igt@vgem_basic@dmabuf-export
-igt@vgem_basic@dmabuf-fence
-igt@vgem_basic@dmabuf-fence-before
-igt@vgem_basic@dmabuf-mmap
-igt@vgem_basic@mmap
-igt@vgem_basic@second-client
-igt@vgem_basic@sysfs
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-
-igt@core_hotunplug@unbind-rebind
-igt@vgem_basic@unload
-igt@i915_module_load@reload
-igt@gem_lmem_swapping@basic
-igt@gem_lmem_swapping@parallel-random-engines
-igt@gem_lmem_swapping@random-engines
-igt@gem_lmem_swapping@verify-random
-igt@i915_pm_rpm@module-reload
-
-# Kernel selftests
-igt@i915_selftest@live
-igt@dmabuf@all-tests
-
-# System wide suspend tests
-igt@i915_suspend@basic-s2idle-without-i915
-igt@i915_suspend@basic-s3-without-i915
-igt@gem_exec_suspend@basic-s0
-igt@gem_exec_suspend@basic-s3
-igt@kms_pipe_crc_basic@suspend-read-crc
+igt@kms_vrr@flip-basic
+igt@kms_vrr@seamless-rr-switch
+igt@kms_vrr@flipline
+igt@kms_vrr@negative-basic
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 5c53e249d..89a1a2882 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,267 +1,7 @@
# Should be the first test
igt@xe_module_load@load
-igt@xe_compute@compute-square
-igt@xe_create@create-execqueues-noleak
-igt@xe_create@create-execqueues-leak
-igt@xe_create@create-massive-size
-igt@xe_debugfs@base
-igt@xe_debugfs@gt
-igt@xe_debugfs@forcewake
-igt@xe_dma_buf_sync@export-dma-buf-once
-igt@xe_dma_buf_sync@export-dma-buf-once-read-sync
-igt@xe_evict@evict-beng-mixed-threads-small-multi-vm
-igt@xe_evict@evict-beng-small
-igt@xe_evict@evict-beng-small-cm
-igt@xe_evict@evict-beng-small-external
-igt@xe_evict@evict-beng-small-external-cm
-igt@xe_evict@evict-beng-small-multi-vm
-igt@xe_evict@evict-cm-threads-small
-igt@xe_evict@evict-mixed-threads-small
-igt@xe_evict@evict-mixed-threads-small-multi-vm
-igt@xe_evict@evict-small
-igt@xe_evict@evict-small-cm
-igt@xe_evict@evict-small-external
-igt@xe_evict@evict-small-external-cm
-igt@xe_evict@evict-small-multi-vm
-igt@xe_evict@evict-small-multi-vm-cm
-igt@xe_evict@evict-threads-small
-igt@xe_evict_ccs@evict-overcommit-simple
-igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd
-igt@xe_exec_balancer@twice-virtual-basic
-igt@xe_exec_balancer@no-exec-virtual-basic
-igt@xe_exec_balancer@twice-cm-virtual-basic
-igt@xe_exec_balancer@no-exec-cm-virtual-basic
-igt@xe_exec_balancer@twice-virtual-userptr
-igt@xe_exec_balancer@twice-cm-virtual-userptr
-igt@xe_exec_balancer@twice-virtual-rebind
-igt@xe_exec_balancer@twice-cm-virtual-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-parallel-basic
-igt@xe_exec_balancer@no-exec-parallel-basic
-igt@xe_exec_balancer@twice-parallel-userptr
-igt@xe_exec_balancer@twice-parallel-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-invalidate
-igt@xe_exec_basic@twice-basic
-igt@xe_exec_basic@no-exec-basic
-igt@xe_exec_basic@twice-basic-defer-mmap
-igt@xe_exec_basic@twice-basic-defer-bind
-igt@xe_exec_basic@twice-userptr
-igt@xe_exec_basic@twice-rebind
-igt@xe_exec_basic@twice-userptr-rebind
-igt@xe_exec_basic@twice-userptr-invalidate
-igt@xe_exec_basic@no-exec-userptr-invalidate
-igt@xe_exec_basic@twice-bindexecqueue
-igt@xe_exec_basic@no-exec-bindexecqueue
-igt@xe_exec_basic@twice-bindexecqueue-userptr
-igt@xe_exec_basic@twice-bindexecqueue-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_compute_mode@twice-basic
-igt@xe_exec_compute_mode@twice-preempt-fence-early
-igt@xe_exec_compute_mode@twice-userptr
-igt@xe_exec_compute_mode@twice-rebind
-igt@xe_exec_compute_mode@twice-userptr-rebind
-igt@xe_exec_compute_mode@twice-userptr-invalidate
-igt@xe_exec_compute_mode@twice-bindexecqueue
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr
-igt@xe_exec_compute_mode@twice-bindexecqueue-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_reset@close-fd-no-exec
-igt@xe_exec_reset@cm-close-fd-no-exec
-igt@xe_exec_reset@virtual-close-fd-no-exec
-igt@xe_exec_store@basic-store
-igt@xe_exec_threads@threads-basic
-igt@xe_exec_threads@threads-mixed-basic
-igt@xe_exec_threads@threads-mixed-shared-vm-basic
-igt@xe_exec_threads@threads-mixed-fd-basic
-igt@xe_exec_threads@threads-mixed-userptr-invalidate
-igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race
-igt@xe_gpgpu_fill@basic
-igt@xe_guc_pc@freq_basic_api
-igt@xe_guc_pc@freq_fixed_idle
-igt@xe_guc_pc@freq_range_idle
-igt@xe_huc_copy@huc_copy
-igt@xe_intel_bb@add-remove-objects
-igt@xe_intel_bb@bb-with-allocator
-igt@xe_intel_bb@blit-reloc
-igt@xe_intel_bb@blit-simple
-igt@xe_intel_bb@create-in-region
-igt@xe_intel_bb@delta-check
-igt@xe_intel_bb@destroy-bb
-igt@xe_intel_bb@intel-bb-blit-none
-igt@xe_intel_bb@intel-bb-blit-x
-igt@xe_intel_bb@intel-bb-blit-y
-igt@xe_intel_bb@lot-of-buffers
-igt@xe_intel_bb@offset-control
-igt@xe_intel_bb@purge-bb
-igt@xe_intel_bb@render
-igt@xe_intel_bb@reset-bb
-igt@xe_intel_bb@simple-bb
-igt@xe_intel_bb@simple-bb-ctx
-igt@xe_mmap@bad-extensions
-igt@xe_mmap@bad-flags
-igt@xe_mmap@bad-object
-igt@xe_mmap@cpu-caching
-igt@xe_mmap@system
-igt@xe_mmap@vram
-igt@xe_mmap@vram-system
-igt@xe_pm_residency@gt-c6-on-idle
-igt@xe_prime_self_import@basic-with_one_bo
-igt@xe_prime_self_import@basic-with_fd_dup
-#igt@xe_prime_self_import@basic-llseek-size
-igt@xe_query@query-engines
-igt@xe_query@query-mem-usage
-igt@xe_query@query-gt-list
-igt@xe_query@query-config
-igt@xe_query@query-hwconfig
-igt@xe_query@query-topology
-igt@xe_query@query-invalid-extension
-igt@xe_query@query-invalid-query
-igt@xe_query@query-invalid-size
-igt@xe_spin_batch@spin-basic
-igt@xe_spin_batch@spin-batch
-igt@xe_sysfs_defaults@engine-defaults
-igt@xe_sysfs_scheduler@preempt_timeout_us-invalid
-igt@xe_sysfs_scheduler@preempt_timeout_us-min-max
-igt@xe_sysfs_scheduler@timeslice_duration_us-invalid
-igt@xe_sysfs_scheduler@timeslice_duration_us-min-max
-igt@xe_sysfs_scheduler@job_timeout_ms-invalid
-igt@xe_sysfs_scheduler@job_timeout_ms-min-max
-#igt@xe_vm@bind-once
-#igt@xe_vm@scratch
-igt@xe_vm@shared-pte-page
-igt@xe_vm@shared-pde-page
-igt@xe_vm@shared-pde2-page
-igt@xe_vm@shared-pde3-page
-igt@xe_vm@bind-execqueues-independent
-igt@xe_vm@munmap-style-unbind-one-partial
-igt@xe_vm@munmap-style-unbind-end
-igt@xe_vm@munmap-style-unbind-front
-igt@xe_vm@munmap-style-unbind-userptr-one-partial
-igt@xe_vm@munmap-style-unbind-userptr-end
-igt@xe_vm@munmap-style-unbind-userptr-front
-igt@xe_vm@munmap-style-unbind-userptr-inval-end
-igt@xe_vm@munmap-style-unbind-userptr-inval-front
-igt@xe_pat@userptr-coh-none
-igt@xe_pat@prime-self-import-coh
-igt@xe_pat@prime-external-import-coh
-igt@xe_pat@pat-index-all
-igt@xe_pat@pat-index-xelp
-igt@xe_pat@pat-index-xehpc
-igt@xe_pat@pat-index-xelpg
-igt@xe_pat@pat-index-xe2
-igt@xe_waitfence@abstime
-igt@xe_waitfence@engine
-igt@xe_waitfence@reltime
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@basic-y-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@tile-pitch-mismatch
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_prop_blob@basic
-igt@kms_psr@psr_primary_page_flip
-igt@kms_psr@psr_cursor_plane_move
-igt@kms_psr@psr_sprite_plane_onoff
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-igt@core_hotunplug@unbind-rebind
-
-# Run KUnit tests at the end
-igt@xe_live_ktest@bo
-igt@xe_live_ktest@dmabuf
-igt@xe_live_ktest@migrate
-
-# Move fault_mode tests at the end to unblock execution
-igt@xe_exec_fault_mode@twice-basic
-igt@xe_exec_fault_mode@many-basic
-igt@xe_exec_fault_mode@twice-userptr
-igt@xe_exec_fault_mode@twice-rebind
-igt@xe_exec_fault_mode@twice-userptr-rebind
-igt@xe_exec_fault_mode@twice-userptr-invalidate
-igt@xe_exec_fault_mode@twice-bindexecqueue
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_fault_mode@twice-basic-imm
-igt@xe_exec_fault_mode@twice-userptr-imm
-igt@xe_exec_fault_mode@twice-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-basic-prefetch
-igt@xe_exec_fault_mode@twice-userptr-prefetch
-igt@xe_exec_fault_mode@twice-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-invalid-fault
-igt@xe_exec_fault_mode@twice-invalid-userptr-fault
+igt@kms_vrr@flip-basic
+igt@kms_vrr@seamless-rr-switch
+igt@kms_vrr@flipline
+igt@kms_vrr@negative-basic
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_vrr: Add new subtest to switch RR without modeset (rev4)
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
` (6 preceding siblings ...)
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 7/7] HAX: DO_NOT_MERGE: test only seamless-rr-switch Bhanuprakash Modem
@ 2023-12-01 5:09 ` Patchwork
2023-12-01 5:36 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork
2023-12-02 9:40 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-12-01 5:09 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11660 bytes --]
== Series Details ==
Series: tests/kms_vrr: Add new subtest to switch RR without modeset (rev4)
URL : https://patchwork.freedesktop.org/series/127047/
State : success
== Summary ==
CI Bug Log - changes from IGT_7613 -> IGTPW_10314
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/index.html
Participating hosts (37 -> 37)
------------------------------
Additional (3): bat-rpls-1 bat-kbl-2 bat-dg2-8
Missing (3): fi-bsw-n3050 fi-snb-2520m fi-pnv-d510
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10314:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_vrr@seamless-rr-switch} (NEW):
- fi-rkl-11600: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-rkl-11600/igt@kms_vrr@seamless-rr-switch.html
- bat-adls-5: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-adls-5/igt@kms_vrr@seamless-rr-switch.html
- bat-adlp-9: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-adlp-9/igt@kms_vrr@seamless-rr-switch.html
- bat-dg2-11: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-dg2-11/igt@kms_vrr@seamless-rr-switch.html
- {bat-dg2-14}: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-dg2-14/igt@kms_vrr@seamless-rr-switch.html
- bat-dg2-8: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-dg2-8/igt@kms_vrr@seamless-rr-switch.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch.html
- bat-dg2-9: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-dg2-9/igt@kms_vrr@seamless-rr-switch.html
- bat-adlp-11: NOTRUN -> [SKIP][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-adlp-11/igt@kms_vrr@seamless-rr-switch.html
- bat-mtlp-8: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-mtlp-8/igt@kms_vrr@seamless-rr-switch.html
* {igt@kms_vrr@seamless-rr-switch@pipe-a-edp-1} (NEW):
- bat-jsl-3: NOTRUN -> [FAIL][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-jsl-3/igt@kms_vrr@seamless-rr-switch@pipe-a-edp-1.html
- bat-jsl-1: NOTRUN -> [FAIL][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-jsl-1/igt@kms_vrr@seamless-rr-switch@pipe-a-edp-1.html
New tests
---------
New tests have been introduced between IGT_7613 and IGTPW_10314:
### New IGT tests (2) ###
* igt@kms_vrr@seamless-rr-switch:
- Statuses : 31 skip(s)
- Exec time: [0.0] s
* igt@kms_vrr@seamless-rr-switch@pipe-a-edp-1:
- Statuses : 2 fail(s) 3 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_10314 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_vrr@flip-basic:
- fi-rkl-11600: NOTRUN -> [SKIP][13] ([i915#3555]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-rkl-11600/igt@kms_vrr@flip-basic.html
- bat-atsm-1: NOTRUN -> [SKIP][14] ([i915#6078]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-atsm-1/igt@kms_vrr@flip-basic.html
- fi-cfl-guc: NOTRUN -> [SKIP][15] ([fdo#109271]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-cfl-guc/igt@kms_vrr@flip-basic.html
- bat-jsl-3: NOTRUN -> [SKIP][16] ([i915#3555]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-jsl-3/igt@kms_vrr@flip-basic.html
- bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#3555]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-dg2-9/igt@kms_vrr@flip-basic.html
- fi-kbl-x1275: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#1845]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-kbl-x1275/igt@kms_vrr@flip-basic.html
- bat-adlp-11: NOTRUN -> [SKIP][19] ([i915#3555]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-adlp-11/igt@kms_vrr@flip-basic.html
- fi-cfl-8109u: NOTRUN -> [SKIP][20] ([fdo#109271]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-cfl-8109u/igt@kms_vrr@flip-basic.html
- bat-adln-1: NOTRUN -> [SKIP][21] ([i915#3555]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-adln-1/igt@kms_vrr@flip-basic.html
- fi-ivb-3770: NOTRUN -> [SKIP][22] ([fdo#109271]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-ivb-3770/igt@kms_vrr@flip-basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#8808]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-mtlp-8/igt@kms_vrr@flip-basic.html
- fi-elk-e7500: NOTRUN -> [SKIP][24] ([fdo#109271]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-elk-e7500/igt@kms_vrr@flip-basic.html
- bat-dg2-8: NOTRUN -> [SKIP][25] ([i915#3555]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-dg2-8/igt@kms_vrr@flip-basic.html
- fi-kbl-guc: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1845]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-kbl-guc/igt@kms_vrr@flip-basic.html
- bat-adlm-1: NOTRUN -> [SKIP][27] ([i915#1845]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-adlm-1/igt@kms_vrr@flip-basic.html
- fi-ilk-650: NOTRUN -> [SKIP][28] ([fdo#109271]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-ilk-650/igt@kms_vrr@flip-basic.html
- bat-jsl-1: NOTRUN -> [SKIP][29] ([i915#3555]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-jsl-1/igt@kms_vrr@flip-basic.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][30] ([i915#3555]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-tgl-1115g4/igt@kms_vrr@flip-basic.html
- bat-mtlp-6: NOTRUN -> [SKIP][31] ([i915#1845]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-mtlp-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- fi-skl-guc: NOTRUN -> [SKIP][32] ([fdo#109271]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-skl-guc/igt@kms_vrr@flipline.html
- fi-cfl-8700k: NOTRUN -> [SKIP][33] ([fdo#109271]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-cfl-8700k/igt@kms_vrr@flipline.html
- fi-blb-e6850: NOTRUN -> [SKIP][34] ([fdo#109271]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-blb-e6850/igt@kms_vrr@flipline.html
- fi-bsw-nick: NOTRUN -> [SKIP][35] ([fdo#109271]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-bsw-nick/igt@kms_vrr@flipline.html
- bat-adlp-6: NOTRUN -> [SKIP][36] ([i915#3555])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-adlp-6/igt@kms_vrr@flipline.html
- bat-rplp-1: NOTRUN -> [SKIP][37] ([i915#3555]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-rplp-1/igt@kms_vrr@flipline.html
- bat-dg1-7: NOTRUN -> [SKIP][38] ([i915#1845]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-dg1-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- bat-kbl-2: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#1845]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-kbl-2/igt@kms_vrr@negative-basic.html
- fi-skl-6600u: NOTRUN -> [SKIP][40] ([fdo#109271]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-skl-6600u/igt@kms_vrr@negative-basic.html
- bat-adls-5: NOTRUN -> [SKIP][41] ([i915#3555])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-adls-5/igt@kms_vrr@negative-basic.html
- fi-apl-guc: NOTRUN -> [SKIP][42] ([fdo#109271]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-apl-guc/igt@kms_vrr@negative-basic.html
- bat-dg1-7: NOTRUN -> [SKIP][43] ([i915#1845] / [i915#4078])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-dg1-7/igt@kms_vrr@negative-basic.html
- bat-dg2-11: NOTRUN -> [SKIP][44] ([i915#3555]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-dg2-11/igt@kms_vrr@negative-basic.html
- fi-kbl-7567u: NOTRUN -> [SKIP][45] ([fdo#109271]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-kbl-7567u/igt@kms_vrr@negative-basic.html
- bat-adlp-9: NOTRUN -> [SKIP][46] ([i915#3555])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-adlp-9/igt@kms_vrr@negative-basic.html
* {igt@kms_vrr@seamless-rr-switch} (NEW):
- bat-rpls-1: NOTRUN -> [SKIP][47] ([i915#1845]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-rpls-1/igt@kms_vrr@seamless-rr-switch.html
- bat-kbl-2: NOTRUN -> [SKIP][48] ([fdo#109271])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/bat-kbl-2/igt@kms_vrr@seamless-rr-switch.html
- fi-glk-j4005: NOTRUN -> [SKIP][49] ([fdo#109271]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-glk-j4005/igt@kms_vrr@seamless-rr-switch.html
- fi-kbl-guc: NOTRUN -> [SKIP][50] ([fdo#109271])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-kbl-guc/igt@kms_vrr@seamless-rr-switch.html
- fi-kbl-x1275: NOTRUN -> [SKIP][51] ([fdo#109271])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/fi-kbl-x1275/igt@kms_vrr@seamless-rr-switch.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7613 -> IGTPW_10314
CI-20190529: 20190529
CI_DRM_13956: b59a0a6520764f36a79ba6b4c590e243ac6b913d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10314: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/index.html
IGT_7613: 378017d8fa63defde11c0b4bc72025c64b70607d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_vrr@seamless-rr-switch
-igt@xe_peer2peer@read
-igt@xe_peer2peer@write
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/index.html
[-- Attachment #2: Type: text/html, Size: 15627 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for tests/kms_vrr: Add new subtest to switch RR without modeset (rev4)
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
` (7 preceding siblings ...)
2023-12-01 5:09 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_vrr: Add new subtest to switch RR without modeset (rev4) Patchwork
@ 2023-12-01 5:36 ` Patchwork
2023-12-02 9:40 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-12-01 5:36 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3381 bytes --]
== Series Details ==
Series: tests/kms_vrr: Add new subtest to switch RR without modeset (rev4)
URL : https://patchwork.freedesktop.org/series/127047/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7613_BAT -> XEIGTPW_10314_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10314_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10314_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10314_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vrr@flip-basic:
- bat-atsm-2: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10314/bat-atsm-2/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- bat-pvc-2: NOTRUN -> [SKIP][2] +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10314/bat-pvc-2/igt@kms_vrr@flipline.html
* {igt@kms_vrr@seamless-rr-switch} (NEW):
- bat-adlp-7: NOTRUN -> [FAIL][3] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10314/bat-adlp-7/igt@kms_vrr@seamless-rr-switch.html
New tests
---------
New tests have been introduced between XEIGT_7613_BAT and XEIGTPW_10314_BAT:
### New IGT tests (2) ###
* igt@kms_vrr@seamless-rr-switch:
- Statuses : 1 fail(s) 3 skip(s)
- Exec time: [0.0] s
* igt@kms_vrr@seamless-rr-switch@pipe-a-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_10314_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_vrr@flip-basic:
- bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#455]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10314/bat-adlp-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@negative-basic:
- bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#455]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10314/bat-dg2-oem2/igt@kms_vrr@negative-basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_7613 -> IGTPW_10314
* Linux: xe-542-84f2c2adec155170779f65ff63b4e80a51d22448 -> xe-543-450234a8c60f880247d4f3a3137058eec6f4e491
IGTPW_10314: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/index.html
IGT_7613: 378017d8fa63defde11c0b4bc72025c64b70607d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-542-84f2c2adec155170779f65ff63b4e80a51d22448: 84f2c2adec155170779f65ff63b4e80a51d22448
xe-543-450234a8c60f880247d4f3a3137058eec6f4e491: 450234a8c60f880247d4f3a3137058eec6f4e491
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10314/index.html
[-- Attachment #2: Type: text/html, Size: 4255 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_vrr: Add new subtest to switch RR without modeset (rev4)
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
` (8 preceding siblings ...)
2023-12-01 5:36 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork
@ 2023-12-02 9:40 ` Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-12-02 9:40 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100286 bytes --]
== Series Details ==
Series: tests/kms_vrr: Add new subtest to switch RR without modeset (rev4)
URL : https://patchwork.freedesktop.org/series/127047/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7613_full -> IGTPW_10314_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10314_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10314_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_10314/index.html
Participating hosts (12 -> 11)
------------------------------
Missing (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10314_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_flink_basic@flink-lifetime:
- shard-dg2: [PASS][1] -> [TIMEOUT][2] +1 other test timeout
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@gem_flink_basic@flink-lifetime.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@gem_flink_basic@flink-lifetime.html
* igt@i915_selftest@live@gem_contexts:
- shard-mtlp: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@i915_selftest@live@gem_contexts.html
* igt@kms_vblank@wait-forked-hang:
- shard-dg2: NOTRUN -> [TIMEOUT][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_vblank@wait-forked-hang.html
* {igt@kms_vrr@seamless-rr-switch} (NEW):
- shard-dg2: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@kms_vrr@seamless-rr-switch.html
- shard-rkl: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@kms_vrr@seamless-rr-switch.html
- shard-dg1: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-16/igt@kms_vrr@seamless-rr-switch.html
- shard-tglu: NOTRUN -> [SKIP][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-3/igt@kms_vrr@seamless-rr-switch.html
- shard-mtlp: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch.html
#### Warnings ####
* igt@gem_exec_fair@basic-pace:
- shard-dg2: [SKIP][11] ([i915#3539]) -> [TIMEOUT][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-6/igt@gem_exec_fair@basic-pace.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@gem_exec_fair@basic-pace.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: [SKIP][13] ([i915#4077]) -> [TIMEOUT][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][15] ([i915#4538] / [i915#5190]) -> [TIMEOUT][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d-hdmi-a-3}:
- shard-dg2: [PASS][17] -> [TIMEOUT][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d-hdmi-a-3.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d-hdmi-a-3.html
New tests
---------
New tests have been introduced between IGT_7613_full and IGTPW_10314_full:
### New IGT tests (1) ###
* igt@kms_vrr@seamless-rr-switch:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_10314_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8411])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8411])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][21] ([i915#6122])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-5/igt@api_intel_bb@render-ccs.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#7701])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8414]) +12 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8414]) +20 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][25] ([i915#7742])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@eof:
- shard-rkl: [PASS][26] -> [SKIP][27] ([i915#2582]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@fbdev@eof.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@fbdev@eof.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#7697])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-9/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6335])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#8562])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#8562])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#8562])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-7/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][34] -> [FAIL][35] ([i915#6268])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][36] ([fdo#109314])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#280])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][38] ([i915#7975] / [i915#8213])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-5/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg1: NOTRUN -> [FAIL][39] ([i915#5784])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-16/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4771])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#8555]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@gem_exec_balancer@noheartbeat.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#8555]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4525]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@sliced:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#6334])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][48] ([i915#9606])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][49] ([i915#9606]) +1 other test fail
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@gem_exec_capture@many-4k-zero.html
- shard-mtlp: NOTRUN -> [FAIL][50] ([i915#9606])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][51] -> [FAIL][52] ([i915#2842])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3539])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-18/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#7697])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#7697])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-5/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][58] ([fdo#112283])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@gem_exec_params@secure-non-master.html
- shard-mtlp: NOTRUN -> [SKIP][59] ([fdo#112283])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-4/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3281]) +10 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3281]) +8 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3281]) +9 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3281]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-19/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4537] / [i915#4812]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4537] / [i915#4812])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: [PASS][66] -> [ABORT][67] ([i915#7975] / [i915#8213])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#4613]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-glk5/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4613]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#4613]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-5/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap@big-bo:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +7 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4083]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@set-cache-level:
- shard-rkl: [PASS][75] -> [SKIP][76] ([i915#1850])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@gem_mmap_wc@set-cache-level.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3282]) +6 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@uncached:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-19/igt@gem_pread@uncached.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-13/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#4270]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#4270]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-3/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8428]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4079])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-rkl: NOTRUN -> [SKIP][89] ([fdo#109312])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@gem_softpin@evict-snoop-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][90] ([fdo#109312])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-9/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4879])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-2/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][92] ([fdo#110542])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@gem_userptr_blits@coherency-sync.html
- shard-tglu: NOTRUN -> [SKIP][93] ([fdo#110542])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-5/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4958])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#3297]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen3_mixed_blits:
- shard-tglu: NOTRUN -> [SKIP][98] ([fdo#109289])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-4/igt@gen3_mixed_blits.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: NOTRUN -> [SKIP][99] ([fdo#109289])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-2/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-param:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#2856]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-7/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@load:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#6227])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-5/igt@i915_module_load@load.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#8399])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg2: NOTRUN -> [SKIP][106] ([fdo#109293] / [fdo#109506])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
- shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#109293])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#6621])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][109] ([i915#8346])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@i915_pm_rps@reset.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#109303])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-2/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@mock@memory_region:
- shard-glk: NOTRUN -> [DMESG-WARN][111] ([i915#9311])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-glk2/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4077]) +8 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-6/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4077]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-15/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4212])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4212]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3826])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][117] ([i915#8247]) +3 other tests fail
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-5/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][118] ([i915#8561]) +2 other tests dmesg-fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@kms_async_flips@crc@pipe-b-edp-1.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][119] ([i915#8247]) +3 other tests fail
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][120] ([i915#8247])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6229])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-1/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][122] ([fdo#109271] / [i915#1769])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#1845] / [i915#4098]) +38 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][125] ([fdo#111614]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-7/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][129] ([fdo#111615] / [i915#5286])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [FAIL][130] ([i915#5138])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][131] ([fdo#111614]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][132] ([fdo#111614]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-2/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][133] ([fdo#111614] / [i915#3638]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3638])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-17/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][135] -> [FAIL][136] ([i915#3743])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#5190]) +14 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [FAIL][138] ([i915#3743])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [PASS][139] -> [SKIP][140] ([i915#1845] / [i915#4098]) +25 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5190]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][142] ([fdo#111615]) +9 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][143] ([fdo#111615])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-19/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][144] ([fdo#111615])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][145] ([fdo#111615]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][147] ([fdo#110723])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_joiner@basic:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#2705])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_big_joiner@basic.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#3742])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087] / [i915#7213]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#4087]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2: NOTRUN -> [SKIP][152] ([fdo#111827])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-5/igt@kms_chamelium_color@ctm-0-50.html
- shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#111827])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-tglu: NOTRUN -> [SKIP][154] ([fdo#111827])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-7/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-negative:
- shard-glk: NOTRUN -> [SKIP][155] ([fdo#109271]) +84 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-glk9/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#7828]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#7828]) +9 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#7828]) +8 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#7828]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-16/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7828]) +8 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#7118]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3299])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3299])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][164] ([i915#7173])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@lic:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#6944]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@kms_content_protection@lic.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#7118]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3359]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8814])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555]) +6 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3359]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][173] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][174] ([fdo#111767] / [i915#3546])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3546]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#4213])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][177] ([fdo#109274] / [i915#5354]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-tglu: NOTRUN -> [SKIP][178] ([fdo#109274]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#4103] / [i915#4213])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#8588])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8588])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3804])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3840] / [i915#9688])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#3469])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3637]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][187] ([fdo#111825]) +10 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-tglu: NOTRUN -> [SKIP][188] ([fdo#109274] / [i915#3637]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-9/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][189] ([fdo#109274]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-snb: NOTRUN -> [SKIP][190] ([fdo#109271]) +5 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-snb5/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@dpms-off-confusion-interruptible:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#3637] / [i915#4098]) +8 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_flip@dpms-off-confusion-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#2672]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#2672]) +7 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555]) +12 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8810])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: [PASS][199] -> [FAIL][200] ([i915#6880]) +1 other test fail
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#5354]) +24 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][202] ([fdo#109280]) +18 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-rkl: [PASS][203] -> [SKIP][204] ([i915#1849] / [i915#4098] / [i915#5354]) +13 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#8708]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#3023]) +8 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#3458]) +19 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#1849] / [i915#4098] / [i915#5354]) +11 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8708]) +8 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#1825]) +27 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][211] ([fdo#111825]) +7 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][212] ([fdo#111825] / [i915#1825]) +23 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#5439])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][214] ([fdo#110189]) +7 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#3458]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8708]) +9 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-2/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_hdr@static-swap.html
* igt@kms_invalid_mode@bad-htotal:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#4098])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_invalid_mode@bad-htotal.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#6301])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-rkl: NOTRUN -> [SKIP][221] ([fdo#109289])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][222] ([fdo#109289]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-18/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][223] ([fdo#109289]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-1/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#4098] / [i915#8825])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane@plane-position-hole:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#8825])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_plane@plane-position-hole.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][226] ([i915#4573]) +1 other test fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8821])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8821])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#8806])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#6953])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][231] -> [FAIL][232] ([i915#8292])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#5176] / [i915#9423]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#4098] / [i915#6953] / [i915#8152]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#5235]) +3 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#6953] / [i915#8152])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/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-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#5235]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#5235]) +15 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#5235]) +4 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#5235]) +19 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-18/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#5235]) +14 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#6524])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_properties@crtc-properties-atomic:
- shard-rkl: [PASS][244] -> [SKIP][245] ([i915#1849])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_properties@crtc-properties-atomic.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_properties@crtc-properties-atomic.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#9683])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][247] ([fdo#111068] / [i915#9683])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-2/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#9683]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][249] ([fdo#111068] / [i915#9683])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#9683]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#4348])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2_cursor_render:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#9673] / [i915#9732])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-12/igt@kms_psr@psr2_cursor_render.html
* igt@kms_psr@psr2_primary_blt:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#9673] / [i915#9732]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@kms_psr@psr2_primary_blt.html
* igt@kms_psr@psr2_primary_render:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#9673] / [i915#9732])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_psr@psr2_primary_render.html
* igt@kms_psr@psr2_sprite_blt:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#9673] / [i915#9732])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-8/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#9685])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#4235])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][258] ([fdo#111615] / [i915#5289])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#4235] / [i915#5190])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#4235]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][261] ([i915#5465]) +1 other test fail
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8823])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#4098]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_setmode@invalid-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8809])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][265] ([i915#9196])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [PASS][266] -> [FAIL][267] ([i915#9196]) +1 other test fail
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-modeset:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#4098]) +9 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_vblank@ts-continuation-modeset.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8808]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#2437])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_writeback@writeback-check-output.html
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#2437])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#2437])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-17/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#2434])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-2/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#2434])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@perf@mi-rpc.html
* igt@perf@polling-small-buf:
- shard-rkl: [PASS][275] -> [FAIL][276] ([i915#1722])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@perf@polling-small-buf.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@perf@polling-small-buf.html
* igt@perf_pmu@event-wait@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8807])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][278] ([i915#5793])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#8516])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#3291] / [i915#3708])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@prime_vgem@basic-fence-read.html
- shard-rkl: NOTRUN -> [SKIP][281] ([fdo#109295] / [i915#3291] / [i915#3708])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@prime_vgem@basic-fence-read.html
* igt@syncobj_wait@invalid-multi-wait-unsubmitted-submitted-signaled:
- shard-mtlp: NOTRUN -> [DMESG-WARN][282] ([i915#1982])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@syncobj_wait@invalid-multi-wait-unsubmitted-submitted-signaled.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][283] ([fdo#109307] / [i915#4818])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_submit_cl@bad-perfmon:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#2575]) +11 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-perfmon.html
* igt@v3d/v3d_submit_cl@single-out-sync:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#2575]) +8 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-7/igt@v3d/v3d_submit_cl@single-out-sync.html
* igt@v3d/v3d_submit_csd@bad-perfmon:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#2575]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-12/igt@v3d/v3d_submit_csd@bad-perfmon.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-rkl: NOTRUN -> [SKIP][287] ([fdo#109315]) +8 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@v3d/v3d_submit_csd@valid-multisync-submission:
- shard-tglu: NOTRUN -> [SKIP][288] ([fdo#109315] / [i915#2575]) +6 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-8/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
* igt@vc4/vc4_create_bo@create-bo-0:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#7711]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-18/igt@vc4/vc4_create_bo@create-bo-0.html
* igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#7711]) +7 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#7711]) +6 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-6/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#7711]) +7 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#2575]) +4 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-5/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][294] ([i915#7742]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_eio@hibernate:
- shard-tglu: [ABORT][296] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-10/igt@gem_eio@hibernate.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-6/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][298] ([i915#5784]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg1-16/igt@gem_eio@unwedge-stress.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-19/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][300] ([i915#2842]) -> [PASS][301] +2 other tests pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [DMESG-WARN][302] ([i915#4936] / [i915#5493]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [DMESG-WARN][304] ([i915#4936] / [i915#5493]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [ABORT][306] ([i915#5566]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-glk1/igt@gen9_exec_parse@allowed-all.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-glk9/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [INCOMPLETE][308] ([i915#5566]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-glk3/igt@gen9_exec_parse@allowed-single.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-glk9/igt@gen9_exec_parse@allowed-single.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [FAIL][310] ([i915#5138]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [FAIL][312] ([i915#3743]) -> [PASS][313] +1 other test pass
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_color@degamma@pipe-a:
- shard-rkl: [SKIP][314] ([i915#4098]) -> [PASS][315] +8 other tests pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_color@degamma@pipe-a.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_color@degamma@pipe-a.html
* igt@kms_fbcon_fbt@fbc:
- shard-rkl: [SKIP][316] ([i915#1849] / [i915#4098]) -> [PASS][317] +2 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_fbcon_fbt@fbc.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_fbcon_fbt@fbc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][318] ([i915#1849] / [i915#4098] / [i915#5354]) -> [PASS][319] +10 other tests pass
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [FAIL][320] ([i915#6880]) -> [PASS][321] +2 other tests pass
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* {igt@kms_pm_rpm@dpms-mode-unset-lpsp}:
- shard-rkl: [SKIP][322] ([i915#9519]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [SKIP][324] ([i915#1845] / [i915#4098]) -> [PASS][325] +25 other tests pass
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-90.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][326] ([i915#9196]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][328] ([i915#7484]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
* igt@prime_vgem@basic-fence-flip:
- shard-rkl: [SKIP][330] ([fdo#109295] / [i915#3708] / [i915#4098]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@prime_vgem@basic-fence-flip.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@prime_vgem@basic-fence-flip.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [ABORT][332] ([i915#9618]) -> [INCOMPLETE][333] ([i915#9408])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][334] ([i915#2842]) -> [FAIL][335] ([i915#2876])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][336] ([i915#1845] / [i915#4098]) -> [SKIP][337] ([i915#9531])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][338] ([i915#5286]) -> [SKIP][339] ([i915#1845] / [i915#4098]) +9 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][340] ([i915#1845] / [i915#4098]) -> [SKIP][341] ([i915#5286]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-rkl: [SKIP][342] ([i915#1845] / [i915#4098]) -> [SKIP][343] ([fdo#110723]) +2 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][344] ([fdo#110723]) -> [SKIP][345] ([i915#1845] / [i915#4098]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: [SKIP][346] ([fdo#111615]) -> [SKIP][347] ([i915#1845] / [i915#4098])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_color@deep-color:
- shard-rkl: [SKIP][348] ([i915#3555]) -> [SKIP][349] ([i915#3546] / [i915#4098])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-2/igt@kms_color@deep-color.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-rkl: [SKIP][350] ([i915#7118]) -> [SKIP][351] ([i915#1845] / [i915#4098])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_content_protection@atomic.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][352] ([i915#1845] / [i915#4098]) -> [SKIP][353] ([i915#3359]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: [SKIP][354] ([i915#1845] / [i915#4098]) -> [SKIP][355] ([fdo#109279] / [i915#3359])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][356] ([i915#1845] / [i915#4098]) -> [SKIP][357] ([i915#3555]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][358] ([i915#1845] / [i915#4098]) -> [SKIP][359] ([i915#4103])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: [SKIP][360] ([i915#1845] / [i915#4098]) -> [SKIP][361] ([fdo#111825]) +3 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: [SKIP][362] ([fdo#111825]) -> [SKIP][363] ([i915#1845] / [i915#4098]) +5 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: [SKIP][364] ([fdo#111767] / [fdo#111825]) -> [SKIP][365] ([i915#1845] / [i915#4098])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: [SKIP][366] ([i915#4103]) -> [SKIP][367] ([i915#1845] / [i915#4098])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][368] ([fdo#110189] / [i915#3955]) -> [SKIP][369] ([i915#3955])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][370] ([fdo#111825]) -> [SKIP][371] ([i915#1849] / [i915#4098] / [i915#5354])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][372] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][373] ([fdo#111825] / [i915#1825]) +24 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][374] ([fdo#111825] / [i915#1825]) -> [SKIP][375] ([i915#1849] / [i915#4098] / [i915#5354]) +41 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][376] ([i915#3023]) -> [SKIP][377] ([i915#1849] / [i915#4098] / [i915#5354]) +23 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-rkl: [SKIP][378] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][379] ([i915#3023]) +20 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [SKIP][380] ([i915#1845] / [i915#4098]) -> [SKIP][381] ([i915#3555] / [i915#8228])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_hdr@bpc-switch.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: [SKIP][382] ([i915#3555] / [i915#8228]) -> [SKIP][383] ([i915#1845] / [i915#4098])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_hdr@static-toggle-dpms.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][384] ([i915#4816]) -> [SKIP][385] ([i915#4070] / [i915#4816])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][386] ([i915#6301]) -> [SKIP][387] ([i915#1845] / [i915#4098])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][388] ([i915#3555]) -> [SKIP][389] ([i915#1845] / [i915#4098]) +8 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_plane_multiple@tiling-yf.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: [SKIP][390] ([i915#9673] / [i915#9732]) -> [SKIP][391] ([i915#9673] / [i915#9736]) +5 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-6/igt@kms_psr@psr2_dpms.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-11/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@psr2_sprite_blt:
- shard-rkl: [SKIP][392] ([i915#9673] / [i915#9732]) -> [SKIP][393] ([i915#9673]) +3 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_psr@psr2_sprite_blt.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_psr@psr2_suspend:
- shard-dg2: [SKIP][394] ([i915#9673] / [i915#9736]) -> [SKIP][395] ([i915#9673] / [i915#9732]) +2 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@kms_psr@psr2_suspend.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-dg2-10/igt@kms_psr@psr2_suspend.html
- shard-rkl: [SKIP][396] ([i915#9673]) -> [SKIP][397] ([i915#9673] / [i915#9732]) +2 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_psr@psr2_suspend.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-4/igt@kms_psr@psr2_suspend.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: [SKIP][398] ([fdo#111615] / [i915#5289]) -> [SKIP][399] ([i915#1845] / [i915#4098])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: [SKIP][400] ([i915#1845] / [i915#4098]) -> [SKIP][401] ([fdo#111615] / [i915#5289])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7484]: ht
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10314/index.html
[-- Attachment #2: Type: text/html, Size: 125647 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-12-02 9:40 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-01 4:01 [igt-dev] [i-g-t V3 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 1/7] tests/kms_vrr: Use lib helper to print connector modes Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 2/7] tests/kms_vrr: Clear VRR before exit Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 3/7] tests/kms_vrr: Move all config constaints to new function Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 4/7] tests/kms_vrr: Fix bigjoiner constraint Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 5/7] tests/kms_vrr: Fix the logic to calculate expected rate Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem
2023-12-01 4:01 ` [igt-dev] [i-g-t V3 7/7] HAX: DO_NOT_MERGE: test only seamless-rr-switch Bhanuprakash Modem
2023-12-01 5:09 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_vrr: Add new subtest to switch RR without modeset (rev4) Patchwork
2023-12-01 5:36 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork
2023-12-02 9:40 ` [igt-dev] ✗ 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