* [igt-dev] [PATCH i-g-t 0/2] tests/kms_vblank: Test cleanup and dynamic conversion
@ 2023-10-10 5:19 Swati Sharma
2023-10-10 5:19 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_vblank: cosmetic changes Swati Sharma
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Swati Sharma @ 2023-10-10 5:19 UTC (permalink / raw)
To: igt-dev
Subtests are converted to dynamic subtests. Also, testplan
documentation is updated.
Review comments addressed from
https://patchwork.freedesktop.org/series/109170/
Swati Sharma (2):
tests/kms_vblank: cosmetic changes
tests/kms_vblank: convert test to dynamic
tests/kms_vblank.c | 266 +++++++++++++++------------------------------
1 file changed, 86 insertions(+), 180 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] tests/kms_vblank: cosmetic changes 2023-10-10 5:19 [igt-dev] [PATCH i-g-t 0/2] tests/kms_vblank: Test cleanup and dynamic conversion Swati Sharma @ 2023-10-10 5:19 ` Swati Sharma 2023-10-11 5:18 ` Karthik B S 2023-10-10 5:19 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_vblank: convert test to dynamic Swati Sharma ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Swati Sharma @ 2023-10-10 5:19 UTC (permalink / raw) To: igt-dev Fix igt_describe() documentation. Remove redundant documentation. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_vblank.c | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/tests/kms_vblank.c b/tests/kms_vblank.c index 33e933c22..bcfd8d012 100644 --- a/tests/kms_vblank.c +++ b/tests/kms_vblank.c @@ -21,11 +21,6 @@ * IN THE SOFTWARE. */ -/** @file kms_vblank.c - * - * This is a test of performance of drmWaitVblank. - */ - #include "igt.h" #include <stdlib.h> #include <stdio.h> @@ -46,7 +41,7 @@ * Description: Test speed of WaitVblank. * * SUBTEST: crtc-id - * Description: check the Vblank and flip events works with given crtc id + * Description: Check the vblank and flip events works with given crtc id * Driver requirement: i915, xe * Functionality: vblank * Mega feature: General Display Features @@ -623,7 +618,7 @@ static void run_subtests_for_pipe(data_t *data) if (m->flags & ~(f->valid | NOHANG)) continue; - igt_describe("Check if test run while hanging by introducing NOHANG flag"); + igt_describe("Check if test run while hanging by introducing NOHANG flag."); igt_subtest_f("pipe-%s-%s-%s", kmstest_pipe_name(data->pipe), f->name, m->name) { @@ -645,7 +640,7 @@ static void run_subtests_for_pipe(data_t *data) if (f->valid & NOHANG || m->flags & NOHANG) continue; - igt_describe("check if injected hang is working properly"); + igt_describe("Check if injected hang is working properly."); igt_subtest_f("pipe-%s-%s-%s-hang", kmstest_pipe_name(data->pipe), f->name, m->name) { @@ -742,11 +737,11 @@ igt_main igt_display_require_output(&data.display); } - igt_describe("Negative test for vblank request"); + igt_describe("Negative test for vblank request."); igt_subtest("invalid") invalid_subtest(&data, fd); - igt_describe("check the Vblank and flip events works with given crtc id"); + igt_describe("Check the vblank and flip events works with given crtc id."); igt_subtest("crtc-id") crtc_id_subtest(&data, fd); -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/kms_vblank: cosmetic changes 2023-10-10 5:19 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_vblank: cosmetic changes Swati Sharma @ 2023-10-11 5:18 ` Karthik B S 0 siblings, 0 replies; 7+ messages in thread From: Karthik B S @ 2023-10-11 5:18 UTC (permalink / raw) To: Swati Sharma, igt-dev On 10/10/2023 10:49 AM, Swati Sharma wrote: > Fix igt_describe() documentation. Remove redundant documentation. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Karthik B S <karthik.b.s@intel.com> > --- > tests/kms_vblank.c | 15 +++++---------- > 1 file changed, 5 insertions(+), 10 deletions(-) > > diff --git a/tests/kms_vblank.c b/tests/kms_vblank.c > index 33e933c22..bcfd8d012 100644 > --- a/tests/kms_vblank.c > +++ b/tests/kms_vblank.c > @@ -21,11 +21,6 @@ > * IN THE SOFTWARE. > */ > > -/** @file kms_vblank.c > - * > - * This is a test of performance of drmWaitVblank. > - */ > - > #include "igt.h" > #include <stdlib.h> > #include <stdio.h> > @@ -46,7 +41,7 @@ > * Description: Test speed of WaitVblank. > * > * SUBTEST: crtc-id > - * Description: check the Vblank and flip events works with given crtc id > + * Description: Check the vblank and flip events works with given crtc id > * Driver requirement: i915, xe > * Functionality: vblank > * Mega feature: General Display Features > @@ -623,7 +618,7 @@ static void run_subtests_for_pipe(data_t *data) > if (m->flags & ~(f->valid | NOHANG)) > continue; > > - igt_describe("Check if test run while hanging by introducing NOHANG flag"); > + igt_describe("Check if test run while hanging by introducing NOHANG flag."); > igt_subtest_f("pipe-%s-%s-%s", > kmstest_pipe_name(data->pipe), > f->name, m->name) { > @@ -645,7 +640,7 @@ static void run_subtests_for_pipe(data_t *data) > if (f->valid & NOHANG || m->flags & NOHANG) > continue; > > - igt_describe("check if injected hang is working properly"); > + igt_describe("Check if injected hang is working properly."); > igt_subtest_f("pipe-%s-%s-%s-hang", > kmstest_pipe_name(data->pipe), > f->name, m->name) { > @@ -742,11 +737,11 @@ igt_main > igt_display_require_output(&data.display); > } > > - igt_describe("Negative test for vblank request"); > + igt_describe("Negative test for vblank request."); > igt_subtest("invalid") > invalid_subtest(&data, fd); > > - igt_describe("check the Vblank and flip events works with given crtc id"); > + igt_describe("Check the vblank and flip events works with given crtc id."); > igt_subtest("crtc-id") > crtc_id_subtest(&data, fd); > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/kms_vblank: convert test to dynamic 2023-10-10 5:19 [igt-dev] [PATCH i-g-t 0/2] tests/kms_vblank: Test cleanup and dynamic conversion Swati Sharma 2023-10-10 5:19 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_vblank: cosmetic changes Swati Sharma @ 2023-10-10 5:19 ` Swati Sharma 2023-10-10 6:55 ` [igt-dev] ✗ CI.xeBAT: failure for tests/kms_vblank: Test cleanup and dynamic conversion (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Swati Sharma @ 2023-10-10 5:19 UTC (permalink / raw) To: igt-dev Convert existing subtests to dynamic subtests at pipe/output level and update testplan documentation. v2: -Remove redundant debug prints -Convert all subtests into dynamic v3: -Use pipe & output from struct data_t v4: -Directly use data->pipe instead of using p -Use for_each_pipe_with_single_output() Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_vblank.c | 251 +++++++++++++++------------------------------ 1 file changed, 81 insertions(+), 170 deletions(-) diff --git a/tests/kms_vblank.c b/tests/kms_vblank.c index bcfd8d012..62d03ae4e 100644 --- a/tests/kms_vblank.c +++ b/tests/kms_vblank.c @@ -56,107 +56,63 @@ */ /** - * SUBTEST: pipe-%s-ts-continuation-dpms-rpm + * SUBTEST: ts-continuation-dpms-rpm * Description: Test TS continuty with DPMS & RPM while hanging by introducing - * NOHANG flag on %arg[1] + * NOHANG flag * Driver requirement: i915, xe * Functionality: dpms, hang, rpm, vblank * Mega feature: General Display Features * Test category: functionality test - * - * arg[1]: - * - * @A: pipe A - * @B: pipe B - * @C: pipe C - * @D: pipe D - * @E: pipe E - * @F: pipe F - * @G: pipe G - * @H: pipe H */ /** - * SUBTEST: pipe-%s-ts-continuation-dpms-suspend + * SUBTEST: ts-continuation-dpms-suspend * Description: Test TS continuty with DPMS & Suspend while hanging by introducing - * NOHANG flag on %arg[1] + * NOHANG flag * Driver requirement: i915, xe * Functionality: dpms, hang, suspend, vblank * Mega feature: General Display Features * Test category: functionality test - * - * arg[1]: - * - * @A: pipe A - * @B: pipe B - * @C: pipe C - * @D: pipe D - * @E: pipe E - * @F: pipe F - * @G: pipe G - * @H: pipe H */ /** - * SUBTEST: pipe-%s-ts-continuation-suspend + * SUBTEST: ts-continuation-suspend * Description: Test TS continuty with Suspend while hanging by introducing NOHANG - * flag on %arg[1] + * flag * Driver requirement: i915, xe * Functionality: hang, suspend, vblank * Mega feature: General Display Features * Test category: functionality test - * - * arg[1]: - * - * @A: pipe A - * @B: pipe B - * @C: pipe C - * @D: pipe D - * @E: pipe E - * @F: pipe F - * @G: pipe G - * @H: pipe H */ /** - * SUBTEST: pipe-%s-ts-continuation-modeset-rpm + * SUBTEST: ts-continuation-modeset-rpm * Description: Test TS continuty during Modeset with Suspend while hanging by - * introducing NOHANG flag on %arg[1] + * introducing NOHANG flag * Driver requirement: i915, xe * Functionality: hang, rpm, vblank * Mega feature: General Display Features * Test category: functionality test - * - * arg[1]: - * - * @A: pipe A - * @B: pipe B - * @C: pipe C - * @D: pipe D - * @E: pipe E - * @F: pipe F - * @G: pipe G - * @H: pipe H */ /** - * SUBTEST: pipe-%s-accuracy-idle + * SUBTEST: accuracy-idle * Description: Test Accuracy of vblank events while hanging by introducing NOHANG - * flag on %arg[1] + * flag * Driver requirement: i915, xe * Functionality: hang, vblank * Mega feature: General Display Features * Test category: functionality test * - * SUBTEST: pipe-%s-%s - * Description: Test %arg[2] while hanging by introducing NOHANG flag on %arg[1] + * SUBTEST: %s + * Description: Test %arg[1] while hanging by introducing NOHANG flag * Driver requirement: i915, xe * Functionality: hang, vblank * Mega feature: General Display Features * Test category: functionality test * - * SUBTEST: pipe-%s-%s-hang - * Description: Test %arg[2] with injected hang is working properly on %arg[1] + * SUBTEST: %s-hang + * Description: Test %arg[1] with injected hang is working properly * Driver requirement: i915, xe * Functionality: hang, vblank * Mega feature: General Display Features @@ -164,17 +120,6 @@ * * arg[1]: * - * @A: pipe A - * @B: pipe B - * @C: pipe C - * @D: pipe D - * @E: pipe E - * @F: pipe F - * @G: pipe G - * @H: pipe H - * - * arg[2]: - * * @query-idle: Time taken to Query vblank counters * @query-forked: Time taken to Query vblank counters (multithreaded) * @query-busy: Time taken to Query vblank counters (during V-active) @@ -270,10 +215,6 @@ static void run_test(data_t *data, void (*testfunc)(data_t *, int, int)) if (data->flags & RPM) igt_require(igt_setup_runtime_pm(fd)); - igt_info("Beginning %s on pipe %s, connector %s\n", - igt_subtest_name(), kmstest_pipe_name(data->pipe), - igt_output_name(output)); - if (!(data->flags & NOHANG)) { ahnd = is_i915_device(fd) ? get_reloc_ahnd(fd, 0) : @@ -314,9 +255,6 @@ static void run_test(data_t *data, void (*testfunc)(data_t *, int, int)) if (!(data->flags & NOHANG)) igt_post_hang_ring(fd, hang); - igt_info("\n%s on pipe %s, connector %s: PASSED\n\n", - igt_subtest_name(), kmstest_pipe_name(data->pipe), igt_output_name(output)); - put_ahnd(ahnd); /* cleanup what prepare_crtc() has done */ @@ -342,63 +280,50 @@ pipe_output_combo_valid(igt_display_t *display, static void crtc_id_subtest(data_t *data, int fd) { igt_display_t *display = &data->display; - igt_output_t *output; - enum pipe p; - - for_each_pipe_with_valid_output(display, p, output) { - struct drm_event_vblank buf; - const uint32_t pipe_id_flag = kmstest_get_vbl_flag(p); - unsigned crtc_id, expected_crtc_id; - uint64_t val; - union drm_wait_vblank vbl; + enum pipe p = data->pipe; + igt_output_t *output = data->output; + struct drm_event_vblank buf; + const uint32_t pipe_id_flag = kmstest_get_vbl_flag(p); + unsigned crtc_id, expected_crtc_id; + uint64_t val; + union drm_wait_vblank vbl; - igt_display_reset(display); + crtc_id = display->pipes[p].crtc_id; + if (drmGetCap(display->drm_fd, DRM_CAP_CRTC_IN_VBLANK_EVENT, &val) == 0) + expected_crtc_id = crtc_id; + else + expected_crtc_id = 0; - igt_output_set_pipe(output, p); - if (!i915_pipe_output_combo_valid(display)) - continue; + prepare_crtc(data, fd, output); - igt_info("Using (pipe %s + %s) to run the subtest.\n", - kmstest_pipe_name(p), igt_output_name(output)); + memset(&vbl, 0, sizeof(vbl)); + vbl.request.type = DRM_VBLANK_RELATIVE | DRM_VBLANK_EVENT; + vbl.request.type |= pipe_id_flag; + vbl.request.sequence = 1; + igt_assert_eq(wait_vblank(fd, &vbl), 0); - crtc_id = display->pipes[p].crtc_id; - if (drmGetCap(display->drm_fd, DRM_CAP_CRTC_IN_VBLANK_EVENT, &val) == 0) - expected_crtc_id = crtc_id; - else - expected_crtc_id = 0; + igt_assert_eq(read(fd, &buf, sizeof(buf)), sizeof(buf)); + igt_assert_eq(buf.crtc_id, expected_crtc_id); - data->pipe = p; - prepare_crtc(data, fd, output); + do_or_die(drmModePageFlip(fd, crtc_id, + data->primary_fb.fb_id, + DRM_MODE_PAGE_FLIP_EVENT, NULL)); - memset(&vbl, 0, sizeof(vbl)); - vbl.request.type = DRM_VBLANK_RELATIVE | DRM_VBLANK_EVENT; - vbl.request.type |= pipe_id_flag; - vbl.request.sequence = 1; - igt_assert_eq(wait_vblank(fd, &vbl), 0); + igt_assert_eq(read(fd, &buf, sizeof(buf)), sizeof(buf)); + igt_assert_eq(buf.crtc_id, expected_crtc_id); - igt_assert_eq(read(fd, &buf, sizeof(buf)), sizeof(buf)); - igt_assert_eq(buf.crtc_id, expected_crtc_id); + if (display->is_atomic) { + igt_plane_t *primary = igt_output_get_plane(output, 0); - do_or_die(drmModePageFlip(fd, crtc_id, - data->primary_fb.fb_id, - DRM_MODE_PAGE_FLIP_EVENT, NULL)); + igt_plane_set_fb(primary, &data->primary_fb); + igt_display_commit_atomic(display, DRM_MODE_PAGE_FLIP_EVENT, NULL); igt_assert_eq(read(fd, &buf, sizeof(buf)), sizeof(buf)); igt_assert_eq(buf.crtc_id, expected_crtc_id); - - if (display->is_atomic) { - igt_plane_t *primary = igt_output_get_plane(output, 0); - - igt_plane_set_fb(primary, &data->primary_fb); - igt_display_commit_atomic(display, DRM_MODE_PAGE_FLIP_EVENT, NULL); - - igt_assert_eq(read(fd, &buf, sizeof(buf)), sizeof(buf)); - igt_assert_eq(buf.crtc_id, expected_crtc_id); - } - - cleanup_crtc(data, fd, output); - return; } + + cleanup_crtc(data, fd, output); + return; } static void accuracy(data_t *data, int fd, int nchildren) @@ -576,7 +501,7 @@ static void vblank_ts_cont(data_t *data, int fd, int nchildren) estimated_vblanks, seq2, seq1 + estimated_vblanks); } -static void run_subtests_for_pipe(data_t *data) +static void run_subtests(data_t *data) { const struct { const char *name; @@ -610,30 +535,22 @@ static void run_subtests_for_pipe(data_t *data) { } }, *m; - igt_fixture - igt_display_require_output_on_pipe(&data->display, data->pipe); - for (f = funcs; f->name; f++) { for (m = modes; m->name; m++) { if (m->flags & ~(f->valid | NOHANG)) continue; igt_describe("Check if test run while hanging by introducing NOHANG flag."); - igt_subtest_f("pipe-%s-%s-%s", - kmstest_pipe_name(data->pipe), - f->name, m->name) { - int found = 0; - - for_each_valid_output_on_pipe(&data->display, data->pipe, data->output) { + igt_subtest_with_dynamic_f("%s-%s", f->name, m->name) { + for_each_pipe_with_single_output(&data->display, data->pipe, data->output) { if (!pipe_output_combo_valid(&data->display, data->pipe, data->output)) continue; - data->flags = m->flags | NOHANG; - run_test(data, f->func); - - found++; + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name) { + data->flags = m->flags | NOHANG; + run_test(data, f->func); + } } - igt_require_f(found, "No valid pipe/output combo found.\n"); } /* Skip the -hang version if NOHANG flag is set */ @@ -641,24 +558,20 @@ static void run_subtests_for_pipe(data_t *data) continue; igt_describe("Check if injected hang is working properly."); - igt_subtest_f("pipe-%s-%s-%s-hang", - kmstest_pipe_name(data->pipe), - f->name, m->name) { + igt_subtest_with_dynamic_f("%s-%s-hang", f->name, m->name) { igt_hang_t hang; - int found = 0; hang = igt_allow_hang(data->display.drm_fd, 0, 0); - for_each_valid_output_on_pipe(&data->display, data->pipe, data->output) { + for_each_pipe_with_single_output(&data->display, data->pipe, data->output) { if (!pipe_output_combo_valid(&data->display, data->pipe, data->output)) continue; - data->flags = m->flags; - run_test(data, f->func); - - found++; + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name) { + data->flags = m->flags; + run_test(data, f->func); + } } igt_disallow_hang(data->display.drm_fd, hang); - igt_require_f(found, "No valid pipe/output combo found.\n"); } } } @@ -668,23 +581,7 @@ static void invalid_subtest(data_t *data, int fd) { union drm_wait_vblank vbl; unsigned long valid_flags; - igt_display_t* display = &data->display; - enum pipe pipe = 0; - igt_output_t *output; - - igt_display_reset(display); - - output = igt_get_single_output_for_pipe(display, pipe); - igt_require(output); - - data->pipe = pipe; - data->output = output; - - igt_output_set_pipe(output, pipe); - igt_require(i915_pipe_output_combo_valid(display)); - - igt_info("Using (pipe %s + %s) to run the subtest.\n", - kmstest_pipe_name(pipe), igt_output_name(output)); + igt_output_t *output = data->output; prepare_crtc(data, fd, output); @@ -738,18 +635,32 @@ igt_main } igt_describe("Negative test for vblank request."); - igt_subtest("invalid") - invalid_subtest(&data, fd); + igt_subtest_with_dynamic("invalid") { + for_each_pipe_with_single_output(&data.display, data.pipe, data.output) { + if (!pipe_output_combo_valid(&data.display, data.pipe, data.output)) + continue; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data.pipe), data.output->name) + invalid_subtest(&data, fd); + break; + } + } igt_describe("Check the vblank and flip events works with given crtc id."); - igt_subtest("crtc-id") - crtc_id_subtest(&data, fd); + igt_subtest_with_dynamic("crtc-id") { + for_each_pipe_with_single_output(&data.display, data.pipe, data.output) { + if (!pipe_output_combo_valid(&data.display, data.pipe, data.output)) + continue; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data.pipe), data.output->name) + crtc_id_subtest(&data, fd); + } + } - for_each_pipe_static(data.pipe) - igt_subtest_group - run_subtests_for_pipe(&data); + run_subtests(&data); igt_fixture { + igt_display_fini(&data.display); drm_close_driver(fd); } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for tests/kms_vblank: Test cleanup and dynamic conversion (rev2) 2023-10-10 5:19 [igt-dev] [PATCH i-g-t 0/2] tests/kms_vblank: Test cleanup and dynamic conversion Swati Sharma 2023-10-10 5:19 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_vblank: cosmetic changes Swati Sharma 2023-10-10 5:19 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_vblank: convert test to dynamic Swati Sharma @ 2023-10-10 6:55 ` Patchwork 2023-10-10 6:58 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-10-10 12:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-10-10 6:55 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2834 bytes --] == Series Details == Series: tests/kms_vblank: Test cleanup and dynamic conversion (rev2) URL : https://patchwork.freedesktop.org/series/123847/ State : failure == Summary == CI Bug Log - changes from XEIGT_7523_BAT -> XEIGTPW_9955_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_9955_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_9955_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_9955_BAT: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@unbind-rebind: - bat-atsm-2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7523/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9955/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_9955_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-dg2-oem2: [FAIL][3] ([i915#2346]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7523/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9955/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [INCOMPLETE][5] ([Intel XE#606] / [Intel XE#632]) -> [INCOMPLETE][6] ([Intel XE#632]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7523/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9955/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [Intel XE#606]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/606 [Intel XE#632]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/632 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7523 -> IGTPW_9955 IGTPW_9955: 9955 IGT_7523: 361c2f92f1fe5641090f2fc59951fcaba15387f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-423-37b2d042c23ae6a10055ea92101a15083d64c718: 37b2d042c23ae6a10055ea92101a15083d64c718 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9955/index.html [-- Attachment #2: Type: text/html, Size: 3525 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_vblank: Test cleanup and dynamic conversion (rev2) 2023-10-10 5:19 [igt-dev] [PATCH i-g-t 0/2] tests/kms_vblank: Test cleanup and dynamic conversion Swati Sharma ` (2 preceding siblings ...) 2023-10-10 6:55 ` [igt-dev] ✗ CI.xeBAT: failure for tests/kms_vblank: Test cleanup and dynamic conversion (rev2) Patchwork @ 2023-10-10 6:58 ` Patchwork 2023-10-10 12:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-10-10 6:58 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2872 bytes --] == Series Details == Series: tests/kms_vblank: Test cleanup and dynamic conversion (rev2) URL : https://patchwork.freedesktop.org/series/123847/ State : success == Summary == CI Bug Log - changes from CI_DRM_13732 -> IGTPW_9955 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/index.html Participating hosts (36 -> 35) ------------------------------ Additional (2): fi-hsw-4770 bat-dg2-13 Missing (3): fi-kbl-soraka bat-dg2-9 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9955 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][1] ([fdo#109271]) +13 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1: - fi-hsw-4770: NOTRUN -> [DMESG-WARN][2] ([i915#8841]) +6 other tests dmesg-warn [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1072]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - fi-bsw-nick: [FAIL][4] ([i915#9276]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8913]: https://gitlab.freedesktop.org/drm/intel/issues/8913 [i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7523 -> IGTPW_9955 CI-20190529: 20190529 CI_DRM_13732: 7c57bbfe2c6194cc4d4edf50466b057d7b191251 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9955: 9955 IGT_7523: 361c2f92f1fe5641090f2fc59951fcaba15387f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +++ 25 lines --- 200 lines == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/index.html [-- Attachment #2: Type: text/html, Size: 3561 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_vblank: Test cleanup and dynamic conversion (rev2) 2023-10-10 5:19 [igt-dev] [PATCH i-g-t 0/2] tests/kms_vblank: Test cleanup and dynamic conversion Swati Sharma ` (3 preceding siblings ...) 2023-10-10 6:58 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-10-10 12:50 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-10-10 12:50 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100279 bytes --] == Series Details == Series: tests/kms_vblank: Test cleanup and dynamic conversion (rev2) URL : https://patchwork.freedesktop.org/series/123847/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13732_full -> IGTPW_9955_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9955_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9955_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9955/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9955_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_sseu@full-enable: - shard-glk: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-glk2/igt@i915_pm_sseu@full-enable.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-glk9/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@workarounds: - shard-dg1: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-dg1-14/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-16/igt@i915_selftest@live@workarounds.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-1 (NEW): - shard-apl: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-apl1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-1.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [PASS][6] -> [TIMEOUT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-mtlp-4/igt@sysfs_timeslice_duration@timeout@vecs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-4/igt@sysfs_timeslice_duration@timeout@vecs0.html New tests --------- New tests have been introduced between CI_DRM_13732_full and IGTPW_9955_full: ### New IGT tests (563) ### * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle: - Statuses : - Exec time: [None] s * igt@kms_vblank@accuracy-idle@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@accuracy-idle@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@crtc-id@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@invalid@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@invalid@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@invalid@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@invalid@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@invalid@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@invalid@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@invalid@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy: - Statuses : - Exec time: [None] s * igt@kms_vblank@query-busy-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@query-busy-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-a-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-b-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-c-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy-hang@pipe-d-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-busy@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked: - Statuses : - Exec time: [None] s * igt@kms_vblank@query-forked-busy: - Statuses : - Exec time: [None] s * igt@kms_vblank@query-forked-busy-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@query-forked-busy-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy-hang@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-busy@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@query-forked-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked-hang@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-forked@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle: - Statuses : - Exec time: [None] s * igt@kms_vblank@query-idle-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@query-idle-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle-hang@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@query-idle@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm: - Statuses : - Exec time: [None] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-b-hdmi-a-2: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend: - Statuses : - Exec time: [None] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-1: - Statuses : 1 incomplete(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-vga-1: - Statuses : 1 dmesg-warn(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-vga-1: - Statuses : 1 dmesg-warn(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle: - Statuses : - Exec time: [None] s * igt@kms_vblank@ts-continuation-idle-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle-hang@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-a-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-b-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-c-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-idle@pipe-d-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset: - Statuses : - Exec time: [None] s * igt@kms_vblank@ts-continuation-modeset-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-hang@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm: - Statuses : - Exec time: [None] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-modeset@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend: - Statuses : - Exec time: [None] s * igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-a-vga-1: - Statuses : 1 dmesg-warn(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-b-vga-1: - Statuses : 1 dmesg-warn(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy: - Statuses : - Exec time: [None] s * igt@kms_vblank@wait-busy-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@wait-busy-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy-hang@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-busy@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked: - Statuses : - Exec time: [None] s * igt@kms_vblank@wait-forked-busy: - Statuses : - Exec time: [None] s * igt@kms_vblank@wait-forked-busy-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@wait-forked-busy-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy-hang@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-a-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-b-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-busy@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@wait-forked-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked-hang@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-forked@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle: - Statuses : - Exec time: [None] s * igt@kms_vblank@wait-idle-hang: - Statuses : - Exec time: [None] s * igt@kms_vblank@wait-idle-hang@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-a-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-b-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-c-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle-hang@pipe-d-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_vblank@wait-idle@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9955_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@core_getclient: - shard-dg1: [PASS][10] -> [DMESG-WARN][11] ([i915#4423]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-dg1-17/igt@core_getclient.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-14/igt@core_getclient.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +10 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-1/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_bad_reloc@negative-reloc: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3281]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-19/igt@gem_bad_reloc@negative-reloc.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3281]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][15] ([i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#9364]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][18] -> [FAIL][19] ([i915#6268]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@idempotent: - shard-snb: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-snb5/igt@gem_ctx_persistence@idempotent.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [PASS][22] -> [FAIL][23] ([i915#2410]) +3 other tests fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][24] ([i915#7975] / [i915#8213]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-1/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][25] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-17/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-4/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@capture@vcs1-smem: - shard-mtlp: [PASS][27] -> [DMESG-WARN][28] ([i915#5591]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-mtlp-2/igt@gem_exec_capture@capture@vcs1-smem.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-4/igt@gem_exec_capture@capture@vcs1-smem.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][30] -> [FAIL][31] ([i915#2842]) +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][32] -> [FAIL][33] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [PASS][34] -> [FAIL][35] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-10/igt@gem_exec_fence@submit3.html * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][37] ([fdo#109271]) +121 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-snb6/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-7/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][41] ([i915#7975] / [i915#8213]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-glk: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-glk4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@massive-random@lmem0: - shard-dg1: [PASS][43] -> [DMESG-WARN][44] ([i915#4391] / [i915#4423]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-dg1-19/igt@gem_lmem_swapping@massive-random@lmem0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-14/igt@gem_lmem_swapping@massive-random@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-apl: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-apl2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][46] -> [TIMEOUT][47] ([i915#4423] / [i915#5493]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@basic-read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +14 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-2/igt@gem_mmap_gtt@basic-read-write-distinct.html * igt@gem_mmap_gtt@basic-write-gtt: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-gtt.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@bench: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-4/igt@gem_pread@bench.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][55] ([i915#2658]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-apl2/igt@gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][56] ([i915#2658]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-snb1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][57] ([i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-glk4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-2: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4270]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-5/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4270]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-1/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4079]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4885]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@access-control: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-12/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][66] ([fdo#109289]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-1/igt@gen3_render_linear_blits.html - shard-dg1: NOTRUN -> [SKIP][67] ([fdo#109289]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-12/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][68] ([fdo#109289]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-4/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#2527]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-3/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][71] ([i915#8617]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#6412]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-1/igt@i915_module_load@resize-bar.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: [PASS][73] -> [SKIP][74] ([i915#1397]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-17/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@i2c: - shard-glk: [PASS][75] -> [FAIL][76] ([i915#5466]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-glk2/igt@i915_pm_rpm@i2c.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-glk2/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][77] -> [SKIP][78] ([i915#1397]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#1397]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-rkl: NOTRUN -> [SKIP][80] ([i915#1397]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#6621]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#8925]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][83] -> [DMESG-FAIL][84] ([i915#9506]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-rkl-6/igt@i915_selftest@live@gt_pm.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-6/igt@i915_selftest@live@gt_pm.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4212]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-18/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#404]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#1769] / [i915#3555]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#1769] / [i915#3555]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][89] ([fdo#111614]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#5286]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5286]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][92] ([fdo#111614] / [i915#3638]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3638]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-14/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190]) +11 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-3/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][95] -> [FAIL][96] ([i915#3743]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][97] ([fdo#111615]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5190]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#110723]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][100] ([fdo#111615]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#111615]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2705]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-7/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2705]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#5354] / [i915#6095]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-10/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#5354]) +42 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-5/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3886] / [i915#5354] / [i915#6095]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#5354] / [i915#6095]) +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3886] / [i915#5354] / [i915#6095]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-3/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-16/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#5354] / [i915#6095]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3734] / [i915#5354] / [i915#6095]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#3689] / [i915#5354] / [i915#6095]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-4/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#3886]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-apl2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5354]) +20 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#3689] / [i915#3886] / [i915#5354]) +9 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_mc_ccs: - shard-mtlp: [PASS][116] -> [ABORT][117] ([i915#9262]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13732/shard-mtlp-7/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_mc_ccs.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-4/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#5354] / [i915#6095]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-18/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-14/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#3689] / [i915#5354]) +20 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-7/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4087] / [i915#7213]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4087]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#111827]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-8/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111827]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-3/igt@kms_chamelium_color@degamma.html - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111827]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#7828]) +10 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#7828]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#7828]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-19/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#7828]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3555]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#7118]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-7/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#3299]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3299]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][134] ([i915#7173]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7118]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-2/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3555] / [i915#8814]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3359]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3546]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#109274] / [fdo#111767] / [i915#5354]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#109274]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#4213]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-dg2: NOTRUN -> [SKIP][143] ([fdo#109274] / [i915#5354]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#9227]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#9226] / [i915#9261]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#8588]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#1257]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#3840]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#3840]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109274]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@kms_flip@2x-dpms-vs-vblank-race.html - shard-rkl: NOTRUN -> [SKIP][151] ([fdo#111825]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-1/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3637]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-4/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#8381]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#109274] / [fdo#111767]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][155] ([fdo#109274] / [i915#3637]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp4: - shard-dg2: NOTRUN -> [INCOMPLETE][156] ([i915#4839]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-11/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][157] ([i915#8841]) +7 other tests dmesg-warn [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#2587] / [i915#2672]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#8810]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#2672]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672] / [i915#3555]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#8708]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#8708]) +14 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][165] ([fdo#111825]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][166] ([fdo#109280]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111825] / [i915#1825]) +18 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3023]) +20 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#8708]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3458]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3458]) +16 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-p == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9955/index.html [-- Attachment #2: Type: text/html, Size: 121946 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-10-11 5:18 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-10 5:19 [igt-dev] [PATCH i-g-t 0/2] tests/kms_vblank: Test cleanup and dynamic conversion Swati Sharma 2023-10-10 5:19 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_vblank: cosmetic changes Swati Sharma 2023-10-11 5:18 ` Karthik B S 2023-10-10 5:19 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_vblank: convert test to dynamic Swati Sharma 2023-10-10 6:55 ` [igt-dev] ✗ CI.xeBAT: failure for tests/kms_vblank: Test cleanup and dynamic conversion (rev2) Patchwork 2023-10-10 6:58 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-10-10 12:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox