* [igt-dev] [PATCH i-g-t v4 1/2] tests/kms_async_flips: Convert tests to dynamic
@ 2022-05-16 8:24 Karthik B S
2022-05-16 8:24 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/kms_async_flips: Test Cleanup Karthik B S
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Karthik B S @ 2022-05-16 8:24 UTC (permalink / raw)
To: igt-dev
v2: -Get the mode after igt_display_reset() (Bhanu)
v3: -Move patch to start of series to avoid code duplication (Bhanu)
-Use for_each_pipe() instead of for_each_pipe_static() (Bhanu)
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
---
tests/kms_async_flips.c | 122 +++++++++++++++++++++++++++++++++++-----
1 file changed, 108 insertions(+), 14 deletions(-)
diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
index 5e11cd43..e307f0d9 100644
--- a/tests/kms_async_flips.c
+++ b/tests/kms_async_flips.c
@@ -51,6 +51,7 @@ typedef struct {
struct igt_fb bufs[4];
igt_display_t display;
drmModeConnectorPtr connector;
+ igt_output_t *output;
unsigned long flip_timestamp_us;
double flip_interval;
igt_pipe_crc_t *pipe_crc;
@@ -58,6 +59,8 @@ typedef struct {
int flip_count;
int frame_count;
bool flip_pending;
+ bool extended;
+ enum pipe pipe;
} data_t;
static drmModeConnectorPtr find_connector_for_modeset(data_t *data)
@@ -531,10 +534,29 @@ static void test_crc(data_t *data)
igt_assert_lt(data->frame_count * 2, data->flip_count);
}
-igt_main
+static int opt_handler(int opt, int opt_index, void *_data)
+{
+ data_t *data = _data;
+
+ switch (opt) {
+ case 'e':
+ data->extended = true;
+ break;
+ }
+
+ return IGT_OPT_HANDLER_SUCCESS;
+}
+
+static const char help_str[] =
+" --e \t\tRun the extended tests\n";
+
+static data_t data;
+
+igt_main_args("e", NULL, help_str, opt_handler, &data)
{
- static data_t data;
int i;
+ igt_output_t *output;
+ enum pipe pipe;
igt_fixture {
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -552,28 +574,100 @@ igt_main
test_init(&data);
igt_describe("Wait for page flip events in between successive asynchronous flips");
- igt_subtest("async-flip-with-page-flip-events")
- test_async_flip(&data, false);
+ igt_subtest_with_dynamic("async-flip-with-page-flip-events") {
+ for_each_pipe(&data.display, pipe) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ data.output = output;
+ data.pipe = pipe;
+ test_async_flip(&data, false);
+ }
+
+ if (!data.extended)
+ break;
+ }
+ }
+ }
igt_describe("Alternate between sync and async flips");
- igt_subtest("alternate-sync-async-flip")
- test_async_flip(&data, true);
+ igt_subtest_with_dynamic("alternate-sync-async-flip") {
+ for_each_pipe(&data.display, pipe) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ data.output = output;
+ data.pipe = pipe;
+ test_async_flip(&data, true);
+ }
+
+ if (!data.extended)
+ break;
+ }
+ }
+ }
igt_describe("Verify that the async flip timestamp does not coincide with either previous or next vblank");
- igt_subtest("test-time-stamp")
- test_timestamp(&data);
+ igt_subtest_with_dynamic("test-time-stamp") {
+ for_each_pipe(&data.display, pipe) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ data.output = output;
+ data.pipe = pipe;
+ test_timestamp(&data);
+ }
+
+ if (!data.extended)
+ break;
+ }
+ }
+ }
igt_describe("Verify that the DRM_IOCTL_MODE_CURSOR passes after async flip");
- igt_subtest("test-cursor")
- test_cursor(&data);
+ igt_subtest_with_dynamic("test-cursor") {
+ for_each_pipe(&data.display, pipe) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ data.output = output;
+ data.pipe = pipe;
+ test_cursor(&data);
+ }
+
+ if (!data.extended)
+ break;
+ }
+ }
+ }
igt_describe("Negative case to verify if changes in fb are rejected from kernel as expected");
- igt_subtest("invalid-async-flip")
- test_invalid(&data);
+ igt_subtest_with_dynamic("invalid-async-flip") {
+ for_each_pipe(&data.display, pipe) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ data.output = output;
+ data.pipe = pipe;
+ test_invalid(&data);
+ }
+
+ if (!data.extended)
+ break;
+ }
+ }
+ }
igt_describe("Use CRC to verify async flip scans out the correct framebuffer");
- igt_subtest("crc")
- test_crc(&data);
+ igt_subtest_with_dynamic("crc") {
+ for_each_pipe(&data.display, pipe) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ data.output = output;
+ data.pipe = pipe;
+ test_crc(&data);
+ }
+
+ if (!data.extended)
+ break;
+ }
+ }
+ }
igt_fixture {
for (i = 0; i < ARRAY_SIZE(data.bufs); i++)
--
2.22.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t v4 2/2] tests/kms_async_flips: Test Cleanup 2022-05-16 8:24 [igt-dev] [PATCH i-g-t v4 1/2] tests/kms_async_flips: Convert tests to dynamic Karthik B S @ 2022-05-16 8:24 ` Karthik B S 2022-05-17 12:33 ` Modem, Bhanuprakash 2022-05-16 10:00 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v4,1/2] tests/kms_async_flips: Convert tests to dynamic Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 8+ messages in thread From: Karthik B S @ 2022-05-16 8:24 UTC (permalink / raw) To: igt-dev -Convert tests to dynamic -Replace drm function call with existing library functions -igt_display_reset() before all subtests v2: -Move conversion to dynamic subtest to a separate patch (Bhanu) -Use igt_output_get_mode to get default mode (Bhanu) -Add 'is_atomic' check before igt_display_commit2 (Bhanu) v3: -Move test_init after the checks to skip subtest (Bhanu) -Update the logic to call make_fb() in test_init() v4: -Move patch after patch to convert tests to dynamic to avoid code duplicaton. (Bhanu) Signed-off-by: Karthik B S <karthik.b.s@intel.com> --- tests/kms_async_flips.c | 116 ++++++++++++++++++++-------------------- 1 file changed, 59 insertions(+), 57 deletions(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index e307f0d9..02d021e1 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -50,7 +50,6 @@ typedef struct { uint32_t refresh_rate; struct igt_fb bufs[4]; igt_display_t display; - drmModeConnectorPtr connector; igt_output_t *output; unsigned long flip_timestamp_us; double flip_interval; @@ -63,22 +62,6 @@ typedef struct { enum pipe pipe; } data_t; -static drmModeConnectorPtr find_connector_for_modeset(data_t *data) -{ - igt_output_t *output; - drmModeConnectorPtr ret = NULL; - - for_each_connected_output(&data->display, output) { - if (output->config.connector->count_modes > 0) { - ret = output->config.connector; - break; - } - } - - igt_assert_f(ret, "Connector NOT found\n"); - return ret; -} - static void flip_handler(int fd_, unsigned int sequence, unsigned int tv_sec, unsigned int tv_usec, void *_data) { @@ -132,14 +115,10 @@ static void wait_flip_event(data_t *data) } static void make_fb(data_t *data, struct igt_fb *fb, - drmModeConnectorPtr connector, int index) + uint32_t width, uint32_t height, int index) { - uint32_t width, height; int rec_width; - width = connector->modes[0].hdisplay; - height = connector->modes[0].vdisplay; - rec_width = width / (ARRAY_SIZE(data->bufs) * 2); igt_create_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, @@ -157,6 +136,45 @@ static void require_monotonic_timestamp(int fd) "Monotonic timestamps not supported\n"); } +static void test_init(data_t *data) +{ + int i; + uint32_t width, height; + igt_plane_t *plane; + static uint32_t prev_output_id; + drmModeModeInfo *mode; + + igt_display_reset(&data->display); + igt_display_commit(&data->display); + + mode = igt_output_get_mode(data->output); + width = mode->hdisplay; + height = mode->vdisplay; + + data->crtc_id = data->display.pipes[data->pipe].crtc_id; + data->refresh_rate = mode->vrefresh; + + igt_output_set_pipe(data->output, data->pipe); + plane = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); + + if (prev_output_id != data->output->id) { + prev_output_id = data->output->id; + + if (data->bufs[0].fb_id) { + for (i = 0; i < ARRAY_SIZE(data->bufs); i++) + igt_remove_fb(data->drm_fd, &data->bufs[i]); + } + + for (i = 0; i < ARRAY_SIZE(data->bufs); i++) + make_fb(data, &data->bufs[i], width, height, i); + } + + igt_plane_set_fb(plane, &data->bufs[0]); + igt_plane_set_size(plane, width, height); + + igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); +} + static void test_async_flip(data_t *data, bool alternate_sync_async) { int ret, frame; @@ -164,6 +182,7 @@ static void test_async_flip(data_t *data, bool alternate_sync_async) struct timeval start, end, diff; require_monotonic_timestamp(data->drm_fd); + test_init(data); gettimeofday(&start, NULL); frame = 1; @@ -257,6 +276,7 @@ static void test_timestamp(data_t *data) int ret; require_monotonic_timestamp(data->drm_fd); + test_init(data); /* * In older platforms(<= gen10), async address update bit is double buffered. @@ -315,6 +335,8 @@ static void test_cursor(data_t *data) do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_WIDTH, &width)); do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_WIDTH, &height)); + test_init(data); + igt_create_color_fb(data->drm_fd, width, height, DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); @@ -349,13 +371,17 @@ static void test_invalid(data_t *data) int ret; uint32_t width, height; struct igt_fb fb; + drmModeModeInfo *mode; - width = data->connector->modes[0].hdisplay; - height = data->connector->modes[0].vdisplay; + mode = igt_output_get_mode(data->output); + width = mode->hdisplay; + height = mode->vdisplay; igt_require(igt_display_has_format_mod(&data->display, DRM_FORMAT_XRGB8888, I915_FORMAT_MOD_Y_TILED)); + test_init(data); + igt_create_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, I915_FORMAT_MOD_Y_TILED, &fb); @@ -370,33 +396,6 @@ static void test_invalid(data_t *data) igt_remove_fb(data->drm_fd, &fb); } -static void test_init(data_t *data) -{ - drmModeResPtr res; - int i, ret; - - res = drmModeGetResources(data->drm_fd); - igt_assert(res); - - kmstest_unset_all_crtcs(data->drm_fd, res); - - data->connector = find_connector_for_modeset(data); - data->crtc_id = kmstest_find_crtc_for_connector(data->drm_fd, - res, data->connector, 0); - - data->refresh_rate = data->connector->modes[0].vrefresh; - - for (i = 0; i < ARRAY_SIZE(data->bufs); i++) - make_fb(data, &data->bufs[i], data->connector, i); - - ret = drmModeSetCrtc(data->drm_fd, data->crtc_id, data->bufs[0].fb_id, 0, 0, - &data->connector->connector_id, 1, &data->connector->modes[0]); - - igt_assert(ret == 0); - - drmModeFreeResources(res); -} - static void queue_vblank(data_t *data) { int pipe = kmstest_get_pipe_from_crtc_id(data->drm_fd, data->crtc_id); @@ -493,11 +492,14 @@ static void test_crc(data_t *data) data->frame_count = 0; data->flip_pending = false; + test_init(data); + igt_draw_fill_fb(data->drm_fd, &data->bufs[frame], 0xff0000ff); igt_draw_fill_fb(data->drm_fd, &data->bufs[!frame], 0xff0000ff); ret = drmModeSetCrtc(data->drm_fd, data->crtc_id, data->bufs[frame].fb_id, 0, 0, - &data->connector->connector_id, 1, &data->connector->modes[0]); + &data->output->config.connector->connector_id, 1, + &data->output->config.connector->modes[0]); igt_assert_eq(ret, 0); data->pipe_crc = igt_pipe_crc_new(data->drm_fd, @@ -548,7 +550,7 @@ static int opt_handler(int opt, int opt_index, void *_data) } static const char help_str[] = -" --e \t\tRun the extended tests\n"; + " --e \t\tRun the extended tests\n"; static data_t data; @@ -570,9 +572,6 @@ igt_main_args("e", NULL, help_str, opt_handler, &data) igt_describe("Verify the async flip functionality and the fps during async flips"); igt_subtest_group { - igt_fixture - test_init(&data); - igt_describe("Wait for page flip events in between successive asynchronous flips"); igt_subtest_with_dynamic("async-flip-with-page-flip-events") { for_each_pipe(&data.display, pipe) { @@ -675,6 +674,9 @@ igt_main_args("e", NULL, help_str, opt_handler, &data) } } - igt_fixture + igt_fixture { + igt_display_reset(&data.display); + igt_display_commit(&data.display); igt_display_fini(&data.display); + } } -- 2.22.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 2/2] tests/kms_async_flips: Test Cleanup 2022-05-16 8:24 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/kms_async_flips: Test Cleanup Karthik B S @ 2022-05-17 12:33 ` Modem, Bhanuprakash 2022-05-30 6:10 ` Karthik B S 0 siblings, 1 reply; 8+ messages in thread From: Modem, Bhanuprakash @ 2022-05-17 12:33 UTC (permalink / raw) To: Karthik B S, igt-dev Hi Karthik, Overall, the patch looks good to me, but I have dropped few minor comments to address. - Bhanu On Mon-16-05-2022 01:54 pm, Karthik B S wrote: > -Convert tests to dynamic Please drop this message, as we already moved dynamic subtests to another patch. > -Replace drm function call with existing library functions > -igt_display_reset() before all subtests > > v2: -Move conversion to dynamic subtest to a separate patch (Bhanu) > -Use igt_output_get_mode to get default mode (Bhanu) > -Add 'is_atomic' check before igt_display_commit2 (Bhanu) > > v3: -Move test_init after the checks to skip subtest (Bhanu) > -Update the logic to call make_fb() in test_init() > > v4: -Move patch after patch to convert tests to dynamic to avoid code > duplicaton. (Bhanu) > > Signed-off-by: Karthik B S <karthik.b.s@intel.com> > --- > tests/kms_async_flips.c | 116 ++++++++++++++++++++-------------------- > 1 file changed, 59 insertions(+), 57 deletions(-) > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c > index e307f0d9..02d021e1 100644 > --- a/tests/kms_async_flips.c > +++ b/tests/kms_async_flips.c > @@ -50,7 +50,6 @@ typedef struct { > uint32_t refresh_rate; > struct igt_fb bufs[4]; > igt_display_t display; > - drmModeConnectorPtr connector; > igt_output_t *output; > unsigned long flip_timestamp_us; > double flip_interval; > @@ -63,22 +62,6 @@ typedef struct { > enum pipe pipe; > } data_t; > > -static drmModeConnectorPtr find_connector_for_modeset(data_t *data) > -{ > - igt_output_t *output; > - drmModeConnectorPtr ret = NULL; > - > - for_each_connected_output(&data->display, output) { > - if (output->config.connector->count_modes > 0) { > - ret = output->config.connector; > - break; > - } > - } > - > - igt_assert_f(ret, "Connector NOT found\n"); > - return ret; > -} > - > static void flip_handler(int fd_, unsigned int sequence, unsigned int tv_sec, > unsigned int tv_usec, void *_data) > { > @@ -132,14 +115,10 @@ static void wait_flip_event(data_t *data) > } > > static void make_fb(data_t *data, struct igt_fb *fb, > - drmModeConnectorPtr connector, int index) > + uint32_t width, uint32_t height, int index) > { > - uint32_t width, height; > int rec_width; > > - width = connector->modes[0].hdisplay; > - height = connector->modes[0].vdisplay; > - > rec_width = width / (ARRAY_SIZE(data->bufs) * 2); > > igt_create_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, > @@ -157,6 +136,45 @@ static void require_monotonic_timestamp(int fd) > "Monotonic timestamps not supported\n"); > } > > +static void test_init(data_t *data) > +{ > + int i; > + uint32_t width, height; > + igt_plane_t *plane; > + static uint32_t prev_output_id; > + drmModeModeInfo *mode; > + > + igt_display_reset(&data->display); > + igt_display_commit(&data->display); > + > + mode = igt_output_get_mode(data->output); > + width = mode->hdisplay; > + height = mode->vdisplay; > + > + data->crtc_id = data->display.pipes[data->pipe].crtc_id; > + data->refresh_rate = mode->vrefresh; > + > + igt_output_set_pipe(data->output, data->pipe); > + plane = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); > + > + if (prev_output_id != data->output->id) { > + prev_output_id = data->output->id; > + > + if (data->bufs[0].fb_id) { > + for (i = 0; i < ARRAY_SIZE(data->bufs); i++) > + igt_remove_fb(data->drm_fd, &data->bufs[i]); > + } > + > + for (i = 0; i < ARRAY_SIZE(data->bufs); i++) > + make_fb(data, &data->bufs[i], width, height, i); > + } > + > + igt_plane_set_fb(plane, &data->bufs[0]); > + igt_plane_set_size(plane, width, height); > + > + igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); > +} I think, we need a cleanup function to clear the states before exiting the subtest. Note: As we are sanitizing the state before starting the subtest, no need of igt_display_reset in cleanup, but we just need to clear whatever the resources we used in subtest. > + > static void test_async_flip(data_t *data, bool alternate_sync_async) > { > int ret, frame; > @@ -164,6 +182,7 @@ static void test_async_flip(data_t *data, bool alternate_sync_async) > struct timeval start, end, diff; > > require_monotonic_timestamp(data->drm_fd); Instead of skipping dynamic subtest, we need to move this check to igt_fixture before calling the subtest. Also, need igt_require_pipe_crc() for crc test. > + test_init(data); > > gettimeofday(&start, NULL); > frame = 1; > @@ -257,6 +276,7 @@ static void test_timestamp(data_t *data) > int ret; > > require_monotonic_timestamp(data->drm_fd); > + test_init(data); > > /* > * In older platforms(<= gen10), async address update bit is double buffered. > @@ -315,6 +335,8 @@ static void test_cursor(data_t *data) > do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_WIDTH, &width)); > do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_WIDTH, &height)); > > + test_init(data); > + > igt_create_color_fb(data->drm_fd, width, height, DRM_FORMAT_ARGB8888, > DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); > > @@ -349,13 +371,17 @@ static void test_invalid(data_t *data) > int ret; > uint32_t width, height; > struct igt_fb fb; > + drmModeModeInfo *mode; > > - width = data->connector->modes[0].hdisplay; > - height = data->connector->modes[0].vdisplay; > + mode = igt_output_get_mode(data->output); > + width = mode->hdisplay; > + height = mode->vdisplay; > > igt_require(igt_display_has_format_mod(&data->display, DRM_FORMAT_XRGB8888, > I915_FORMAT_MOD_Y_TILED)); > > + test_init(data); > + > igt_create_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, > I915_FORMAT_MOD_Y_TILED, &fb); > > @@ -370,33 +396,6 @@ static void test_invalid(data_t *data) > igt_remove_fb(data->drm_fd, &fb); > } > > -static void test_init(data_t *data) > -{ > - drmModeResPtr res; > - int i, ret; > - > - res = drmModeGetResources(data->drm_fd); > - igt_assert(res); > - > - kmstest_unset_all_crtcs(data->drm_fd, res); > - > - data->connector = find_connector_for_modeset(data); > - data->crtc_id = kmstest_find_crtc_for_connector(data->drm_fd, > - res, data->connector, 0); > - > - data->refresh_rate = data->connector->modes[0].vrefresh; > - > - for (i = 0; i < ARRAY_SIZE(data->bufs); i++) > - make_fb(data, &data->bufs[i], data->connector, i); > - > - ret = drmModeSetCrtc(data->drm_fd, data->crtc_id, data->bufs[0].fb_id, 0, 0, > - &data->connector->connector_id, 1, &data->connector->modes[0]); > - > - igt_assert(ret == 0); > - > - drmModeFreeResources(res); > -} > - > static void queue_vblank(data_t *data) > { > int pipe = kmstest_get_pipe_from_crtc_id(data->drm_fd, data->crtc_id); > @@ -493,11 +492,14 @@ static void test_crc(data_t *data) > data->frame_count = 0; > data->flip_pending = false; > > + test_init(data); > + > igt_draw_fill_fb(data->drm_fd, &data->bufs[frame], 0xff0000ff); > igt_draw_fill_fb(data->drm_fd, &data->bufs[!frame], 0xff0000ff); > > ret = drmModeSetCrtc(data->drm_fd, data->crtc_id, data->bufs[frame].fb_id, 0, 0, > - &data->connector->connector_id, 1, &data->connector->modes[0]); > + &data->output->config.connector->connector_id, 1, > + &data->output->config.connector->modes[0]); > igt_assert_eq(ret, 0); > > data->pipe_crc = igt_pipe_crc_new(data->drm_fd, > @@ -548,7 +550,7 @@ static int opt_handler(int opt, int opt_index, void *_data) > } > > static const char help_str[] = > -" --e \t\tRun the extended tests\n"; > + " --e \t\tRun the extended tests\n"; > > static data_t data; > > @@ -570,9 +572,6 @@ igt_main_args("e", NULL, help_str, opt_handler, &data) > > igt_describe("Verify the async flip functionality and the fps during async flips"); > igt_subtest_group { > - igt_fixture > - test_init(&data); > - > igt_describe("Wait for page flip events in between successive asynchronous flips"); > igt_subtest_with_dynamic("async-flip-with-page-flip-events") { > for_each_pipe(&data.display, pipe) { > @@ -675,6 +674,9 @@ igt_main_args("e", NULL, help_str, opt_handler, &data) > } > } > > - igt_fixture > + igt_fixture { > + igt_display_reset(&data.display); > + igt_display_commit(&data.display); As we are sanitizing the state before starting the subtest, no need of igt_display_reset in exit, but we just need to make sure to clear whatever the resources we used in subtest. > igt_display_fini(&data.display); > + } > } ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 2/2] tests/kms_async_flips: Test Cleanup 2022-05-17 12:33 ` Modem, Bhanuprakash @ 2022-05-30 6:10 ` Karthik B S 0 siblings, 0 replies; 8+ messages in thread From: Karthik B S @ 2022-05-30 6:10 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev On 5/17/2022 6:03 PM, Modem, Bhanuprakash wrote: > Hi Karthik, > > Overall, the patch looks good to me, but I have dropped few minor > comments to address. > > - Bhanu Hi Bhanu, Thank you for the review. > > On Mon-16-05-2022 01:54 pm, Karthik B S wrote: >> -Convert tests to dynamic > > Please drop this message, as we already moved dynamic subtests to > another patch. Sure, will update this. > >> -Replace drm function call with existing library functions >> -igt_display_reset() before all subtests >> >> v2: -Move conversion to dynamic subtest to a separate patch (Bhanu) >> -Use igt_output_get_mode to get default mode (Bhanu) >> -Add 'is_atomic' check before igt_display_commit2 (Bhanu) >> >> v3: -Move test_init after the checks to skip subtest (Bhanu) >> -Update the logic to call make_fb() in test_init() >> >> v4: -Move patch after patch to convert tests to dynamic to avoid code >> duplicaton. (Bhanu) >> >> Signed-off-by: Karthik B S <karthik.b.s@intel.com> >> --- >> tests/kms_async_flips.c | 116 ++++++++++++++++++++-------------------- >> 1 file changed, 59 insertions(+), 57 deletions(-) >> >> diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c >> index e307f0d9..02d021e1 100644 >> --- a/tests/kms_async_flips.c >> +++ b/tests/kms_async_flips.c >> @@ -50,7 +50,6 @@ typedef struct { >> uint32_t refresh_rate; >> struct igt_fb bufs[4]; >> igt_display_t display; >> - drmModeConnectorPtr connector; >> igt_output_t *output; >> unsigned long flip_timestamp_us; >> double flip_interval; >> @@ -63,22 +62,6 @@ typedef struct { >> enum pipe pipe; >> } data_t; >> -static drmModeConnectorPtr find_connector_for_modeset(data_t *data) >> -{ >> - igt_output_t *output; >> - drmModeConnectorPtr ret = NULL; >> - >> - for_each_connected_output(&data->display, output) { >> - if (output->config.connector->count_modes > 0) { >> - ret = output->config.connector; >> - break; >> - } >> - } >> - >> - igt_assert_f(ret, "Connector NOT found\n"); >> - return ret; >> -} >> - >> static void flip_handler(int fd_, unsigned int sequence, unsigned >> int tv_sec, >> unsigned int tv_usec, void *_data) >> { >> @@ -132,14 +115,10 @@ static void wait_flip_event(data_t *data) >> } >> static void make_fb(data_t *data, struct igt_fb *fb, >> - drmModeConnectorPtr connector, int index) >> + uint32_t width, uint32_t height, int index) >> { >> - uint32_t width, height; >> int rec_width; >> - width = connector->modes[0].hdisplay; >> - height = connector->modes[0].vdisplay; >> - >> rec_width = width / (ARRAY_SIZE(data->bufs) * 2); >> igt_create_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, >> @@ -157,6 +136,45 @@ static void require_monotonic_timestamp(int fd) >> "Monotonic timestamps not supported\n"); >> } >> +static void test_init(data_t *data) >> +{ >> + int i; >> + uint32_t width, height; >> + igt_plane_t *plane; >> + static uint32_t prev_output_id; >> + drmModeModeInfo *mode; >> + >> + igt_display_reset(&data->display); >> + igt_display_commit(&data->display); >> + >> + mode = igt_output_get_mode(data->output); >> + width = mode->hdisplay; >> + height = mode->vdisplay; >> + >> + data->crtc_id = data->display.pipes[data->pipe].crtc_id; >> + data->refresh_rate = mode->vrefresh; >> + >> + igt_output_set_pipe(data->output, data->pipe); >> + plane = igt_output_get_plane_type(data->output, >> DRM_PLANE_TYPE_PRIMARY); >> + >> + if (prev_output_id != data->output->id) { >> + prev_output_id = data->output->id; >> + >> + if (data->bufs[0].fb_id) { >> + for (i = 0; i < ARRAY_SIZE(data->bufs); i++) >> + igt_remove_fb(data->drm_fd, &data->bufs[i]); >> + } >> + >> + for (i = 0; i < ARRAY_SIZE(data->bufs); i++) >> + make_fb(data, &data->bufs[i], width, height, i); >> + } >> + >> + igt_plane_set_fb(plane, &data->bufs[0]); >> + igt_plane_set_size(plane, width, height); >> + >> + igt_display_commit2(&data->display, data->display.is_atomic ? >> COMMIT_ATOMIC : COMMIT_LEGACY); >> +} > > I think, we need a cleanup function to clear the states before exiting > the subtest. > > Note: As we are sanitizing the state before starting the subtest, no > need of igt_display_reset in cleanup, but we just need to clear > whatever the resources we used in subtest. As we discussed offline, will keep this as is currently as the cleanup is being handled in igt_fixture when the test exits and when the full binary is run igt_display_reset is added at the beginning of each subtest. The fb cleanup is also handled in test_init itself. >> + >> static void test_async_flip(data_t *data, bool alternate_sync_async) >> { >> int ret, frame; >> @@ -164,6 +182,7 @@ static void test_async_flip(data_t *data, bool >> alternate_sync_async) >> struct timeval start, end, diff; >> require_monotonic_timestamp(data->drm_fd); > > Instead of skipping dynamic subtest, we need to move this check to > igt_fixture before calling the subtest. Also, need > igt_require_pipe_crc() for crc test. Sure will restructure the test by add these checks before the dynamic subtests are called. > >> + test_init(data); >> gettimeofday(&start, NULL); >> frame = 1; >> @@ -257,6 +276,7 @@ static void test_timestamp(data_t *data) >> int ret; >> require_monotonic_timestamp(data->drm_fd); >> + test_init(data); >> /* >> * In older platforms(<= gen10), async address update bit is >> double buffered. >> @@ -315,6 +335,8 @@ static void test_cursor(data_t *data) >> do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_WIDTH, &width)); >> do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_WIDTH, &height)); >> + test_init(data); >> + >> igt_create_color_fb(data->drm_fd, width, height, >> DRM_FORMAT_ARGB8888, >> DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); >> @@ -349,13 +371,17 @@ static void test_invalid(data_t *data) >> int ret; >> uint32_t width, height; >> struct igt_fb fb; >> + drmModeModeInfo *mode; >> - width = data->connector->modes[0].hdisplay; >> - height = data->connector->modes[0].vdisplay; >> + mode = igt_output_get_mode(data->output); >> + width = mode->hdisplay; >> + height = mode->vdisplay; >> igt_require(igt_display_has_format_mod(&data->display, >> DRM_FORMAT_XRGB8888, >> I915_FORMAT_MOD_Y_TILED)); >> + test_init(data); >> + >> igt_create_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, >> I915_FORMAT_MOD_Y_TILED, &fb); >> @@ -370,33 +396,6 @@ static void test_invalid(data_t *data) >> igt_remove_fb(data->drm_fd, &fb); >> } >> -static void test_init(data_t *data) >> -{ >> - drmModeResPtr res; >> - int i, ret; >> - >> - res = drmModeGetResources(data->drm_fd); >> - igt_assert(res); >> - >> - kmstest_unset_all_crtcs(data->drm_fd, res); >> - >> - data->connector = find_connector_for_modeset(data); >> - data->crtc_id = kmstest_find_crtc_for_connector(data->drm_fd, >> - res, data->connector, 0); >> - >> - data->refresh_rate = data->connector->modes[0].vrefresh; >> - >> - for (i = 0; i < ARRAY_SIZE(data->bufs); i++) >> - make_fb(data, &data->bufs[i], data->connector, i); >> - >> - ret = drmModeSetCrtc(data->drm_fd, data->crtc_id, >> data->bufs[0].fb_id, 0, 0, >> - &data->connector->connector_id, 1, >> &data->connector->modes[0]); >> - >> - igt_assert(ret == 0); >> - >> - drmModeFreeResources(res); >> -} >> - >> static void queue_vblank(data_t *data) >> { >> int pipe = kmstest_get_pipe_from_crtc_id(data->drm_fd, >> data->crtc_id); >> @@ -493,11 +492,14 @@ static void test_crc(data_t *data) >> data->frame_count = 0; >> data->flip_pending = false; >> + test_init(data); >> + >> igt_draw_fill_fb(data->drm_fd, &data->bufs[frame], 0xff0000ff); >> igt_draw_fill_fb(data->drm_fd, &data->bufs[!frame], 0xff0000ff); >> ret = drmModeSetCrtc(data->drm_fd, data->crtc_id, >> data->bufs[frame].fb_id, 0, 0, >> - &data->connector->connector_id, 1, >> &data->connector->modes[0]); >> + &data->output->config.connector->connector_id, 1, >> + &data->output->config.connector->modes[0]); >> igt_assert_eq(ret, 0); >> data->pipe_crc = igt_pipe_crc_new(data->drm_fd, >> @@ -548,7 +550,7 @@ static int opt_handler(int opt, int opt_index, >> void *_data) >> } >> static const char help_str[] = >> -" --e \t\tRun the extended tests\n"; >> + " --e \t\tRun the extended tests\n"; >> static data_t data; >> @@ -570,9 +572,6 @@ igt_main_args("e", NULL, help_str, opt_handler, >> &data) >> igt_describe("Verify the async flip functionality and the fps >> during async flips"); >> igt_subtest_group { >> - igt_fixture >> - test_init(&data); >> - >> igt_describe("Wait for page flip events in between >> successive asynchronous flips"); >> igt_subtest_with_dynamic("async-flip-with-page-flip-events") { >> for_each_pipe(&data.display, pipe) { >> @@ -675,6 +674,9 @@ igt_main_args("e", NULL, help_str, opt_handler, >> &data) >> } >> } >> - igt_fixture >> + igt_fixture { >> + igt_display_reset(&data.display); >> + igt_display_commit(&data.display); > > As we are sanitizing the state before starting the subtest, no need of > igt_display_reset in exit, but we just need to make sure to clear > whatever the resources we used in subtest. In line with the comment above, will keep this currently. Eventually we can push this inside igt_display_fini so that we have uniform handling across all the binaries. Thanks, Karthik.B.S > >> igt_display_fini(&data.display); >> + } >> } > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v4,1/2] tests/kms_async_flips: Convert tests to dynamic 2022-05-16 8:24 [igt-dev] [PATCH i-g-t v4 1/2] tests/kms_async_flips: Convert tests to dynamic Karthik B S 2022-05-16 8:24 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/kms_async_flips: Test Cleanup Karthik B S @ 2022-05-16 10:00 ` Patchwork 2022-05-16 11:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-05-17 12:14 ` [igt-dev] [PATCH i-g-t v4 1/2] " Modem, Bhanuprakash 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2022-05-16 10:00 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8754 bytes --] == Series Details == Series: series starting with [i-g-t,v4,1/2] tests/kms_async_flips: Convert tests to dynamic URL : https://patchwork.freedesktop.org/series/104018/ State : success == Summary == CI Bug Log - changes from CI_DRM_11656 -> IGTPW_7104 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/index.html Participating hosts (41 -> 42) ------------------------------ Additional (2): bat-adln-1 fi-rkl-11600 Missing (1): bat-jsl-2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7104: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@gt_lrc: - {bat-adln-1}: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/bat-adln-1/igt@i915_selftest@live@gt_lrc.html Known issues ------------ Here are the changes found in IGTPW_7104 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - fi-kbl-soraka: [PASS][2] -> [DMESG-WARN][3] ([i915#1982]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/fi-kbl-soraka/igt@core_auth@basic-auth.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-kbl-soraka/igt@core_auth@basic-auth.html * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-rkl-11600: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#3282]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][7] ([i915#3012]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@hangcheck: - bat-dg1-5: [PASS][8] -> [DMESG-FAIL][9] ([i915#4494] / [i915#4957]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/bat-dg1-5/igt@i915_selftest@live@hangcheck.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/bat-dg1-5/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - fi-pnv-d510: [PASS][10] -> [DMESG-FAIL][11] ([i915#4528]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/fi-pnv-d510/igt@i915_selftest@live@requests.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-pnv-d510/igt@i915_selftest@live@requests.html * igt@kms_chamelium@dp-crc-fast: - fi-rkl-11600: NOTRUN -> [SKIP][12] ([fdo#111827]) +8 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@kms_chamelium@dp-crc-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-rkl-11600: NOTRUN -> [SKIP][13] ([i915#4070] / [i915#4103]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_flip@basic-flip-vs-modeset@a-edp1: - bat-adlp-4: [PASS][14] -> [DMESG-WARN][15] ([i915#3576]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/bat-adlp-4/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/bat-adlp-4/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][16] ([fdo#109285] / [i915#4098]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-rkl-11600: NOTRUN -> [SKIP][17] ([i915#4070] / [i915#533]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_psr@primary_mmap_gtt: - fi-rkl-11600: NOTRUN -> [SKIP][18] ([i915#1072]) +3 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@kms_psr@primary_mmap_gtt.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#4098]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-userptr: - fi-rkl-11600: NOTRUN -> [SKIP][20] ([i915#3301] / [i915#3708]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@prime_vgem@basic-userptr.html * igt@prime_vgem@basic-write: - fi-rkl-11600: NOTRUN -> [SKIP][21] ([i915#3291] / [i915#3708]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-rkl-11600/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - bat-dg1-6: [DMESG-FAIL][22] ([i915#4494] / [i915#4957]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/bat-dg1-6/igt@i915_selftest@live@hangcheck.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/bat-dg1-6/igt@i915_selftest@live@hangcheck.html * igt@kms_busy@basic@modeset: - bat-adlp-4: [DMESG-WARN][24] ([i915#3576]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/bat-adlp-4/igt@kms_busy@basic@modeset.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/bat-adlp-4/igt@kms_busy@basic@modeset.html * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - fi-kbl-soraka: [INCOMPLETE][26] -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/fi-kbl-soraka/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/fi-kbl-soraka/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5869]: https://gitlab.freedesktop.org/drm/intel/issues/5869 [i915#5874]: https://gitlab.freedesktop.org/drm/intel/issues/5874 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6472 -> IGTPW_7104 CI-20190529: 20190529 CI_DRM_11656: 416780e079b848ddd4da752cb90b619b97eb773e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7104: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/index.html IGT_6472: c815c94f0ceb33ae852622538f0136cf44c5725d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/index.html [-- Attachment #2: Type: text/html, Size: 9921 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v4,1/2] tests/kms_async_flips: Convert tests to dynamic 2022-05-16 8:24 [igt-dev] [PATCH i-g-t v4 1/2] tests/kms_async_flips: Convert tests to dynamic Karthik B S 2022-05-16 8:24 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/kms_async_flips: Test Cleanup Karthik B S 2022-05-16 10:00 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v4,1/2] tests/kms_async_flips: Convert tests to dynamic Patchwork @ 2022-05-16 11:24 ` Patchwork 2022-05-17 12:14 ` [igt-dev] [PATCH i-g-t v4 1/2] " Modem, Bhanuprakash 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2022-05-16 11:24 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 67192 bytes --] == Series Details == Series: series starting with [i-g-t,v4,1/2] tests/kms_async_flips: Convert tests to dynamic URL : https://patchwork.freedesktop.org/series/104018/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11656_full -> IGTPW_7104_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_7104_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7104_full, please notify your bug team 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_7104/index.html Participating hosts (10 -> 9) ------------------------------ Additional (2): shard-rkl shard-tglu Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7104_full: ### IGT changes ### #### Possible regressions #### * igt@device_reset@unbind-reset-rebind: - shard-snb: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-snb5/igt@device_reset@unbind-reset-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-snb7/igt@device_reset@unbind-reset-rebind.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_atomic_transition@modeset-transition-fencing: - {shard-rkl}: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-rkl-5/igt@kms_atomic_transition@modeset-transition-fencing.html * igt@kms_frontbuffer_tracking@fbc-suspend: - {shard-tglu}: NOTRUN -> [DMESG-WARN][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-suspend.html New tests --------- New tests have been introduced between CI_DRM_11656_full and IGTPW_7104_full: ### New IGT tests (76) ### * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1: - Statuses : 2 pass(s) - Exec time: [2.29, 2.44] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - Statuses : 2 pass(s) - Exec time: [3.22, 3.23] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [2.65] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [2.15] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: - Statuses : 2 pass(s) - Exec time: [2.26, 2.32] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - Statuses : 2 pass(s) - Exec time: [3.20, 3.26] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [2.35] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [2.14] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-1: - Statuses : 2 pass(s) - Exec time: [2.29, 2.32] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1: - Statuses : 2 pass(s) - Exec time: [3.20, 3.26] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [2.33] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.20] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-1: - Statuses : 2 pass(s) - Exec time: [2.28, 2.40] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1: - Statuses : 2 pass(s) - Exec time: [3.22] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [2.15, 2.65] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [2.14] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-dp-1: - Statuses : 2 pass(s) - Exec time: [2.29] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-edp-1: - Statuses : 2 pass(s) - Exec time: [3.20, 3.24] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [2.11, 2.33] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [2.13] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-1: - Statuses : 2 pass(s) - Exec time: [2.27, 2.29] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-edp-1: - Statuses : 2 pass(s) - Exec time: [3.20, 3.21] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [2.11, 2.30] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.20] s * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [2.10] s * igt@kms_async_flips@crc@pipe-a-dp-1: - Statuses : 2 pass(s) - Exec time: [2.40, 2.53] s * igt@kms_async_flips@crc@pipe-a-edp-1: - Statuses : 2 pass(s) - Exec time: [3.28, 3.34] s * igt@kms_async_flips@crc@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [2.17, 2.67] s * igt@kms_async_flips@crc@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt@kms_async_flips@crc@pipe-b-dp-1: - Statuses : 2 pass(s) - Exec time: [2.34, 2.39] s * igt@kms_async_flips@crc@pipe-b-edp-1: - Statuses : 2 pass(s) - Exec time: [3.26, 3.36] s * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [2.15, 2.41] s * igt@kms_async_flips@crc@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt@kms_async_flips@crc@pipe-c-dp-1: - Statuses : 2 pass(s) - Exec time: [2.37, 2.40] s * igt@kms_async_flips@crc@pipe-c-edp-1: - Statuses : 2 pass(s) - Exec time: [3.28, 3.33] s * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [2.16, 2.38] s * igt@kms_async_flips@crc@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.25] s * igt@kms_async_flips@crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [2.16] s * igt@kms_async_flips@invalid-async-flip@pipe-a-dp-1: - Statuses : 2 pass(s) - Exec time: [0.28, 0.43] s * igt@kms_async_flips@invalid-async-flip@pipe-a-edp-1: - Statuses : 2 pass(s) - Exec time: [1.20, 1.24] s * igt@kms_async_flips@invalid-async-flip@pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt@kms_async_flips@invalid-async-flip@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_async_flips@invalid-async-flip@pipe-b-dp-1: - Statuses : 2 pass(s) - Exec time: [0.23, 0.32] s * igt@kms_async_flips@invalid-async-flip@pipe-b-edp-1: - Statuses : 2 pass(s) - Exec time: [1.22] s * igt@kms_async_flips@invalid-async-flip@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.36] s * igt@kms_async_flips@invalid-async-flip@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_async_flips@invalid-async-flip@pipe-c-dp-1: - Statuses : 2 pass(s) - Exec time: [0.24, 0.31] s * igt@kms_async_flips@invalid-async-flip@pipe-c-edp-1: - Statuses : 2 pass(s) - Exec time: [1.22, 1.23] s * igt@kms_async_flips@invalid-async-flip@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.39] s * igt@kms_async_flips@invalid-async-flip@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [1.21] s * igt@kms_async_flips@test-cursor@pipe-a-dp-1: - Statuses : 2 pass(s) - Exec time: [0.30, 0.41] s * igt@kms_async_flips@test-cursor@pipe-a-edp-1: - Statuses : 2 pass(s) - Exec time: [1.16, 1.24] s * igt@kms_async_flips@test-cursor@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.14, 0.60] s * igt@kms_async_flips@test-cursor@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt@kms_async_flips@test-cursor@pipe-b-dp-1: - Statuses : 2 pass(s) - Exec time: [0.26, 0.33] s * igt@kms_async_flips@test-cursor@pipe-b-edp-1: - Statuses : 2 pass(s) - Exec time: [1.22, 1.28] s * igt@kms_async_flips@test-cursor@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.10, 0.35] s * igt@kms_async_flips@test-cursor@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.14] s * igt@kms_async_flips@test-cursor@pipe-c-dp-1: - Statuses : 2 pass(s) - Exec time: [0.26, 0.31] s * igt@kms_async_flips@test-cursor@pipe-c-edp-1: - Statuses : 2 pass(s) - Exec time: [1.22] s * igt@kms_async_flips@test-cursor@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.10, 0.30] s * igt@kms_async_flips@test-cursor@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [1.22] s * igt@kms_async_flips@test-cursor@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.11] s * igt@kms_async_flips@test-time-stamp@pipe-a-dp-1: - Statuses : 2 pass(s) - Exec time: [0.33, 0.45] s * igt@kms_async_flips@test-time-stamp@pipe-a-edp-1: - Statuses : 2 pass(s) - Exec time: [1.24, 1.25] s * igt@kms_async_flips@test-time-stamp@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.16, 0.68] s * igt@kms_async_flips@test-time-stamp@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.19] s * igt@kms_async_flips@test-time-stamp@pipe-b-dp-1: - Statuses : 2 pass(s) - Exec time: [0.29, 0.34] s * igt@kms_async_flips@test-time-stamp@pipe-b-edp-1: - Statuses : 2 pass(s) - Exec time: [1.21, 1.28] s * igt@kms_async_flips@test-time-stamp@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.13, 0.36] s * igt@kms_async_flips@test-time-stamp@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.17] s * igt@kms_async_flips@test-time-stamp@pipe-c-dp-1: - Statuses : 2 pass(s) - Exec time: [0.30, 0.36] s * igt@kms_async_flips@test-time-stamp@pipe-c-edp-1: - Statuses : 2 pass(s) - Exec time: [1.22, 1.28] s * igt@kms_async_flips@test-time-stamp@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.11, 0.34] s * igt@kms_async_flips@test-time-stamp@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [1.21] s * igt@kms_async_flips@test-time-stamp@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.12] s Known issues ------------ Here are the changes found in IGTPW_7104_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ccs@block-copy-inplace: - shard-tglb: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#5325]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@gem_ccs@block-copy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-iclb: NOTRUN -> [SKIP][6] ([i915#5327]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglb: NOTRUN -> [SKIP][7] ([i915#5325]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-apl: [PASS][8] -> [DMESG-WARN][9] ([i915#180]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl4/igt@gem_ctx_isolation@preservation-s3@bcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#1099]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_exec_balancer@parallel: - shard-kbl: NOTRUN -> [DMESG-WARN][11] ([i915#5076] / [i915#5614]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl4/igt@gem_exec_balancer@parallel.html - shard-iclb: NOTRUN -> [SKIP][12] ([i915#4525]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb8/igt@gem_exec_balancer@parallel.html - shard-tglb: NOTRUN -> [DMESG-WARN][13] ([i915#5076] / [i915#5614]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb5/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-deadline: - shard-kbl: NOTRUN -> [FAIL][14] ([i915#2846]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl4/igt@gem_exec_fair@basic-deadline.html - shard-glk: [PASS][15] -> [FAIL][16] ([i915#2846]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-glk3/igt@gem_exec_fair@basic-deadline.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [PASS][17] -> [FAIL][18] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-tglb2/igt@gem_exec_fair@basic-flow@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [PASS][19] -> [FAIL][20] ([i915#2842]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-kbl4/igt@gem_exec_fair@basic-none-rrul@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglb: NOTRUN -> [FAIL][21] ([i915#2842]) +5 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-kbl: NOTRUN -> [FAIL][22] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-iclb: [PASS][23] -> [FAIL][24] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb6/igt@gem_exec_fair@basic-pace@vcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][25] ([i915#2842]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-glk: [PASS][26] -> [FAIL][27] ([i915#2842]) +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk5/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][28] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-snb: [PASS][29] -> [SKIP][30] ([fdo#109271]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-snb5/igt@gem_exec_flush@basic-batch-kernel-default-wb.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-snb6/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][31] ([fdo#109283]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb6/igt@gem_exec_params@no-blt.html * igt@gem_exec_params@no-bsd: - shard-iclb: NOTRUN -> [SKIP][32] ([fdo#109283]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb8/igt@gem_exec_params@no-bsd.html * igt@gem_exec_params@no-vebox: - shard-tglb: NOTRUN -> [SKIP][33] ([fdo#109283] / [i915#4877]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb7/igt@gem_exec_params@no-vebox.html * igt@gem_exec_params@secure-non-master: - shard-tglb: NOTRUN -> [SKIP][34] ([fdo#112283]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb3/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_params@secure-non-root: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#112283]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb4/igt@gem_exec_params@secure-non-root.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#4613]) +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#4613]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-glk: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#4613]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-iclb: NOTRUN -> [SKIP][39] ([i915#4613]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-kbl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#4613]) +3 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@coherency: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#111656]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@gem_mmap_gtt@coherency.html - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109292]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb3/igt@gem_mmap_gtt@coherency.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][43] ([i915#2658]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl1/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#4270]) +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb6/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@create-valid-protected-context: - shard-iclb: NOTRUN -> [SKIP][45] ([i915#4270]) +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb8/igt@gem_pxp@create-valid-protected-context.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271]) +246 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html - shard-iclb: NOTRUN -> [SKIP][47] ([i915#768]) +3 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_userptr_blits@unsync-overlap: - shard-iclb: NOTRUN -> [SKIP][48] ([i915#3297]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb3/igt@gem_userptr_blits@unsync-overlap.html - shard-tglb: NOTRUN -> [SKIP][49] ([i915#3297]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb3/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][50] ([i915#2724]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-snb2/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][51] ([i915#2856]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][52] ([i915#2527] / [i915#2856]) +5 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb8/igt@gen9_exec_parse@bb-secure.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-tglb: NOTRUN -> [SKIP][53] ([i915#1904]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb1/igt@i915_pm_dc@dc3co-vpb-simulation.html - shard-iclb: NOTRUN -> [SKIP][54] ([i915#658]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-tglb: NOTRUN -> [SKIP][55] ([fdo#111644] / [i915#1397] / [i915#2411]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_query@query-topology-unsupported: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109302]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@i915_query@query-topology-unsupported.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#1769]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - shard-iclb: NOTRUN -> [SKIP][58] ([i915#1769]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-iclb: NOTRUN -> [SKIP][59] ([i915#5286]) +5 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-glk: NOTRUN -> [SKIP][60] ([fdo#109271]) +101 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-tglb: NOTRUN -> [SKIP][61] ([i915#5286]) +4 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][62] ([fdo#111614]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#110725] / [fdo#111614]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-iclb: NOTRUN -> [SKIP][64] ([fdo#110723]) +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#111615]) +9 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_joiner@basic: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#2705]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@kms_big_joiner@basic.html - shard-tglb: NOTRUN -> [SKIP][67] ([i915#2705]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb7/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][68] ([i915#3689] / [i915#3886]) +4 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#3689]) +13 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#111615] / [i915#3689]) +8 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb1/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-kbl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#3886]) +12 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl1/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#3886]) +9 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl3/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109278] / [i915#3886]) +10 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html - shard-glk: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#3886]) +3 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition: - shard-tglb: NOTRUN -> [SKIP][75] ([i915#3742]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb5/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium@dp-crc-fast: - shard-snb: NOTRUN -> [SKIP][76] ([fdo#109271] / [fdo#111827]) +11 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-snb4/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@dp-hpd-storm: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109284] / [fdo#111827]) +14 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@kms_chamelium@dp-hpd-storm.html * igt@kms_chamelium@hdmi-crc-single: - shard-glk: NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) +6 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk9/igt@kms_chamelium@hdmi-crc-single.html * igt@kms_chamelium@vga-hpd: - shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271] / [fdo#111827]) +15 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl8/igt@kms_chamelium@vga-hpd.html * igt@kms_chamelium@vga-hpd-fast: - shard-tglb: NOTRUN -> [SKIP][80] ([fdo#109284] / [fdo#111827]) +17 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb5/igt@kms_chamelium@vga-hpd-fast.html * igt@kms_color@pipe-b-deep-color: - shard-tglb: NOTRUN -> [SKIP][81] ([i915#3555]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb7/igt@kms_color@pipe-b-deep-color.html * igt@kms_color@pipe-d-ctm-negative: - shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109278] / [i915#1149]) +2 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@kms_color@pipe-d-ctm-negative.html * igt@kms_color_chamelium@pipe-a-degamma: - shard-kbl: NOTRUN -> [SKIP][83] ([fdo#109271] / [fdo#111827]) +18 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl1/igt@kms_color_chamelium@pipe-a-degamma.html * igt@kms_color_chamelium@pipe-d-gamma: - shard-iclb: NOTRUN -> [SKIP][84] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@kms_color_chamelium@pipe-d-gamma.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-sliding: - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109278] / [fdo#109279]) +3 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-512x512-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-max-size-onscreen: - shard-tglb: NOTRUN -> [SKIP][86] ([i915#3359]) +11 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-max-size-onscreen.html * igt@kms_cursor_crc@pipe-c-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][87] ([i915#3319]) +4 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding: - shard-apl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#5691]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html * igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen: - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109278]) +45 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb6/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen: - shard-tglb: NOTRUN -> [SKIP][90] ([fdo#109279] / [i915#3359]) +6 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-64x64-sliding: - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271]) +225 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl4/igt@kms_cursor_crc@pipe-d-cursor-64x64-sliding.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-iclb: NOTRUN -> [SKIP][92] ([fdo#109274] / [fdo#109278]) +5 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-iclb: [PASS][93] -> [FAIL][94] ([i915#2346]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglb: NOTRUN -> [SKIP][95] ([i915#4103]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_draw_crc@draw-method-rgb565-blt-4tiled: - shard-iclb: NOTRUN -> [SKIP][96] ([i915#5287]) +4 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@kms_draw_crc@draw-method-rgb565-blt-4tiled.html * igt@kms_draw_crc@draw-method-rgb565-pwrite-4tiled: - shard-tglb: NOTRUN -> [SKIP][97] ([i915#5287]) +4 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb8/igt@kms_draw_crc@draw-method-rgb565-pwrite-4tiled.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglb: NOTRUN -> [SKIP][98] ([fdo#109274] / [fdo#111825] / [i915#3966]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb6/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109274]) +7 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglb: NOTRUN -> [SKIP][100] ([fdo#109274] / [fdo#111825]) +15 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-iclb: [PASS][101] -> [SKIP][102] ([i915#3701]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglb: NOTRUN -> [SKIP][103] ([i915#2587]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling: - shard-iclb: NOTRUN -> [SKIP][104] ([i915#2587]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite: - shard-snb: NOTRUN -> [SKIP][105] ([fdo#109271]) +272 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][106] ([fdo#109280] / [fdo#111825]) +42 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-iclb: NOTRUN -> [SKIP][107] ([fdo#109280]) +39 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-tglb: NOTRUN -> [SKIP][108] ([fdo#109289]) +3 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb1/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-iclb: NOTRUN -> [SKIP][109] ([fdo#109289]) +2 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: - shard-apl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#533]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl4/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: - shard-apl: NOTRUN -> [FAIL][111] ([fdo#108145] / [i915#265]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][112] ([i915#265]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html - shard-apl: NOTRUN -> [FAIL][113] ([i915#265]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html - shard-kbl: NOTRUN -> [FAIL][114] ([i915#265]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl4/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-kbl: NOTRUN -> [FAIL][115] ([fdo#108145] / [i915#265]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl7/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_lowres@pipe-a-tiling-none: - shard-tglb: NOTRUN -> [SKIP][116] ([i915#3536]) +2 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb7/igt@kms_plane_lowres@pipe-a-tiling-none.html * igt@kms_plane_lowres@pipe-b-tiling-4: - shard-iclb: NOTRUN -> [SKIP][117] ([i915#5288]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@kms_plane_lowres@pipe-b-tiling-4.html * igt@kms_plane_lowres@pipe-c-tiling-y: - shard-iclb: NOTRUN -> [SKIP][118] ([i915#3536]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@kms_plane_lowres@pipe-c-tiling-y.html * igt@kms_plane_multiple@atomic-pipe-c-tiling-4: - shard-tglb: NOTRUN -> [SKIP][119] ([i915#5288]) +2 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@kms_plane_multiple@atomic-pipe-c-tiling-4.html * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-25@pipe-c-edp-1-downscale-with-pixel-format: - shard-iclb: NOTRUN -> [SKIP][120] ([i915#5176]) +5 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-25@pipe-c-edp-1-downscale-with-pixel-format.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale: - shard-iclb: [PASS][121] -> [SKIP][122] ([i915#5235]) +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html * igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-a-edp-1-upscale-with-rotation: - shard-tglb: NOTRUN -> [SKIP][123] ([i915#5176]) +3 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb5/igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-a-edp-1-upscale-with-rotation.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-kbl: NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#658]) +2 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html - shard-iclb: NOTRUN -> [SKIP][125] ([fdo#111068] / [i915#658]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html - shard-apl: NOTRUN -> [SKIP][126] ([fdo#109271] / [i915#658]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html - shard-tglb: NOTRUN -> [SKIP][127] ([i915#2920]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglb: NOTRUN -> [SKIP][128] ([i915#1911]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-iclb: NOTRUN -> [SKIP][129] ([fdo#109642] / [fdo#111068] / [i915#658]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: NOTRUN -> [SKIP][130] ([fdo#109441]) +4 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-tglb: NOTRUN -> [FAIL][131] ([i915#132] / [i915#3467]) +4 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb6/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [PASS][132] -> [SKIP][133] ([fdo#109441]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb2/igt@kms_psr@psr2_sprite_render.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb6/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-iclb: [PASS][134] -> [SKIP][135] ([i915#5519]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglb: NOTRUN -> [SKIP][136] ([fdo#111615] / [i915#5289]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_vrr@flip-suspend: - shard-iclb: NOTRUN -> [SKIP][137] ([i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb1/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][138] ([fdo#109271] / [i915#2437]) +1 similar issue [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl7/igt@kms_writeback@writeback-fb-id.html - shard-tglb: NOTRUN -> [SKIP][139] ([i915#2437]) +1 similar issue [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb7/igt@kms_writeback@writeback-fb-id.html - shard-iclb: NOTRUN -> [SKIP][140] ([i915#2437]) +1 similar issue [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][141] ([fdo#109271] / [i915#2437]) +1 similar issue [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl4/igt@kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#2437]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk6/igt@kms_writeback@writeback-invalid-parameters.html * igt@nouveau_crc@pipe-a-source-outp-complete: - shard-iclb: NOTRUN -> [SKIP][143] ([i915#2530]) +1 similar issue [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@nouveau_crc@pipe-a-source-outp-complete.html - shard-tglb: NOTRUN -> [SKIP][144] ([i915#2530]) +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb5/igt@nouveau_crc@pipe-a-source-outp-complete.html * igt@nouveau_crc@pipe-d-source-outp-complete: - shard-iclb: NOTRUN -> [SKIP][145] ([fdo#109278] / [i915#2530]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb4/igt@nouveau_crc@pipe-d-source-outp-complete.html * igt@prime_nv_api@i915_self_import: - shard-iclb: NOTRUN -> [SKIP][146] ([fdo#109291]) +4 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb4/igt@prime_nv_api@i915_self_import.html * igt@prime_nv_test@nv_write_i915_cpu_mmap_read: - shard-tglb: NOTRUN -> [SKIP][147] ([fdo#109291]) +5 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb8/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html * igt@prime_vgem@basic-userptr: - shard-iclb: NOTRUN -> [SKIP][148] ([i915#3301]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb6/igt@prime_vgem@basic-userptr.html - shard-tglb: NOTRUN -> [SKIP][149] ([i915#3301]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb8/igt@prime_vgem@basic-userptr.html * igt@prime_vgem@fence-read-hang: - shard-iclb: NOTRUN -> [SKIP][150] ([fdo#109295]) +1 similar issue [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglb: NOTRUN -> [SKIP][151] ([fdo#109295]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@prime_vgem@fence-write-hang.html * igt@sysfs_clients@fair-1: - shard-glk: NOTRUN -> [SKIP][152] ([fdo#109271] / [i915#2994]) +1 similar issue [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk1/igt@sysfs_clients@fair-1.html - shard-iclb: NOTRUN -> [SKIP][153] ([i915#2994]) +2 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb3/igt@sysfs_clients@fair-1.html * igt@sysfs_clients@sema-10: - shard-tglb: NOTRUN -> [SKIP][154] ([i915#2994]) +2 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb2/igt@sysfs_clients@sema-10.html - shard-apl: NOTRUN -> [SKIP][155] ([fdo#109271] / [i915#2994]) +4 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl3/igt@sysfs_clients@sema-10.html * igt@sysfs_clients@split-50: - shard-kbl: NOTRUN -> [SKIP][156] ([fdo#109271] / [i915#2994]) +2 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl1/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_exec_fair@basic-none@rcs0: - shard-kbl: [FAIL][157] ([i915#2842]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-kbl4/igt@gem_exec_fair@basic-none@rcs0.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-kbl7/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][159] ([i915#2842]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][161] ([i915#2842]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-snb: [SKIP][163] ([fdo#109271]) -> [PASS][164] +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-snb6/igt@gem_exec_flush@basic-wb-ro-before-default.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-snb7/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-apl: [FAIL][165] ([i915#644]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl3/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][167] ([i915#180]) -> [PASS][168] +6 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl3/igt@gem_workarounds@suspend-resume-context.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl1/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][169] ([i915#454]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][171] ([fdo#109271]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl7/igt@i915_pm_dc@dc9-dpms.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl2/igt@i915_pm_dc@dc9-dpms.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][173] ([i915#2346]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-iclb: [FAIL][175] ([i915#2346]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-iclb: [SKIP][177] ([i915#3701]) -> [PASS][178] +1 similar issue [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [SKIP][179] ([i915#433]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-iclb: [SKIP][181] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb4/igt@kms_psr2_su@page_flip-xrgb8888.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [SKIP][183] ([fdo#109441]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb7/igt@kms_psr@psr2_cursor_render.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-iclb: [SKIP][185] ([i915#5519]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html #### Warnings #### * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][187] ([i915#3063]) -> [FAIL][188] ([i915#5784]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-tglb6/igt@gem_eio@unwedge-stress.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-tglb8/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-iclb: [DMESG-WARN][189] ([i915#5614]) -> [SKIP][190] ([i915#4525]) +2 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb4/igt@gem_exec_balancer@parallel-keep-submit-fence.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb7/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][191] ([i915#2852]) -> [FAIL][192] ([i915#2842]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [FAIL][193] ([i915#2851]) -> [FAIL][194] ([i915#2842]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-glk6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-iclb: [SKIP][195] ([i915#658]) -> [SKIP][196] ([i915#2920]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: [SKIP][197] ([i915#2920]) -> [SKIP][198] ([fdo#111068] / [i915#658]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-iclb5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][199], [FAIL][200], [FAIL][201], [FAIL][202], [FAIL][203], [FAIL][204], [FAIL][205], [FAIL][206], [FAIL][207], [FAIL][208], [FAIL][209]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][210], [FAIL][211], [FAIL][212], [FAIL][213], [FAIL][214]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl8/igt@runner@aborted.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl4/igt@runner@aborted.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl4/igt@runner@aborted.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl4/igt@runner@aborted.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl4/igt@runner@aborted.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl8/igt@runner@aborted.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl1/igt@runner@aborted.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl6/igt@runner@aborted.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl7/igt@runner@aborted.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl3/igt@runner@aborted.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11656/shard-apl2/igt@runner@aborted.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl1/igt@runner@aborted.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl3/igt@runner@aborted.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl6/igt@runner@aborted.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl3/igt@runner@aborted.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/shard-apl6/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110254]: https://bugs.freedesktop.org/show_bug.cgi?id=110254 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904 [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [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#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2851]: https://gitlab.freedesktop.org/drm/intel/issues/2851 [i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076 [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614 [i915#5691]: https://gitlab.freedesktop.org/drm/intel/issues/5691 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6472 -> IGTPW_7104 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11656: 416780e079b848ddd4da752cb90b619b97eb773e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7104: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7104/index.html IGT_6472: c815c94f0ceb33ae852622538f0136cf44c5725d @ 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_7104/index.html [-- Attachment #2: Type: text/html, Size: 80312 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 1/2] tests/kms_async_flips: Convert tests to dynamic 2022-05-16 8:24 [igt-dev] [PATCH i-g-t v4 1/2] tests/kms_async_flips: Convert tests to dynamic Karthik B S ` (2 preceding siblings ...) 2022-05-16 11:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-05-17 12:14 ` Modem, Bhanuprakash 2022-05-30 5:59 ` Karthik B S 3 siblings, 1 reply; 8+ messages in thread From: Modem, Bhanuprakash @ 2022-05-17 12:14 UTC (permalink / raw) To: Karthik B S, igt-dev On Mon-16-05-2022 01:54 pm, Karthik B S wrote: > v2: -Get the mode after igt_display_reset() (Bhanu) > > v3: -Move patch to start of series to avoid code duplication (Bhanu) > -Use for_each_pipe() instead of for_each_pipe_static() (Bhanu) > > Signed-off-by: Karthik B S <karthik.b.s@intel.com> > --- > tests/kms_async_flips.c | 122 +++++++++++++++++++++++++++++++++++----- > 1 file changed, 108 insertions(+), 14 deletions(-) > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c > index 5e11cd43..e307f0d9 100644 > --- a/tests/kms_async_flips.c > +++ b/tests/kms_async_flips.c > @@ -51,6 +51,7 @@ typedef struct { > struct igt_fb bufs[4]; > igt_display_t display; > drmModeConnectorPtr connector; > + igt_output_t *output; > unsigned long flip_timestamp_us; > double flip_interval; > igt_pipe_crc_t *pipe_crc; > @@ -58,6 +59,8 @@ typedef struct { > int flip_count; > int frame_count; > bool flip_pending; > + bool extended; > + enum pipe pipe; > } data_t; > > static drmModeConnectorPtr find_connector_for_modeset(data_t *data) > @@ -531,10 +534,29 @@ static void test_crc(data_t *data) > igt_assert_lt(data->frame_count * 2, data->flip_count); > } > > -igt_main > +static int opt_handler(int opt, int opt_index, void *_data) > +{ > + data_t *data = _data; > + > + switch (opt) { > + case 'e': > + data->extended = true; > + break; > + } > + > + return IGT_OPT_HANDLER_SUCCESS; > +} > + > +static const char help_str[] = > +" --e \t\tRun the extended tests\n"; > + > +static data_t data; > + > +igt_main_args("e", NULL, help_str, opt_handler, &data) > { > - static data_t data; > int i; > + igt_output_t *output; > + enum pipe pipe; > > igt_fixture { > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > @@ -552,28 +574,100 @@ igt_main > test_init(&data); > > igt_describe("Wait for page flip events in between successive asynchronous flips"); > - igt_subtest("async-flip-with-page-flip-events") > - test_async_flip(&data, false); > + igt_subtest_with_dynamic("async-flip-with-page-flip-events") { > + for_each_pipe(&data.display, pipe) { > + for_each_valid_output_on_pipe(&data.display, pipe, output) { > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { > + data.output = output; > + data.pipe = pipe; > + test_async_flip(&data, false); > + } > + > + if (!data.extended) > + break; > + } > + } > + } > > igt_describe("Alternate between sync and async flips"); > - igt_subtest("alternate-sync-async-flip") > - test_async_flip(&data, true); > + igt_subtest_with_dynamic("alternate-sync-async-flip") { > + for_each_pipe(&data.display, pipe) { > + for_each_valid_output_on_pipe(&data.display, pipe, output) { > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { > + data.output = output; > + data.pipe = pipe; > + test_async_flip(&data, true); > + } > + > + if (!data.extended) > + break; > + } > + } > + } > > igt_describe("Verify that the async flip timestamp does not coincide with either previous or next vblank"); > - igt_subtest("test-time-stamp") > - test_timestamp(&data); > + igt_subtest_with_dynamic("test-time-stamp") { > + for_each_pipe(&data.display, pipe) { > + for_each_valid_output_on_pipe(&data.display, pipe, output) { > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { > + data.output = output; > + data.pipe = pipe; > + test_timestamp(&data); > + } > + > + if (!data.extended) > + break; > + } > + } > + } > > igt_describe("Verify that the DRM_IOCTL_MODE_CURSOR passes after async flip"); > - igt_subtest("test-cursor") > - test_cursor(&data); > + igt_subtest_with_dynamic("test-cursor") { > + for_each_pipe(&data.display, pipe) { > + for_each_valid_output_on_pipe(&data.display, pipe, output) { > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { > + data.output = output; > + data.pipe = pipe; > + test_cursor(&data); > + } > + > + if (!data.extended) > + break; > + } > + } > + } > > igt_describe("Negative case to verify if changes in fb are rejected from kernel as expected"); > - igt_subtest("invalid-async-flip") > - test_invalid(&data); > + igt_subtest_with_dynamic("invalid-async-flip") { > + for_each_pipe(&data.display, pipe) { > + for_each_valid_output_on_pipe(&data.display, pipe, output) { > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { > + data.output = output; > + data.pipe = pipe; > + test_invalid(&data); > + } > + > + if (!data.extended) > + break; > + } > + } > + } > > igt_describe("Use CRC to verify async flip scans out the correct framebuffer"); > - igt_subtest("crc") > - test_crc(&data); > + igt_subtest_with_dynamic("crc") { > + for_each_pipe(&data.display, pipe) { > + for_each_valid_output_on_pipe(&data.display, pipe, output) { > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { > + data.output = output; > + data.pipe = pipe; > + test_crc(&data); > + } > + > + if (!data.extended) > + break; > + } > + } > + } LGTM Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> - Bhanu > > igt_fixture { > for (i = 0; i < ARRAY_SIZE(data.bufs); i++) ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 1/2] tests/kms_async_flips: Convert tests to dynamic 2022-05-17 12:14 ` [igt-dev] [PATCH i-g-t v4 1/2] " Modem, Bhanuprakash @ 2022-05-30 5:59 ` Karthik B S 0 siblings, 0 replies; 8+ messages in thread From: Karthik B S @ 2022-05-30 5:59 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev On 5/17/2022 5:44 PM, Modem, Bhanuprakash wrote: > On Mon-16-05-2022 01:54 pm, Karthik B S wrote: >> v2: -Get the mode after igt_display_reset() (Bhanu) >> >> v3: -Move patch to start of series to avoid code duplication (Bhanu) >> -Use for_each_pipe() instead of for_each_pipe_static() (Bhanu) >> >> Signed-off-by: Karthik B S <karthik.b.s@intel.com> >> --- >> tests/kms_async_flips.c | 122 +++++++++++++++++++++++++++++++++++----- >> 1 file changed, 108 insertions(+), 14 deletions(-) >> >> diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c >> index 5e11cd43..e307f0d9 100644 >> --- a/tests/kms_async_flips.c >> +++ b/tests/kms_async_flips.c >> @@ -51,6 +51,7 @@ typedef struct { >> struct igt_fb bufs[4]; >> igt_display_t display; >> drmModeConnectorPtr connector; >> + igt_output_t *output; >> unsigned long flip_timestamp_us; >> double flip_interval; >> igt_pipe_crc_t *pipe_crc; >> @@ -58,6 +59,8 @@ typedef struct { >> int flip_count; >> int frame_count; >> bool flip_pending; >> + bool extended; >> + enum pipe pipe; >> } data_t; >> static drmModeConnectorPtr find_connector_for_modeset(data_t *data) >> @@ -531,10 +534,29 @@ static void test_crc(data_t *data) >> igt_assert_lt(data->frame_count * 2, data->flip_count); >> } >> -igt_main >> +static int opt_handler(int opt, int opt_index, void *_data) >> +{ >> + data_t *data = _data; >> + >> + switch (opt) { >> + case 'e': >> + data->extended = true; >> + break; >> + } >> + >> + return IGT_OPT_HANDLER_SUCCESS; >> +} >> + >> +static const char help_str[] = >> +" --e \t\tRun the extended tests\n"; >> + >> +static data_t data; >> + >> +igt_main_args("e", NULL, help_str, opt_handler, &data) >> { >> - static data_t data; >> int i; >> + igt_output_t *output; >> + enum pipe pipe; >> igt_fixture { >> data.drm_fd = drm_open_driver_master(DRIVER_ANY); >> @@ -552,28 +574,100 @@ igt_main >> test_init(&data); >> igt_describe("Wait for page flip events in between >> successive asynchronous flips"); >> - igt_subtest("async-flip-with-page-flip-events") >> - test_async_flip(&data, false); >> + igt_subtest_with_dynamic("async-flip-with-page-flip-events") { >> + for_each_pipe(&data.display, pipe) { >> + for_each_valid_output_on_pipe(&data.display, pipe, output) { >> + igt_dynamic_f("pipe-%s-%s", >> kmstest_pipe_name(pipe), output->name) { >> + data.output = output; >> + data.pipe = pipe; >> + test_async_flip(&data, false); >> + } >> + >> + if (!data.extended) >> + break; >> + } >> + } >> + } >> igt_describe("Alternate between sync and async flips"); >> - igt_subtest("alternate-sync-async-flip") >> - test_async_flip(&data, true); >> + igt_subtest_with_dynamic("alternate-sync-async-flip") { >> + for_each_pipe(&data.display, pipe) { >> + for_each_valid_output_on_pipe(&data.display, pipe, output) { >> + igt_dynamic_f("pipe-%s-%s", >> kmstest_pipe_name(pipe), output->name) { >> + data.output = output; >> + data.pipe = pipe; >> + test_async_flip(&data, true); >> + } >> + >> + if (!data.extended) >> + break; >> + } >> + } >> + } >> igt_describe("Verify that the async flip timestamp does >> not coincide with either previous or next vblank"); >> - igt_subtest("test-time-stamp") >> - test_timestamp(&data); >> + igt_subtest_with_dynamic("test-time-stamp") { >> + for_each_pipe(&data.display, pipe) { >> + for_each_valid_output_on_pipe(&data.display, pipe, output) { >> + igt_dynamic_f("pipe-%s-%s", >> kmstest_pipe_name(pipe), output->name) { >> + data.output = output; >> + data.pipe = pipe; >> + test_timestamp(&data); >> + } >> + >> + if (!data.extended) >> + break; >> + } >> + } >> + } >> igt_describe("Verify that the DRM_IOCTL_MODE_CURSOR >> passes after async flip"); >> - igt_subtest("test-cursor") >> - test_cursor(&data); >> + igt_subtest_with_dynamic("test-cursor") { >> + for_each_pipe(&data.display, pipe) { >> + for_each_valid_output_on_pipe(&data.display, pipe, output) { >> + igt_dynamic_f("pipe-%s-%s", >> kmstest_pipe_name(pipe), output->name) { >> + data.output = output; >> + data.pipe = pipe; >> + test_cursor(&data); >> + } >> + >> + if (!data.extended) >> + break; >> + } >> + } >> + } >> igt_describe("Negative case to verify if changes in fb >> are rejected from kernel as expected"); >> - igt_subtest("invalid-async-flip") >> - test_invalid(&data); >> + igt_subtest_with_dynamic("invalid-async-flip") { >> + for_each_pipe(&data.display, pipe) { >> + for_each_valid_output_on_pipe(&data.display, pipe, output) { >> + igt_dynamic_f("pipe-%s-%s", >> kmstest_pipe_name(pipe), output->name) { >> + data.output = output; >> + data.pipe = pipe; >> + test_invalid(&data); >> + } >> + >> + if (!data.extended) >> + break; >> + } >> + } >> + } >> igt_describe("Use CRC to verify async flip scans out the >> correct framebuffer"); >> - igt_subtest("crc") >> - test_crc(&data); >> + igt_subtest_with_dynamic("crc") { >> + for_each_pipe(&data.display, pipe) { >> + for_each_valid_output_on_pipe(&data.display, pipe, output) { >> + igt_dynamic_f("pipe-%s-%s", >> kmstest_pipe_name(pipe), output->name) { >> + data.output = output; >> + data.pipe = pipe; >> + test_crc(&data); >> + } >> + >> + if (!data.extended) >> + break; >> + } >> + } >> + } > > LGTM > Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Thanks for the rb. Thanks, Karthik.B.S > > - Bhanu > >> igt_fixture { >> for (i = 0; i < ARRAY_SIZE(data.bufs); i++) > ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2022-05-30 6:10 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-05-16 8:24 [igt-dev] [PATCH i-g-t v4 1/2] tests/kms_async_flips: Convert tests to dynamic Karthik B S 2022-05-16 8:24 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/kms_async_flips: Test Cleanup Karthik B S 2022-05-17 12:33 ` Modem, Bhanuprakash 2022-05-30 6:10 ` Karthik B S 2022-05-16 10:00 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v4,1/2] tests/kms_async_flips: Convert tests to dynamic Patchwork 2022-05-16 11:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-05-17 12:14 ` [igt-dev] [PATCH i-g-t v4 1/2] " Modem, Bhanuprakash 2022-05-30 5:59 ` Karthik B S
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox