* [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset
@ 2023-12-01 14:16 Bhanuprakash Modem
2023-12-01 14:16 ` [igt-dev] [i-g-t V4 1/7] tests/kms_vrr: Use lib helper to print connector modes Bhanuprakash Modem
` (10 more replies)
0 siblings, 11 replies; 13+ messages in thread
From: Bhanuprakash Modem @ 2023-12-01 14:16 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
V4: Fix Negative subtest
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 | 265 +----------------------
tests/kms_vrr.c | 214 ++++++++++++++----
3 files changed, 184 insertions(+), 473 deletions(-)
--
2.40.0
^ permalink raw reply [flat|nested] 13+ messages in thread* [igt-dev] [i-g-t V4 1/7] tests/kms_vrr: Use lib helper to print connector modes 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem @ 2023-12-01 14:16 ` Bhanuprakash Modem 2023-12-01 14:16 ` [igt-dev] [i-g-t V4 2/7] tests/kms_vrr: Clear VRR before exit Bhanuprakash Modem ` (9 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2023-12-01 14:16 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] 13+ messages in thread
* [igt-dev] [i-g-t V4 2/7] tests/kms_vrr: Clear VRR before exit 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem 2023-12-01 14:16 ` [igt-dev] [i-g-t V4 1/7] tests/kms_vrr: Use lib helper to print connector modes Bhanuprakash Modem @ 2023-12-01 14:16 ` Bhanuprakash Modem 2023-12-01 14:16 ` [igt-dev] [i-g-t V4 3/7] tests/kms_vrr: Move all config constaints to new function Bhanuprakash Modem ` (8 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2023-12-01 14:16 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] 13+ messages in thread
* [igt-dev] [i-g-t V4 3/7] tests/kms_vrr: Move all config constaints to new function 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem 2023-12-01 14:16 ` [igt-dev] [i-g-t V4 1/7] tests/kms_vrr: Use lib helper to print connector modes Bhanuprakash Modem 2023-12-01 14:16 ` [igt-dev] [i-g-t V4 2/7] tests/kms_vrr: Clear VRR before exit Bhanuprakash Modem @ 2023-12-01 14:16 ` Bhanuprakash Modem 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 4/7] tests/kms_vrr: Fix bigjoiner constraint Bhanuprakash Modem ` (7 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2023-12-01 14:16 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] 13+ messages in thread
* [igt-dev] [i-g-t V4 4/7] tests/kms_vrr: Fix bigjoiner constraint 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem ` (2 preceding siblings ...) 2023-12-01 14:16 ` [igt-dev] [i-g-t V4 3/7] tests/kms_vrr: Move all config constaints to new function Bhanuprakash Modem @ 2023-12-01 14:17 ` Bhanuprakash Modem 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 5/7] tests/kms_vrr: Fix the logic to calculate expected rate Bhanuprakash Modem ` (6 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2023-12-01 14:17 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 | 62 +++++++++++++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 23 deletions(-) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 4cad663e4..2918f7860 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; } @@ -233,21 +230,7 @@ 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); + mode = *igt_output_get_mode(output); /* Prepare resources */ igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, @@ -483,7 +466,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 +507,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 +522,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] 13+ messages in thread
* [igt-dev] [i-g-t V4 5/7] tests/kms_vrr: Fix the logic to calculate expected rate 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem ` (3 preceding siblings ...) 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 4/7] tests/kms_vrr: Fix bigjoiner constraint Bhanuprakash Modem @ 2023-12-01 14:17 ` Bhanuprakash Modem 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem ` (5 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2023-12-01 14:17 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 2918f7860..422d89073 100644 --- a/tests/kms_vrr.c +++ b/tests/kms_vrr.c @@ -329,7 +329,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] 13+ messages in thread
* [igt-dev] [i-g-t V4 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem ` (4 preceding siblings ...) 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 5/7] tests/kms_vrr: Fix the logic to calculate expected rate Bhanuprakash Modem @ 2023-12-01 14:17 ` Bhanuprakash Modem 2023-12-04 2:35 ` Srinivas, Vidya 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 7/7] HAX: DO_NOT_MERGE: test only seamless-rr-switch Bhanuprakash Modem ` (4 subsequent siblings) 10 siblings, 1 reply; 13+ messages in thread From: Bhanuprakash Modem @ 2023-12-01 14:17 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: 1. Use High RR mode + VRR On (if panel supports) -> Measure vblank timings 2. Switch to Low RR mode -> Measure vblank timings 3. Switch back to High RR mode -> Measure vblank timings Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_vrr.c | 135 ++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 124 insertions(+), 11 deletions(-) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 422d89073..8b89d1a87 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) @@ -380,6 +410,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); /* @@ -456,7 +489,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); @@ -466,9 +501,71 @@ 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: %s): ", vrr ? "ON" : "OFF"); + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); + + prepare_test(data, output, pipe); + vtest_ns = get_test_rate_ns(data->range); + + 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.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 %s threshold not reached, result was %u%%\n", + data->range.max, rate, vrr ? "on" : "off", 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]); + 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); +} + +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; + + /* + * FIXME: Read the DRRS capability, currently assuming: + * - Panel should contain 2 modes only + * - Both modes should have the same resolution but different RR + */ + if ((flags & TEST_SEAMLESS_RR) && + !vrr_capable(output) && output->config.connector->count_modes != 2) + return false; /* Reset output */ igt_display_reset(&data->display); @@ -481,16 +578,22 @@ static bool output_constraint(data_t *data, igt_output_t *output) * - 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; } @@ -500,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; @@ -507,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; @@ -583,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] 13+ messages in thread
* Re: [igt-dev] [i-g-t V4 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem @ 2023-12-04 2:35 ` Srinivas, Vidya 0 siblings, 0 replies; 13+ messages in thread From: Srinivas, Vidya @ 2023-12-04 2:35 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org Tested-by: Vidya Srinivas <vidya.srinivas@intel.com> > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > Bhanuprakash Modem > Sent: Friday, December 1, 2023 7:47 PM > To: igt-dev@lists.freedesktop.org > Subject: [igt-dev] [i-g-t V4 6/7] tests/kms_vrr: Add new subtest to switch RR > without modeset > > 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: > > 1. Use High RR mode + VRR On (if panel supports) -> Measure vblank timings > 2. Switch to Low RR mode -> Measure vblank timings 3. Switch back to High > RR mode -> Measure vblank timings > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/kms_vrr.c | 135 ++++++++++++++++++++++++++++++++++++++++++++--- > - > 1 file changed, 124 insertions(+), 11 deletions(-) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 422d89073..8b89d1a87 > 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) @@ -380,6 +410,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); > > /* > @@ -456,7 +489,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); @@ -466,9 +501,71 @@ > 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: %s): ", vrr ? "ON" : > "OFF"); > + kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]); > + > + prepare_test(data, output, pipe); > + vtest_ns = get_test_rate_ns(data->range); > + > + 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.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 %s > threshold not reached, result was %u%%\n", > + data->range.max, rate, vrr ? "on" : "off", 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]); > + 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); } > + > +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; > + > + /* > + * FIXME: Read the DRRS capability, currently assuming: > + * - Panel should contain 2 modes only > + * - Both modes should have the same resolution but different RR > + */ > + if ((flags & TEST_SEAMLESS_RR) && > + !vrr_capable(output) && output->config.connector->count_modes > != 2) > + return false; > > /* Reset output */ > igt_display_reset(&data->display); > @@ -481,16 +578,22 @@ static bool output_constraint(data_t *data, > igt_output_t *output) > * - 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; > } > @@ -500,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; > @@ -507,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; > @@ -583,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 [flat|nested] 13+ messages in thread
* [igt-dev] [i-g-t V4 7/7] HAX: DO_NOT_MERGE: test only seamless-rr-switch 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem ` (5 preceding siblings ...) 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem @ 2023-12-01 14:17 ` Bhanuprakash Modem 2023-12-01 17:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_vrr: Add new subtest to switch RR without modeset (rev5) Patchwork ` (3 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2023-12-01 14:17 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 | 265 +---------------------- 2 files changed, 8 insertions(+), 435 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 f48e8fb67..89a1a2882 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,264 +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-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@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@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] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_vrr: Add new subtest to switch RR without modeset (rev5) 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem ` (6 preceding siblings ...) 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 7/7] HAX: DO_NOT_MERGE: test only seamless-rr-switch Bhanuprakash Modem @ 2023-12-01 17:36 ` Patchwork 2023-12-01 18:56 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork ` (2 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-12-01 17:36 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11707 bytes --] == Series Details == Series: tests/kms_vrr: Add new subtest to switch RR without modeset (rev5) URL : https://patchwork.freedesktop.org/series/127047/ State : success == Summary == CI Bug Log - changes from CI_DRM_13960 -> IGTPW_10320 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/index.html Participating hosts (38 -> 38) ------------------------------ Additional (2): bat-dg2-8 fi-pnv-d510 Missing (2): bat-mtlp-8 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10320: ### 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_10320/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_10320/bat-adls-5/igt@kms_vrr@seamless-rr-switch.html - bat-dg1-5: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg1-5/igt@kms_vrr@seamless-rr-switch.html - bat-adlp-9: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-adlp-9/igt@kms_vrr@seamless-rr-switch.html - bat-dg2-11: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg2-11/igt@kms_vrr@seamless-rr-switch.html - {bat-dg2-14}: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg2-14/igt@kms_vrr@seamless-rr-switch.html - bat-dg2-8: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg2-8/igt@kms_vrr@seamless-rr-switch.html - fi-tgl-1115g4: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-tgl-1115g4/igt@kms_vrr@seamless-rr-switch.html - bat-dg2-9: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg2-9/igt@kms_vrr@seamless-rr-switch.html - bat-adlp-11: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-adlp-11/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_10320/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_10320/bat-jsl-1/igt@kms_vrr@seamless-rr-switch@pipe-a-edp-1.html New tests --------- New tests have been introduced between CI_DRM_13960 and IGTPW_10320: ### New IGT tests (2) ### * igt@kms_vrr@seamless-rr-switch: - Statuses : 32 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_10320 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_10320/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_10320/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_10320/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_10320/bat-jsl-3/igt@kms_vrr@flip-basic.html - bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#3555]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/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_10320/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_10320/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_10320/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_10320/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_10320/fi-ivb-3770/igt@kms_vrr@flip-basic.html - fi-elk-e7500: NOTRUN -> [SKIP][23] ([fdo#109271]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-elk-e7500/igt@kms_vrr@flip-basic.html - bat-dg2-8: NOTRUN -> [SKIP][24] ([i915#3555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg2-8/igt@kms_vrr@flip-basic.html - fi-kbl-guc: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1845]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-kbl-guc/igt@kms_vrr@flip-basic.html - bat-adlm-1: NOTRUN -> [SKIP][26] ([i915#1845]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-adlm-1/igt@kms_vrr@flip-basic.html - fi-ilk-650: NOTRUN -> [SKIP][27] ([fdo#109271]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-ilk-650/igt@kms_vrr@flip-basic.html - bat-jsl-1: NOTRUN -> [SKIP][28] ([i915#3555]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-jsl-1/igt@kms_vrr@flip-basic.html - fi-tgl-1115g4: NOTRUN -> [SKIP][29] ([i915#3555]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-tgl-1115g4/igt@kms_vrr@flip-basic.html - bat-mtlp-6: NOTRUN -> [SKIP][30] ([i915#1845]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-mtlp-6/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flipline: - fi-skl-guc: NOTRUN -> [SKIP][31] ([fdo#109271]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-skl-guc/igt@kms_vrr@flipline.html - fi-cfl-8700k: NOTRUN -> [SKIP][32] ([fdo#109271]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-cfl-8700k/igt@kms_vrr@flipline.html - fi-blb-e6850: NOTRUN -> [SKIP][33] ([fdo#109271]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-blb-e6850/igt@kms_vrr@flipline.html - fi-bsw-nick: NOTRUN -> [SKIP][34] ([fdo#109271]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-bsw-nick/igt@kms_vrr@flipline.html - bat-adlp-6: NOTRUN -> [SKIP][35] ([i915#3555]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-adlp-6/igt@kms_vrr@flipline.html - bat-rplp-1: NOTRUN -> [SKIP][36] ([i915#3555]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-rplp-1/igt@kms_vrr@flipline.html - bat-dg1-7: NOTRUN -> [SKIP][37] ([i915#1845]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg1-7/igt@kms_vrr@flipline.html * igt@kms_vrr@negative-basic: - bat-kbl-2: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#1845]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-kbl-2/igt@kms_vrr@negative-basic.html - fi-skl-6600u: NOTRUN -> [SKIP][39] ([fdo#109271]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-skl-6600u/igt@kms_vrr@negative-basic.html - bat-adls-5: NOTRUN -> [SKIP][40] ([i915#3555]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-adls-5/igt@kms_vrr@negative-basic.html - fi-apl-guc: NOTRUN -> [SKIP][41] ([fdo#109271]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-apl-guc/igt@kms_vrr@negative-basic.html - bat-dg1-5: NOTRUN -> [SKIP][42] ([i915#3555]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg1-5/igt@kms_vrr@negative-basic.html - fi-pnv-d510: NOTRUN -> [SKIP][43] ([fdo#109271]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-pnv-d510/igt@kms_vrr@negative-basic.html - bat-dg1-7: NOTRUN -> [SKIP][44] ([i915#1845] / [i915#4078]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg1-7/igt@kms_vrr@negative-basic.html - bat-dg2-11: NOTRUN -> [SKIP][45] ([i915#3555]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-dg2-11/igt@kms_vrr@negative-basic.html - fi-kbl-7567u: NOTRUN -> [SKIP][46] ([fdo#109271]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-kbl-7567u/igt@kms_vrr@negative-basic.html - bat-adlp-9: NOTRUN -> [SKIP][47] ([i915#3555]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-adlp-9/igt@kms_vrr@negative-basic.html * {igt@kms_vrr@seamless-rr-switch} (NEW): - fi-bsw-n3050: NOTRUN -> [SKIP][48] ([fdo#109271]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-bsw-n3050/igt@kms_vrr@seamless-rr-switch.html - bat-kbl-2: NOTRUN -> [SKIP][49] ([fdo#109271]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/bat-kbl-2/igt@kms_vrr@seamless-rr-switch.html - fi-glk-j4005: NOTRUN -> [SKIP][50] ([fdo#109271]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-glk-j4005/igt@kms_vrr@seamless-rr-switch.html - fi-kbl-guc: NOTRUN -> [SKIP][51] ([fdo#109271]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/fi-kbl-guc/igt@kms_vrr@seamless-rr-switch.html - fi-kbl-x1275: NOTRUN -> [SKIP][52] ([fdo#109271]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/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 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7614 -> IGTPW_10320 CI-20190529: 20190529 CI_DRM_13960: 9adc1aba5de6959c54a990b92594c2364366e8db @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10320: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_vrr@seamless-rr-switch == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/index.html [-- Attachment #2: Type: text/html, Size: 15742 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for tests/kms_vrr: Add new subtest to switch RR without modeset (rev5) 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem ` (7 preceding siblings ...) 2023-12-01 17:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_vrr: Add new subtest to switch RR without modeset (rev5) Patchwork @ 2023-12-01 18:56 ` Patchwork 2023-12-03 2:14 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork 2023-12-04 2:31 ` [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Srinivas, Vidya 10 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-12-01 18:56 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3155 bytes --] == Series Details == Series: tests/kms_vrr: Add new subtest to switch RR without modeset (rev5) URL : https://patchwork.freedesktop.org/series/127047/ State : failure == Summary == CI Bug Log - changes from XEIGT_7614_BAT -> XEIGTPW_10320_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_10320_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_10320_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 -> 3) ------------------------------ Missing (1): bat-dg2-oem2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_10320_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_10320/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_10320/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_10320/bat-adlp-7/igt@kms_vrr@seamless-rr-switch.html New tests --------- New tests have been introduced between XEIGT_7614_BAT and XEIGTPW_10320_BAT: ### New IGT tests (2) ### * igt@kms_vrr@seamless-rr-switch: - Statuses : 1 fail(s) 2 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_10320_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_10320/bat-adlp-7/igt@kms_vrr@flip-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_7614 -> IGTPW_10320 * Linux: xe-544-a8b405ffc0326c79abf737389d99c290648f381d -> xe-545-38dc2e0d8c28a817f2c727402e2638f3ea2accb4 IGTPW_10320: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-544-a8b405ffc0326c79abf737389d99c290648f381d: a8b405ffc0326c79abf737389d99c290648f381d xe-545-38dc2e0d8c28a817f2c727402e2638f3ea2accb4: 38dc2e0d8c28a817f2c727402e2638f3ea2accb4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10320/index.html [-- Attachment #2: Type: text/html, Size: 3921 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_vrr: Add new subtest to switch RR without modeset (rev5) 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem ` (8 preceding siblings ...) 2023-12-01 18:56 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork @ 2023-12-03 2:14 ` Patchwork 2023-12-04 2:31 ` [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Srinivas, Vidya 10 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-12-03 2:14 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 63643 bytes --] == Series Details == Series: tests/kms_vrr: Add new subtest to switch RR without modeset (rev5) URL : https://patchwork.freedesktop.org/series/127047/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13960_full -> IGTPW_10320_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10320_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10320_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_10320/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10320_full: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@unbind-rebind: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-6/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-7/igt@core_hotunplug@unbind-rebind.html * igt@debugfs_test@read_all_entries_display_off: - shard-snb: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-snb5/igt@debugfs_test@read_all_entries_display_off.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-snb1/igt@debugfs_test@read_all_entries_display_off.html * {igt@kms_vrr@seamless-rr-switch} (NEW): - shard-dg1: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-19/igt@kms_vrr@seamless-rr-switch.html - shard-tglu: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-3/igt@kms_vrr@seamless-rr-switch.html - shard-mtlp: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch.html New tests --------- New tests have been introduced between CI_DRM_13960_full and IGTPW_10320_full: ### New IGT tests (1) ### * igt@kms_vrr@seamless-rr-switch: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10320_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#6230]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +11 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-compressed: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][15] ([fdo#109314]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-17/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-15/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@noheartbeat: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8555]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-3/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@many-4k-incremental: - shard-dg1: NOTRUN -> [FAIL][19] ([i915#9606]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][20] ([i915#2846]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#3539]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-10/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#3281]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#3281]) +8 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3281]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-19/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][28] -> [ABORT][29] ([i915#7975] / [i915#8213]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-tglu-4/igt@gem_exec_suspend@basic-s4-devices@smem.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4860]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4860]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@basic: - shard-glk: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4613]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-glk9/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@verify: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4613]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-5/igt@gem_lmem_swapping@verify.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4077]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-12/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4077]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4077]) +13 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@bad-object: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4083]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-16/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@close: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4083]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-3/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4083]) +5 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3282]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3282]) +7 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@gem_pread@snoop.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3282]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@gem_pread@snoop.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4270]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4270]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#8428]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3297]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-12/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3297] / [i915#4880]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3297] / [i915#4880]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3297]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3297]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@gem_userptr_blits@unsync-unmap.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][51] ([fdo#109289]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@bitmasks: - shard-mtlp: NOTRUN -> [SKIP][52] ([fdo#109289]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][53] -> [INCOMPLETE][54] ([i915#5566]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-glk1/igt@gen9_exec_parse@allowed-single.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-far: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#2527]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-16/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#2856]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#2856]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-8/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#6227]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-8/igt@i915_module_load@load.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#6590]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg1: NOTRUN -> [SKIP][60] ([fdo#109293] / [fdo#109506]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-idle: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#6621]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-5/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#6621]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#8925]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_power@sanity: - shard-mtlp: [PASS][64] -> [SKIP][65] ([i915#7984]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-mtlp-4/igt@i915_power@sanity.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-7/igt@i915_power@sanity.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][66] ([fdo#109303]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-10/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][67] ([fdo#109302]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-5/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@mock@memory_region: - shard-mtlp: NOTRUN -> [DMESG-WARN][68] ([i915#9311]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4212]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4212]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4212]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-15/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][72] ([i915#8247]) +3 other tests fail [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#1769] / [i915#3555]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#1769] / [i915#3555]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][75] ([fdo#111614]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#5286]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4538] / [i915#5286]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][78] ([fdo#111615] / [i915#5286]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][79] -> [FAIL][80] ([i915#5138]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3638]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][82] ([fdo#111614]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190]) +11 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#111615]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4538] / [i915#5190]) +7 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][86] ([fdo#111615]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-12/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4538]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2705]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-5/igt@kms_big_joiner@invalid-modeset.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][89] ([fdo#109271]) +41 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-glk5/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3742]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-14/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4087] / [i915#7213]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/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][92] ([i915#4087]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][93] ([fdo#111827]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-7/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#7828]) +8 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#7828]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#7828]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@atomic: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#6944]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-7/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3299]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#7118]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#7116]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-16/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][101] ([i915#1339]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3555]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#3359]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3359]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3555]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#3359]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3555] / [i915#8814]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][108] ([fdo#111767] / [i915#3546]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][109] ([fdo#109274]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3546]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4213]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][112] ([fdo#109274] / [i915#5354]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg1: NOTRUN -> [SKIP][113] ([fdo#111767] / [fdo#111825]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-19/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][114] -> [FAIL][115] ([i915#2346]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#4103]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#3555] / [i915#8827]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#3840] / [i915#9688]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#3555] / [i915#3840] / [i915#4098]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3637]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-1/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][121] ([fdo#109274]) +8 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][122] ([fdo#109274] / [i915#3637]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-2/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#2587] / [i915#2672]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#2672]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#2672]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#2672] / [i915#3555]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][127] ([fdo#109285]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#8708]) +10 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#8708]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#1825]) +12 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][131] ([fdo#109280]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5354]) +20 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#8708]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][134] ([fdo#111825]) +19 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3458]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3458]) +22 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-snb: NOTRUN -> [SKIP][137] ([fdo#109271]) +64 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#110189]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#433]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html - shard-tglu: [PASS][140] -> [SKIP][141] ([i915#433]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#8228]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-swap: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#8228]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-7/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8228]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#6301]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-7/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg1: NOTRUN -> [SKIP][146] ([fdo#109289]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-19/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][147] ([i915#4573]) +1 other test fail [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#8806]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#5235]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#5235]) +11 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#6524] / [i915#6805]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#6524]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-15/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#9683]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-10/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#4348]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-8/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#9673]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-17/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#9673] / [i915#9732]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#4235]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#4235]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#4235] / [i915#5190]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#4098]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][161] -> [FAIL][162] ([IGT#2]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-11/igt@kms_sysfs_edid_timing.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-2/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#8623]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-19/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][164] ([i915#8623]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1: - shard-snb: [PASS][165] -> [FAIL][166] ([i915#9196]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [PASS][167] -> [FAIL][168] ([i915#9196]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-tglu: [PASS][169] -> [FAIL][170] ([i915#9196]) +1 other test fail [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8808]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-2/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#2437]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][173] ([fdo#109271] / [i915#2437]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-glk6/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#7387]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#8850]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-5/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][176] ([i915#6806]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@perf_pmu@frequency@gt0.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3291] / [i915#3708]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3708] / [i915#4077]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-7/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3708]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-3/igt@prime_vgem@fence-write-hang.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#2575]) +5 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-12/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#2575]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-3/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-in-sync: - shard-tglu: NOTRUN -> [SKIP][182] ([fdo#109315] / [i915#2575]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-2/igt@v3d/v3d_submit_cl@bad-in-sync.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#2575]) +12 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-10/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#7711]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-5/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#7711]) +5 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-16/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html * igt@vc4/vc4_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#7711]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-7/igt@vc4/vc4_wait_bo@used-bo.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][187] ([i915#7297]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][189] ([i915#5784]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg1-12/igt@gem_eio@reset-stress.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][191] ([i915#2842]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][193] ([i915#2842]) -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [FAIL][195] ([i915#3743]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][197] ([i915#2346]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: [FAIL][199] ([i915#6880]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][201] ([i915#8292]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * {igt@kms_pm_rpm@modeset-non-lpsp-stress}: - shard-dg2: [SKIP][203] ([i915#9519]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [FAIL][205] ([i915#9196]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][207] ([i915#9196]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][209] ([i915#4349]) -> [PASS][210] +6 other tests pass [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-2/igt@perf_pmu@busy-idle-check-all@vcs0.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@perf_pmu@busy-idle-check-all@vcs0.html - shard-dg1: [FAIL][211] ([i915#4349]) -> [PASS][212] +3 other tests pass [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vcs0.html - shard-mtlp: [FAIL][213] ([i915#4349]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-mtlp-1/igt@perf_pmu@busy-idle-check-all@vcs0.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@vcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][215] -> [INCOMPLETE][216] ([i915#9408]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: [DMESG-FAIL][217] ([i915#8561]) -> [FAIL][218] ([i915#8247]) +1 other test fail [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-mtlp-2/igt@kms_async_flips@crc@pipe-d-edp-1.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][219] ([i915#7118]) -> [SKIP][220] ([i915#7118] / [i915#7162]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-2/igt@kms_content_protection@type1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_psr@psr2_basic: - shard-dg2: [SKIP][221] ([i915#9673] / [i915#9732]) -> [SKIP][222] ([i915#9673] / [i915#9736]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-2/igt@kms_psr@psr2_basic.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-11/igt@kms_psr@psr2_basic.html * igt@kms_psr@psr2_cursor_plane_move: - shard-dg2: [SKIP][223] ([i915#9673] / [i915#9736]) -> [SKIP][224] ([i915#9673] / [i915#9732]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_move.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-6/igt@kms_psr@psr2_cursor_plane_move.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][225] ([i915#5493]) -> [CRASH][226] ([i915#9351]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13960/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [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#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 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [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#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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [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#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [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#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [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#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [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#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [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#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7614 -> IGTPW_10320 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13960: 9adc1aba5de6959c54a990b92594c2364366e8db @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10320: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10320/index.html [-- Attachment #2: Type: text/html, Size: 75043 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem ` (9 preceding siblings ...) 2023-12-03 2:14 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork @ 2023-12-04 2:31 ` Srinivas, Vidya 10 siblings, 0 replies; 13+ messages in thread From: Srinivas, Vidya @ 2023-12-04 2:31 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org Tested-by: Vidya Srinivas <vidya.srinivas@intel.com> > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > Bhanuprakash Modem > Sent: Friday, December 1, 2023 7:47 PM > To: igt-dev@lists.freedesktop.org > Subject: [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR > without modeset > > 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 > V4: Fix Negative subtest > > 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 | 265 +---------------------- > tests/kms_vrr.c | 214 ++++++++++++++---- > 3 files changed, 184 insertions(+), 473 deletions(-) > > -- > 2.40.0 ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2023-12-04 2:35 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-01 14:16 [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem 2023-12-01 14:16 ` [igt-dev] [i-g-t V4 1/7] tests/kms_vrr: Use lib helper to print connector modes Bhanuprakash Modem 2023-12-01 14:16 ` [igt-dev] [i-g-t V4 2/7] tests/kms_vrr: Clear VRR before exit Bhanuprakash Modem 2023-12-01 14:16 ` [igt-dev] [i-g-t V4 3/7] tests/kms_vrr: Move all config constaints to new function Bhanuprakash Modem 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 4/7] tests/kms_vrr: Fix bigjoiner constraint Bhanuprakash Modem 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 5/7] tests/kms_vrr: Fix the logic to calculate expected rate Bhanuprakash Modem 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 6/7] tests/kms_vrr: Add new subtest to switch RR without modeset Bhanuprakash Modem 2023-12-04 2:35 ` Srinivas, Vidya 2023-12-01 14:17 ` [igt-dev] [i-g-t V4 7/7] HAX: DO_NOT_MERGE: test only seamless-rr-switch Bhanuprakash Modem 2023-12-01 17:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_vrr: Add new subtest to switch RR without modeset (rev5) Patchwork 2023-12-01 18:56 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork 2023-12-03 2:14 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork 2023-12-04 2:31 ` [igt-dev] [i-g-t V4 0/7] tests/kms_vrr: Add new subtest to switch RR without modeset Srinivas, Vidya
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox