* [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests
@ 2020-03-16 8:45 Janusz Krzysztofik
2020-03-16 8:45 ` [igt-dev] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise Janusz Krzysztofik
` (8 more replies)
0 siblings, 9 replies; 14+ messages in thread
From: Janusz Krzysztofik @ 2020-03-16 8:45 UTC (permalink / raw)
To: igt-dev; +Cc: intel-gfx
Together with recently submitted patches, this series concludes
MMAP_OFFSET related changes required for gem_userptr_blits.
Thanks,
Janusz
Janusz Krzysztofik (2):
tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise
tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests
tests/i915/gem_userptr_blits.c | 129 ++++++++++++++++++++++++---------
1 file changed, 95 insertions(+), 34 deletions(-)
--
2.21.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 14+ messages in thread* [igt-dev] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik @ 2020-03-16 8:45 ` Janusz Krzysztofik 2020-03-16 8:45 ` [igt-dev] [RESUBMIT PATCH 2/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik ` (7 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Janusz Krzysztofik @ 2020-03-16 8:45 UTC (permalink / raw) To: igt-dev; +Cc: intel-gfx Upgrade the subtest to use MMAP_GTT API v4 (aka MMAP_OFFSET), dynamically examine each mapping type supported by i915 driver. Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> --- tests/i915/gem_userptr_blits.c | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c index beced298a..975cd9dab 100644 --- a/tests/i915/gem_userptr_blits.c +++ b/tests/i915/gem_userptr_blits.c @@ -1277,7 +1277,7 @@ static void sigjmp_handler(int sig) siglongjmp(sigjmp, sig); } -static void test_readonly_mmap(int i915) +static void test_readonly_mmap(int i915, const struct mmap_offset *t) { char *original, *result; uint32_t handle; @@ -1294,6 +1294,14 @@ static void test_readonly_mmap(int i915) * on the GPU as well. */ + handle = gem_create(i915, PAGE_SIZE); + ptr = __gem_mmap_offset(i915, handle, 0, PAGE_SIZE, + PROT_READ | PROT_WRITE, t->type); + gem_close(i915, handle); + igt_require_f(ptr, "HW & kernel support for mmap-offset(%s)\n", + t->name); + munmap(ptr, PAGE_SIZE); + igt_require(igt_setup_clflush()); sz = 16 << 12; @@ -1307,11 +1315,11 @@ static void test_readonly_mmap(int i915) igt_clflush_range(pages, sz); original = g_compute_checksum_for_data(G_CHECKSUM_SHA1, pages, sz); - ptr = __gem_mmap__gtt(i915, handle, sz, PROT_WRITE); + ptr = __gem_mmap_offset(i915, handle, 0, sz, PROT_WRITE, t->type); igt_assert(ptr == NULL); /* Optional kernel support for GTT mmaps of userptr */ - ptr = __gem_mmap__gtt(i915, handle, sz, PROT_READ); + ptr = __gem_mmap_offset(i915, handle, 0, sz, PROT_READ, t->type); gem_close(i915, handle); if (ptr) { /* Check that a write into the GTT readonly map fails */ @@ -2110,8 +2118,11 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL) igt_subtest("readonly-unsync") test_readonly(fd); - igt_subtest("readonly-mmap-unsync") - test_readonly_mmap(fd); + igt_describe("Examine mmap-offset mapping to read-only userptr"); + igt_subtest_with_dynamic("readonly-mmap-unsync") + for_each_mmap_offset_type(fd, t) + igt_dynamic(t->name) + test_readonly_mmap(fd, t); igt_subtest("readonly-pwrite-unsync") test_readonly_pwrite(fd); -- 2.21.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [RESUBMIT PATCH 2/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik 2020-03-16 8:45 ` [igt-dev] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise Janusz Krzysztofik @ 2020-03-16 8:45 ` Janusz Krzysztofik 2020-03-16 13:31 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) Patchwork ` (6 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Janusz Krzysztofik @ 2020-03-16 8:45 UTC (permalink / raw) To: igt-dev; +Cc: intel-gfx Extend initial check for support of MMAP_GTT mapping to userptr with equivalent checks for each MMAP_OFFSET mapping type supported by i915 driver. Based on that, extend coverage of process-exit-gtt* subtests over non-GTT mapping types. In case of dmabuf-* subtests, use first supported mapping type if there are any. Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> --- tests/i915/gem_userptr_blits.c | 108 ++++++++++++++++++++++++--------- 1 file changed, 79 insertions(+), 29 deletions(-) diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c index 975cd9dab..475200930 100644 --- a/tests/i915/gem_userptr_blits.c +++ b/tests/i915/gem_userptr_blits.c @@ -73,18 +73,30 @@ static uint32_t userptr_flags = LOCAL_I915_USERPTR_UNSYNCHRONIZED; -static bool can_gtt_mmap; +static bool *can_mmap; #define WIDTH 512 #define HEIGHT 512 static uint32_t linear[WIDTH*HEIGHT]; -static bool has_gtt_mmap(int i915) +static bool has_mmap(int i915, const struct mmap_offset *t) { void *ptr, *map = NULL; uint32_t handle; + handle = gem_create(i915, PAGE_SIZE); + map = __gem_mmap_offset(i915, handle, 0, PAGE_SIZE, PROT_WRITE, + t->type); + gem_close(i915, handle); + if (map) { + munmap(map, PAGE_SIZE); + } else { + igt_debug("no HW / kernel support for mmap-offset(%s)\n", + t->name); + return false; + } + igt_assert(posix_memalign(&ptr, PAGE_SIZE, PAGE_SIZE) == 0); if (__gem_userptr(i915, ptr, 4096, 0, @@ -92,9 +104,12 @@ static bool has_gtt_mmap(int i915) goto out_ptr; igt_assert(handle != 0); - map = __gem_mmap__gtt(i915, handle, 4096, PROT_WRITE); + map = __gem_mmap_offset(i915, handle, 0, 4096, PROT_WRITE, t->type); if (map) munmap(map, 4096); + else if (errno == ENODEV) + igt_debug("mmap-offset(%s) banned, lockdep loop prevention\n", + t->name); gem_close(i915, handle); out_ptr: @@ -642,20 +657,25 @@ static int test_invalid_mapping(int fd, const struct mmap_offset *t) return 0; } -#define PE_GTT_MAP 0x1 -#define PE_BUSY 0x2 -static void test_process_exit(int fd, int flags) +#define PE_BUSY 0x1 +static void test_process_exit(int fd, const struct mmap_offset *mmo, int flags) { - if (flags & PE_GTT_MAP) - igt_require(can_gtt_mmap); + if (mmo) + igt_require_f(can_mmap[mmo->type], + "HW & kernel support for LLC and mmap-offset(%s) over userptr\n", + mmo->name); igt_fork(child, 1) { uint32_t handle; handle = create_userptr_bo(fd, sizeof(linear)); - if (flags & PE_GTT_MAP) { - uint32_t *ptr = __gem_mmap__gtt(fd, handle, sizeof(linear), PROT_READ | PROT_WRITE); + if (mmo) { + uint32_t *ptr; + + ptr = __gem_mmap_offset(fd, handle, 0, sizeof(linear), + PROT_READ | PROT_WRITE, + mmo->type); if (ptr) *ptr = 0; } @@ -933,13 +953,14 @@ static void (* volatile orig_sigbus)(int sig, siginfo_t *info, void *param); static volatile unsigned long sigbus_start; static volatile long sigbus_cnt = -1; -static void *umap(int fd, uint32_t handle) +static void *umap(int fd, uint32_t handle, const struct mmap_offset *mmo) { void *ptr; - if (can_gtt_mmap) { - ptr = gem_mmap__gtt(fd, handle, sizeof(linear), - PROT_READ | PROT_WRITE); + if (mmo) { + ptr = __gem_mmap_offset(fd, handle, 0, sizeof(linear), + PROT_READ | PROT_WRITE, mmo->type); + igt_assert(ptr); } else { uint32_t tmp = gem_create(fd, sizeof(linear)); igt_assert_eq(copy(fd, tmp, handle), 0); @@ -951,16 +972,17 @@ static void *umap(int fd, uint32_t handle) } static void -check_bo(int fd1, uint32_t handle1, int is_userptr, int fd2, uint32_t handle2) +check_bo(int fd1, uint32_t handle1, int is_userptr, int fd2, uint32_t handle2, + const struct mmap_offset *mmo) { unsigned char *ptr1, *ptr2; unsigned long size = sizeof(linear); - ptr2 = umap(fd2, handle2); + ptr2 = umap(fd2, handle2, mmo); if (is_userptr) ptr1 = is_userptr > 0 ? get_handle_ptr(handle1) : ptr2; else - ptr1 = umap(fd1, handle1); + ptr1 = umap(fd1, handle1, mmo); igt_assert(ptr1); igt_assert(ptr2); @@ -968,7 +990,7 @@ check_bo(int fd1, uint32_t handle1, int is_userptr, int fd2, uint32_t handle2) sigbus_start = (unsigned long)ptr2; igt_assert(memcmp(ptr1, ptr2, sizeof(linear)) == 0); - if (can_gtt_mmap) { + if (mmo) { counter++; memset(ptr1, counter, size); memset(ptr2, counter, size); @@ -1026,9 +1048,17 @@ static int test_dmabuf(void) uint32_t handle, handle_import; int dma_buf_fd = -1; int ret; + const struct mmap_offset *mmo = NULL; fd1 = drm_open_driver(DRIVER_INTEL); + for_each_mmap_offset_type(fd1, t) + if (can_mmap[t->type]) { + igt_debug("using mmap-offset(%s)\n", t->name); + mmo = t; + break; + } + handle = create_userptr_bo(fd1, sizeof(linear)); memset(get_handle_ptr(handle), counter, sizeof(linear)); @@ -1045,17 +1075,17 @@ static int test_dmabuf(void) fd2 = drm_open_driver(DRIVER_INTEL); handle_import = prime_fd_to_handle(fd2, dma_buf_fd); - check_bo(fd1, handle, 1, fd2, handle_import); + check_bo(fd1, handle, 1, fd2, handle_import, mmo); /* close dma_buf, check whether nothing disappears. */ close(dma_buf_fd); - check_bo(fd1, handle, 1, fd2, handle_import); + check_bo(fd1, handle, 1, fd2, handle_import, mmo); /* destroy userptr object and expect SIGBUS */ free_userptr_bo(fd1, handle); close(fd1); - if (can_gtt_mmap) { + if (mmo) { struct sigaction sigact, orig_sigact; memset(&sigact, 0, sizeof(sigact)); @@ -1067,7 +1097,7 @@ static int test_dmabuf(void) orig_sigbus = orig_sigact.sa_sigaction; sigbus_cnt = 0; - check_bo(fd2, handle_import, -1, fd2, handle_import); + check_bo(fd2, handle_import, -1, fd2, handle_import, mmo); igt_assert(sigbus_cnt > 0); ret = sigaction(SIGBUS, &orig_sigact, NULL); @@ -2030,12 +2060,23 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL) int size = sizeof(linear); igt_fixture { + unsigned int mmo_max = 0; + fd = drm_open_driver(DRIVER_INTEL); igt_assert(fd >= 0); igt_require_gem(fd); gem_require_blitter(fd); - can_gtt_mmap = has_gtt_mmap(fd) && gem_has_llc(fd); + for_each_mmap_offset_type(fd, t) + if (t->type >= mmo_max) + mmo_max = t->type + 1; + igt_assert(mmo_max); + + can_mmap = calloc(mmo_max, sizeof(*can_mmap)); + igt_assert(can_mmap); + + for_each_mmap_offset_type(fd, t) + can_mmap[t->type] = has_mmap(fd, t) && gem_has_llc(fd); size = sizeof(linear); @@ -2193,16 +2234,22 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL) } igt_subtest("process-exit") - test_process_exit(fd, 0); + test_process_exit(fd, NULL, 0); - igt_subtest("process-exit-gtt") - test_process_exit(fd, PE_GTT_MAP); + igt_describe("Test process exit with userptr object mmapped via mmap-offset"); + igt_subtest_with_dynamic("process-exit-mmap") + for_each_mmap_offset_type(fd, t) + igt_dynamic(t->name) + test_process_exit(fd, t, 0); igt_subtest("process-exit-busy") - test_process_exit(fd, PE_BUSY); + test_process_exit(fd, NULL, PE_BUSY); - igt_subtest("process-exit-gtt-busy") - test_process_exit(fd, PE_GTT_MAP | PE_BUSY); + igt_describe("Test process exit with busy userptr object mmapped via mmap-offset"); + igt_subtest_with_dynamic("process-exit-mmap-busy") + for_each_mmap_offset_type(fd, t) + igt_dynamic(t->name) + test_process_exit(fd, t, PE_BUSY); igt_subtest("create-destroy-sync") test_create_destroy(fd, 5); @@ -2325,4 +2372,7 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL) igt_subtest("access-control") test_access_control(fd); + + igt_fixture + free(can_mmap); } -- 2.21.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik 2020-03-16 8:45 ` [igt-dev] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise Janusz Krzysztofik 2020-03-16 8:45 ` [igt-dev] [RESUBMIT PATCH 2/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik @ 2020-03-16 13:31 ` Patchwork 2020-03-16 19:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (5 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2020-03-16 13:31 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev == Series Details == Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) URL : https://patchwork.freedesktop.org/series/74201/ State : success == Summary == CI Bug Log - changes from CI_DRM_8137 -> IGTPW_4307 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html Known issues ------------ Here are the changes found in IGTPW_4307 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-cfl-8700k: [INCOMPLETE][1] ([i915#656]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/fi-cfl-8700k/igt@i915_selftest@live@execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/fi-cfl-8700k/igt@i915_selftest@live@execlists.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [FAIL][3] ([i915#217]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html - fi-kbl-7500u: [FAIL][5] ([i915#323]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656 Participating hosts (48 -> 45) ------------------------------ Additional (2): fi-skl-6770hq fi-tgl-dsi Missing (5): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5510 -> IGTPW_4307 CI-20190529: 20190529 CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_userptr_blits@process-exit-mmap +igt@gem_userptr_blits@process-exit-mmap-busy -igt@gem_userptr_blits@process-exit-gtt -igt@gem_userptr_blits@process-exit-gtt-busy == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik ` (2 preceding siblings ...) 2020-03-16 13:31 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) Patchwork @ 2020-03-16 19:25 ` Patchwork 2020-03-17 8:53 ` Janusz Krzysztofik 2020-03-17 10:50 ` [igt-dev] " Patchwork ` (4 subsequent siblings) 8 siblings, 1 reply; 14+ messages in thread From: Patchwork @ 2020-03-16 19:25 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev == Series Details == Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) URL : https://patchwork.freedesktop.org/series/74201/ State : failure == Summary == CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4307_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4307_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4307_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ctx_shared@single-timeline: - shard-snb: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_shared@single-timeline.html - shard-hsw: NOTRUN -> [FAIL][2] +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_ctx_shared@single-timeline.html * igt@gem_exec_fence@basic-await@vcs0: - shard-kbl: [PASS][3] -> [FAIL][4] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html - shard-iclb: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html - shard-apl: [PASS][7] -> [FAIL][8] +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html - shard-glk: [PASS][9] -> [FAIL][10] +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html - shard-tglb: [PASS][11] -> [FAIL][12] +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs0.html * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW): - shard-iclb: NOTRUN -> [SKIP][13] +7 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW): - shard-tglb: NOTRUN -> [SKIP][14] +11 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html * igt@gem_wait@wait-rcs0: - shard-hsw: [PASS][15] -> [FAIL][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_wait@wait-rcs0.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-snb: [PASS][17] -> [FAIL][18] +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html #### Warnings #### * igt@gem_exec_reloc@basic-spin-bsd: - shard-snb: [FAIL][19] ([i915#757]) -> [TIMEOUT][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@gem_exec_reloc@basic-spin-bsd.html New tests --------- New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full: ### New IGT tests (24) ### * igt@gem_userptr_blits@process-exit-mmap: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@uc: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wb: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wc: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@gtt: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@uc: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wb: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wc: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@readonly-mmap-unsync@gtt: - Statuses : 3 pass(s) 4 skip(s) - Exec time: [0.01] s * igt@gem_userptr_blits@readonly-mmap-unsync@uc: - Statuses : 3 pass(s) 4 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wb: - Statuses : 3 pass(s) 4 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wc: - Statuses : 3 pass(s) 4 skip(s) - Exec time: [0.0, 0.00] s * igt@sysfs_heartbeat_interval@idempotent: - Statuses : - Exec time: [None] s * igt@sysfs_heartbeat_interval@invalid: - Statuses : - Exec time: [None] s * igt@sysfs_heartbeat_interval@nopreempt: - Statuses : - Exec time: [None] s * igt@sysfs_heartbeat_interval@off: - Statuses : - Exec time: [None] s * igt@sysfs_heartbeat_interval@precise: - Statuses : - Exec time: [None] s * igt@sysfs_preempt_timeout@idempotent: - Statuses : - Exec time: [None] s * igt@sysfs_preempt_timeout@invalid: - Statuses : - Exec time: [None] s * igt@sysfs_timeslice_duration@duration: - Statuses : - Exec time: [None] s * igt@sysfs_timeslice_duration@idempotent: - Statuses : - Exec time: [None] s * igt@sysfs_timeslice_duration@timeout: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_4307_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@close-replace-race: - shard-kbl: [PASS][21] -> [INCOMPLETE][22] ([i915#1402]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html - shard-glk: [PASS][23] -> [TIMEOUT][24] ([i915#1340]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@gem_ctx_persistence@close-replace-race.html * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#110841]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_schedule@implicit-write-read-bsd1: - shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109276] / [i915#677]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd1.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#112146]) +4 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd1: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109276]) +13 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html * igt@gem_exec_suspend@basic-s3: - shard-kbl: [PASS][33] -> [INCOMPLETE][34] ([i915#155]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_exec_suspend@basic-s3.html * igt@kms_fbcon_fbt@psr-suspend: - shard-iclb: [PASS][35] -> [INCOMPLETE][36] ([i915#1185]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-expired-vblank: - shard-kbl: [PASS][37] -> [DMESG-WARN][38] ([i915#1297]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html - shard-apl: [PASS][39] -> [DMESG-WARN][40] ([i915#1297]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [PASS][41] -> [DMESG-WARN][42] ([i915#180]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_lowres@pipe-c-tiling-x: - shard-hsw: [PASS][45] -> [DMESG-WARN][46] ([i915#478]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][47] -> [SKIP][48] ([fdo#109441]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic: - shard-apl: [PASS][49] -> [FAIL][50] ([i915#31]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html - shard-glk: [PASS][51] -> [FAIL][52] ([i915#31]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html - shard-kbl: [PASS][53] -> [FAIL][54] ([i915#31]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_setmode@basic.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][55] -> [SKIP][56] ([fdo#112080]) +11 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html #### Possible fixes #### * igt@gem_ctx_isolation@rcs0-s3: - shard-snb: [FAIL][57] -> [PASS][58] +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_persistence@close-replace-race: - shard-tglb: [INCOMPLETE][59] ([i915#1402]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html - shard-apl: [INCOMPLETE][61] ([fdo#103927] / [i915#1402]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html * igt@gem_eio@in-flight-contexts-1us: - shard-hsw: [TIMEOUT][63] -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_exec_parallel@bcs0-fds: - shard-apl: [FAIL][65] -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html - shard-iclb: [FAIL][67] -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html - shard-tglb: [FAIL][69] -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html - shard-glk: [FAIL][71] -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_parallel@bcs0-fds.html * igt@gem_exec_schedule@implicit-read-write-bsd2: - shard-iclb: [SKIP][73] ([fdo#109276] / [i915#677]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@implicit-read-write-bsd2.html * igt@gem_exec_schedule@pi-common-bsd: - shard-iclb: [SKIP][75] ([i915#677]) -> [PASS][76] +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd.html * igt@gem_exec_schedule@preempt-hang-render: - shard-apl: [SKIP][77] ([fdo#109271]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html - shard-glk: [SKIP][79] ([fdo#109271]) -> [PASS][80] +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html - shard-iclb: [SKIP][81] -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html - shard-tglb: [SKIP][83] -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html - shard-kbl: [SKIP][85] ([fdo#109271]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@gem_exec_schedule@preempt-hang-render.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [SKIP][87] ([fdo#112146]) -> [PASS][88] +5 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-snb: [DMESG-WARN][89] ([fdo#111870] / [i915#478]) -> [PASS][90] +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html - shard-hsw: [DMESG-WARN][91] ([fdo#111870]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [DMESG-WARN][93] ([i915#180]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_dc@dc5-dpms: - shard-iclb: [FAIL][95] ([i915#447]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_dc@dc5-dpms.html * igt@i915_pm_rpm@system-suspend-devices: - shard-iclb: [SKIP][97] ([i915#1316]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html - shard-tglb: [SKIP][99] ([i915#1316]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@i915_pm_rpm@system-suspend-devices.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [FAIL][101] ([i915#72]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [INCOMPLETE][103] ([i915#61]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-kbl: [FAIL][105] ([i915#49]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html - shard-glk: [FAIL][107] ([i915#49]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html - shard-apl: [FAIL][109] ([i915#49]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-snb: [DMESG-WARN][111] ([i915#478]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-apl: [DMESG-WARN][113] ([i915#180]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: - shard-tglb: [SKIP][117] ([fdo#112015]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html * igt@perf_pmu@busy-vcs1: - shard-iclb: [SKIP][119] ([fdo#112080]) -> [PASS][120] +15 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@perf_pmu@busy-vcs1.html * igt@perf_pmu@most-busy-idle-check-all-bcs0: - shard-hsw: [FAIL][121] -> [PASS][122] +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@perf_pmu@most-busy-idle-check-all-bcs0.html * igt@prime_busy@hang-bsd2: - shard-iclb: [SKIP][123] ([fdo#109276]) -> [PASS][124] +20 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@prime_busy@hang-bsd2.html #### Warnings #### * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt: - shard-hsw: [DMESG-WARN][125] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][126] ([i915#478]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt: - shard-hsw: [DMESG-WARN][127] ([i915#478]) -> [DMESG-WARN][128] ([fdo#110789] / [i915#478]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html - shard-snb: [DMESG-WARN][129] ([i915#478]) -> [DMESG-WARN][130] ([fdo#110789] / [i915#478]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: [SKIP][131] ([i915#468]) -> [FAIL][132] ([i915#454]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@i915_pm_dc@dc6-dpms.html * igt@runner@aborted: - shard-kbl: [FAIL][133] ([i915#92]) -> ([FAIL][134], [FAIL][135]) ([i915#1389] / [i915#1402] / [i915#92]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html - shard-apl: ([FAIL][136], [FAIL][137]) ([fdo#103927] / [i915#1402]) -> [FAIL][138] ([fdo#103927]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185 [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297 [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340 [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389 [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402 [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757 [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5510 -> IGTPW_4307 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-16 19:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-03-17 8:53 ` Janusz Krzysztofik 2020-03-17 10:40 ` [igt-dev] [Intel-gfx] " Petri Latvala 0 siblings, 1 reply; 14+ messages in thread From: Janusz Krzysztofik @ 2020-03-17 8:53 UTC (permalink / raw) To: igt-dev; +Cc: intel-gfx Hi, On Mon, 2020-03-16 at 19:25 +0000, Patchwork wrote: > == Series Details == > > Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) > URL : https://patchwork.freedesktop.org/series/74201/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full > ==================================================== > > Summary > ------- > > **FAILURE** False positive, see below. > Serious unknown changes coming with IGTPW_4307_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_4307_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_4307_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_ctx_shared@single-timeline: > - shard-snb: NOTRUN -> [FAIL][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_shared@single-timeline.html > - shard-hsw: NOTRUN -> [FAIL][2] +1 similar issue > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_ctx_shared@single-timeline.html > > * igt@gem_exec_fence@basic-await@vcs0: > - shard-kbl: [PASS][3] -> [FAIL][4] +3 similar issues > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html > - shard-iclb: [PASS][5] -> [FAIL][6] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html > - shard-apl: [PASS][7] -> [FAIL][8] +2 similar issues > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html > - shard-glk: [PASS][9] -> [FAIL][10] +2 similar issues > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html > - shard-tglb: [PASS][11] -> [FAIL][12] +2 similar issues > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs0.html Not related. > > * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW): > - shard-iclb: NOTRUN -> [SKIP][13] +7 similar issues > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html > > * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW): > - shard-tglb: NOTRUN -> [SKIP][14] +11 similar issues > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html Expected behavior. > > * igt@gem_wait@wait-rcs0: > - shard-hsw: [PASS][15] -> [FAIL][16] > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_wait@wait-rcs0.html > > * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: > - shard-snb: [PASS][17] -> [FAIL][18] +1 similar issue > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html Not related. Thanks, Janusz > > > #### Warnings #### > > * igt@gem_exec_reloc@basic-spin-bsd: > - shard-snb: [FAIL][19] ([i915#757]) -> [TIMEOUT][20] > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@gem_exec_reloc@basic-spin-bsd.html > > > New tests > --------- > > New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full: > > ### New IGT tests (24) ### > > * igt@gem_userptr_blits@process-exit-mmap: > - Statuses : > - Exec time: [None] s > > * igt@gem_userptr_blits@process-exit-mmap-busy: > - Statuses : > - Exec time: [None] s > > * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: > - Statuses : 7 skip(s) > - Exec time: [0.0] s > > * igt@gem_userptr_blits@process-exit-mmap-busy@uc: > - Statuses : 7 skip(s) > - Exec time: [0.0] s > > * igt@gem_userptr_blits@process-exit-mmap-busy@wb: > - Statuses : 7 skip(s) > - Exec time: [0.0] s > > * igt@gem_userptr_blits@process-exit-mmap-busy@wc: > - Statuses : 7 skip(s) > - Exec time: [0.0] s > > * igt@gem_userptr_blits@process-exit-mmap@gtt: > - Statuses : 6 skip(s) > - Exec time: [0.0] s > > * igt@gem_userptr_blits@process-exit-mmap@uc: > - Statuses : 6 skip(s) > - Exec time: [0.0] s > > * igt@gem_userptr_blits@process-exit-mmap@wb: > - Statuses : 6 skip(s) > - Exec time: [0.0] s > > * igt@gem_userptr_blits@process-exit-mmap@wc: > - Statuses : 6 skip(s) > - Exec time: [0.0] s > > * igt@gem_userptr_blits@readonly-mmap-unsync@gtt: > - Statuses : 3 pass(s) 4 skip(s) > - Exec time: [0.01] s > > * igt@gem_userptr_blits@readonly-mmap-unsync@uc: > - Statuses : 3 pass(s) 4 skip(s) > - Exec time: [0.0, 0.00] s > > * igt@gem_userptr_blits@readonly-mmap-unsync@wb: > - Statuses : 3 pass(s) 4 skip(s) > - Exec time: [0.0, 0.00] s > > * igt@gem_userptr_blits@readonly-mmap-unsync@wc: > - Statuses : 3 pass(s) 4 skip(s) > - Exec time: [0.0, 0.00] s > > * igt@sysfs_heartbeat_interval@idempotent: > - Statuses : > - Exec time: [None] s > > * igt@sysfs_heartbeat_interval@invalid: > - Statuses : > - Exec time: [None] s > > * igt@sysfs_heartbeat_interval@nopreempt: > - Statuses : > - Exec time: [None] s > > * igt@sysfs_heartbeat_interval@off: > - Statuses : > - Exec time: [None] s > > * igt@sysfs_heartbeat_interval@precise: > - Statuses : > - Exec time: [None] s > > * igt@sysfs_preempt_timeout@idempotent: > - Statuses : > - Exec time: [None] s > > * igt@sysfs_preempt_timeout@invalid: > - Statuses : > - Exec time: [None] s > > * igt@sysfs_timeslice_duration@duration: > - Statuses : > - Exec time: [None] s > > * igt@sysfs_timeslice_duration@idempotent: > - Statuses : > - Exec time: [None] s > > * igt@sysfs_timeslice_duration@timeout: > - Statuses : > - Exec time: [None] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_4307_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_ctx_persistence@close-replace-race: > - shard-kbl: [PASS][21] -> [INCOMPLETE][22] ([i915#1402]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html > - shard-glk: [PASS][23] -> [TIMEOUT][24] ([i915#1340]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@gem_ctx_persistence@close-replace-race.html > > * igt@gem_ctx_shared@exec-single-timeline-bsd: > - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#110841]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html > > * igt@gem_exec_schedule@implicit-write-read-bsd1: > - shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109276] / [i915#677]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd1.html > > * igt@gem_exec_schedule@preempt-other-chain-bsd: > - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#112146]) +4 similar issues > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > * igt@gem_exec_schedule@preempt-queue-bsd1: > - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109276]) +13 similar issues > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html > > * igt@gem_exec_suspend@basic-s3: > - shard-kbl: [PASS][33] -> [INCOMPLETE][34] ([i915#155]) > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_exec_suspend@basic-s3.html > > * igt@kms_fbcon_fbt@psr-suspend: > - shard-iclb: [PASS][35] -> [INCOMPLETE][36] ([i915#1185]) > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html > > * igt@kms_flip@flip-vs-expired-vblank: > - shard-kbl: [PASS][37] -> [DMESG-WARN][38] ([i915#1297]) > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html > - shard-apl: [PASS][39] -> [DMESG-WARN][40] ([i915#1297]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: > - shard-apl: [PASS][41] -> [DMESG-WARN][42] ([i915#180]) > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > - shard-kbl: [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +3 similar issues > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > * igt@kms_plane_lowres@pipe-c-tiling-x: > - shard-hsw: [PASS][45] -> [DMESG-WARN][46] ([i915#478]) > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html > > * igt@kms_psr@psr2_sprite_plane_move: > - shard-iclb: [PASS][47] -> [SKIP][48] ([fdo#109441]) +2 similar issues > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html > > * igt@kms_setmode@basic: > - shard-apl: [PASS][49] -> [FAIL][50] ([i915#31]) > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html > - shard-glk: [PASS][51] -> [FAIL][52] ([i915#31]) > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html > - shard-kbl: [PASS][53] -> [FAIL][54] ([i915#31]) > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_setmode@basic.html > > * igt@perf_pmu@busy-no-semaphores-vcs1: > - shard-iclb: [PASS][55] -> [SKIP][56] ([fdo#112080]) +11 similar issues > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html > > > #### Possible fixes #### > > * igt@gem_ctx_isolation@rcs0-s3: > - shard-snb: [FAIL][57] -> [PASS][58] +1 similar issue > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html > > * igt@gem_ctx_persistence@close-replace-race: > - shard-tglb: [INCOMPLETE][59] ([i915#1402]) -> [PASS][60] > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html > - shard-apl: [INCOMPLETE][61] ([fdo#103927] / [i915#1402]) -> [PASS][62] > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html > > * igt@gem_eio@in-flight-contexts-1us: > - shard-hsw: [TIMEOUT][63] -> [PASS][64] > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_eio@in-flight-contexts-1us.html > > * igt@gem_exec_parallel@bcs0-fds: > - shard-apl: [FAIL][65] -> [PASS][66] > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html > - shard-iclb: [FAIL][67] -> [PASS][68] > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html > - shard-tglb: [FAIL][69] -> [PASS][70] > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html > - shard-glk: [FAIL][71] -> [PASS][72] > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_parallel@bcs0-fds.html > > * igt@gem_exec_schedule@implicit-read-write-bsd2: > - shard-iclb: [SKIP][73] ([fdo#109276] / [i915#677]) -> [PASS][74] > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@implicit-read-write-bsd2.html > > * igt@gem_exec_schedule@pi-common-bsd: > - shard-iclb: [SKIP][75] ([i915#677]) -> [PASS][76] +1 similar issue > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd.html > > * igt@gem_exec_schedule@preempt-hang-render: > - shard-apl: [SKIP][77] ([fdo#109271]) -> [PASS][78] > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html > - shard-glk: [SKIP][79] ([fdo#109271]) -> [PASS][80] +1 similar issue > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html > - shard-iclb: [SKIP][81] -> [PASS][82] > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html > - shard-tglb: [SKIP][83] -> [PASS][84] > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html > - shard-kbl: [SKIP][85] ([fdo#109271]) -> [PASS][86] > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@gem_exec_schedule@preempt-hang-render.html > > * igt@gem_exec_schedule@reorder-wide-bsd: > - shard-iclb: [SKIP][87] ([fdo#112146]) -> [PASS][88] +5 similar issues > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html > > * igt@gem_userptr_blits@sync-unmap-cycles: > - shard-snb: [DMESG-WARN][89] ([fdo#111870] / [i915#478]) -> [PASS][90] +1 similar issue > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html > - shard-hsw: [DMESG-WARN][91] ([fdo#111870]) -> [PASS][92] > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html > > * igt@gem_workarounds@suspend-resume-fd: > - shard-kbl: [DMESG-WARN][93] ([i915#180]) -> [PASS][94] > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html > > * igt@i915_pm_dc@dc5-dpms: > - shard-iclb: [FAIL][95] ([i915#447]) -> [PASS][96] > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_dc@dc5-dpms.html > > * igt@i915_pm_rpm@system-suspend-devices: > - shard-iclb: [SKIP][97] ([i915#1316]) -> [PASS][98] > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html > - shard-tglb: [SKIP][99] ([i915#1316]) -> [PASS][100] > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@i915_pm_rpm@system-suspend-devices.html > > * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: > - shard-glk: [FAIL][101] ([i915#72]) -> [PASS][102] > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > > * igt@kms_flip@flip-vs-suspend: > - shard-hsw: [INCOMPLETE][103] ([i915#61]) -> [PASS][104] > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@kms_flip@flip-vs-suspend.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: > - shard-kbl: [FAIL][105] ([i915#49]) -> [PASS][106] > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > - shard-glk: [FAIL][107] ([i915#49]) -> [PASS][108] > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > - shard-apl: [FAIL][109] ([i915#49]) -> [PASS][110] > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: > - shard-snb: [DMESG-WARN][111] ([i915#478]) -> [PASS][112] > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > - shard-apl: [DMESG-WARN][113] ([i915#180]) -> [PASS][114] > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > * igt@kms_psr@psr2_primary_page_flip: > - shard-iclb: [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html > > * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: > - shard-tglb: [SKIP][117] ([fdo#112015]) -> [PASS][118] > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html > > * igt@perf_pmu@busy-vcs1: > - shard-iclb: [SKIP][119] ([fdo#112080]) -> [PASS][120] +15 similar issues > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@perf_pmu@busy-vcs1.html > > * igt@perf_pmu@most-busy-idle-check-all-bcs0: > - shard-hsw: [FAIL][121] -> [PASS][122] +1 similar issue > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@perf_pmu@most-busy-idle-check-all-bcs0.html > > * igt@prime_busy@hang-bsd2: > - shard-iclb: [SKIP][123] ([fdo#109276]) -> [PASS][124] +20 similar issues > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@prime_busy@hang-bsd2.html > > > #### Warnings #### > > * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt: > - shard-hsw: [DMESG-WARN][125] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][126] ([i915#478]) > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html > > * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt: > - shard-hsw: [DMESG-WARN][127] ([i915#478]) -> [DMESG-WARN][128] ([fdo#110789] / [i915#478]) > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > - shard-snb: [DMESG-WARN][129] ([i915#478]) -> [DMESG-WARN][130] ([fdo#110789] / [i915#478]) > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-tglb: [SKIP][131] ([i915#468]) -> [FAIL][132] ([i915#454]) > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@i915_pm_dc@dc6-dpms.html > > * igt@runner@aborted: > - shard-kbl: [FAIL][133] ([i915#92]) -> ([FAIL][134], [FAIL][135]) ([i915#1389] / [i915#1402] / [i915#92]) > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html > - shard-apl: ([FAIL][136], [FAIL][137]) ([fdo#103927] / [i915#1402]) -> [FAIL][138] ([fdo#103927]) > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@runner@aborted.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 > [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 > [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 > [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 > [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 > [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 > [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185 > [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297 > [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 > [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340 > [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389 > [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402 > [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 > [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 > [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 > [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 > [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 > [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 > [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 > [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757 > [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 > > > Participating hosts (10 -> 8) > ------------------------------ > > Missing (2): pig-skl-6260u pig-glk-j5005 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_5510 -> IGTPW_4307 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [Intel-gfx] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-17 8:53 ` Janusz Krzysztofik @ 2020-03-17 10:40 ` Petri Latvala 2020-03-17 13:59 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 14+ messages in thread From: Petri Latvala @ 2020-03-17 10:40 UTC (permalink / raw) To: Janusz Krzysztofik, Lakshminarayana Vudum; +Cc: igt-dev, intel-gfx Lakshmi, see below. On Tue, Mar 17, 2020 at 09:53:51AM +0100, Janusz Krzysztofik wrote: > Hi, > > On Mon, 2020-03-16 at 19:25 +0000, Patchwork wrote: > > == Series Details == > > > > Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) > > URL : https://patchwork.freedesktop.org/series/74201/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > False positive, see below. > > > Serious unknown changes coming with IGTPW_4307_full absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_4307_full, please notify your bug team to allow them > > to document this new failure mode, which will reduce false positives in CI. > > > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in IGTPW_4307_full: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@gem_ctx_shared@single-timeline: > > - shard-snb: NOTRUN -> [FAIL][1] > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_shared@single-timeline.html > > - shard-hsw: NOTRUN -> [FAIL][2] +1 similar issue > > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_ctx_shared@single-timeline.html > > > > * igt@gem_exec_fence@basic-await@vcs0: > > - shard-kbl: [PASS][3] -> [FAIL][4] +3 similar issues > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html > > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html > > - shard-iclb: [PASS][5] -> [FAIL][6] > > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html > > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html > > - shard-apl: [PASS][7] -> [FAIL][8] +2 similar issues > > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html > > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html > > - shard-glk: [PASS][9] -> [FAIL][10] +2 similar issues > > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html > > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html > > - shard-tglb: [PASS][11] -> [FAIL][12] +2 similar issues > > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html > > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs0.html > > Not related. > > > > > * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW): > > - shard-iclb: NOTRUN -> [SKIP][13] +7 similar issues > > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html > > > > * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW): > > - shard-tglb: NOTRUN -> [SKIP][14] +11 similar issues > > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html > > Expected behavior. > > > > > * igt@gem_wait@wait-rcs0: > > - shard-hsw: [PASS][15] -> [FAIL][16] > > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html > > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_wait@wait-rcs0.html > > > > * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: > > - shard-snb: [PASS][17] -> [FAIL][18] +1 similar issue > > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html > > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html > > Not related. > > Thanks, > Janusz > > > > > > > > #### Warnings #### > > > > * igt@gem_exec_reloc@basic-spin-bsd: > > - shard-snb: [FAIL][19] ([i915#757]) -> [TIMEOUT][20] > > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html > > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@gem_exec_reloc@basic-spin-bsd.html > > > > > > New tests > > --------- > > > > New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full: > > > > ### New IGT tests (24) ### > > > > * igt@gem_userptr_blits@process-exit-mmap: > > - Statuses : > > - Exec time: [None] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy: > > - Statuses : > > - Exec time: [None] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: > > - Statuses : 7 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@uc: > > - Statuses : 7 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@wb: > > - Statuses : 7 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@wc: > > - Statuses : 7 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap@gtt: > > - Statuses : 6 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap@uc: > > - Statuses : 6 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap@wb: > > - Statuses : 6 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap@wc: > > - Statuses : 6 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@gtt: > > - Statuses : 3 pass(s) 4 skip(s) > > - Exec time: [0.01] s > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@uc: > > - Statuses : 3 pass(s) 4 skip(s) > > - Exec time: [0.0, 0.00] s > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@wb: > > - Statuses : 3 pass(s) 4 skip(s) > > - Exec time: [0.0, 0.00] s > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@wc: > > - Statuses : 3 pass(s) 4 skip(s) > > - Exec time: [0.0, 0.00] s > > > > * igt@sysfs_heartbeat_interval@idempotent: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_heartbeat_interval@invalid: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_heartbeat_interval@nopreempt: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_heartbeat_interval@off: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_heartbeat_interval@precise: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_preempt_timeout@idempotent: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_preempt_timeout@invalid: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_timeslice_duration@duration: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_timeslice_duration@idempotent: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_timeslice_duration@timeout: > > - Statuses : > > - Exec time: [None] s > > > > > > > > Known issues > > ------------ > > > > Here are the changes found in IGTPW_4307_full that come from known issues: > > > > ### IGT changes ### > > > > #### Issues hit #### > > > > * igt@gem_ctx_persistence@close-replace-race: > > - shard-kbl: [PASS][21] -> [INCOMPLETE][22] ([i915#1402]) > > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html > > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html > > - shard-glk: [PASS][23] -> [TIMEOUT][24] ([i915#1340]) > > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html > > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@gem_ctx_persistence@close-replace-race.html > > > > * igt@gem_ctx_shared@exec-single-timeline-bsd: > > - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#110841]) > > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html > > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html > > > > * igt@gem_exec_schedule@implicit-write-read-bsd1: > > - shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109276] / [i915#677]) > > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html > > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd1.html > > > > * igt@gem_exec_schedule@preempt-other-chain-bsd: > > - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#112146]) +4 similar issues > > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > > > * igt@gem_exec_schedule@preempt-queue-bsd1: > > - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109276]) +13 similar issues > > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html > > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html > > > > * igt@gem_exec_suspend@basic-s3: > > - shard-kbl: [PASS][33] -> [INCOMPLETE][34] ([i915#155]) > > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html > > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_exec_suspend@basic-s3.html > > > > * igt@kms_fbcon_fbt@psr-suspend: > > - shard-iclb: [PASS][35] -> [INCOMPLETE][36] ([i915#1185]) > > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html > > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html > > > > * igt@kms_flip@flip-vs-expired-vblank: > > - shard-kbl: [PASS][37] -> [DMESG-WARN][38] ([i915#1297]) > > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html > > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html > > - shard-apl: [PASS][39] -> [DMESG-WARN][40] ([i915#1297]) > > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html > > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html > > > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: > > - shard-apl: [PASS][41] -> [DMESG-WARN][42] ([i915#180]) > > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > > > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > > - shard-kbl: [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +3 similar issues > > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > > > * igt@kms_plane_lowres@pipe-c-tiling-x: > > - shard-hsw: [PASS][45] -> [DMESG-WARN][46] ([i915#478]) > > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html > > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html > > > > * igt@kms_psr@psr2_sprite_plane_move: > > - shard-iclb: [PASS][47] -> [SKIP][48] ([fdo#109441]) +2 similar issues > > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html > > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html > > > > * igt@kms_setmode@basic: > > - shard-apl: [PASS][49] -> [FAIL][50] ([i915#31]) > > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html > > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html > > - shard-glk: [PASS][51] -> [FAIL][52] ([i915#31]) > > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html > > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html > > - shard-kbl: [PASS][53] -> [FAIL][54] ([i915#31]) > > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html > > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_setmode@basic.html > > > > * igt@perf_pmu@busy-no-semaphores-vcs1: > > - shard-iclb: [PASS][55] -> [SKIP][56] ([fdo#112080]) +11 similar issues > > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html > > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html > > > > > > #### Possible fixes #### > > > > * igt@gem_ctx_isolation@rcs0-s3: > > - shard-snb: [FAIL][57] -> [PASS][58] +1 similar issue > > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html > > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html > > > > * igt@gem_ctx_persistence@close-replace-race: > > - shard-tglb: [INCOMPLETE][59] ([i915#1402]) -> [PASS][60] > > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html > > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html > > - shard-apl: [INCOMPLETE][61] ([fdo#103927] / [i915#1402]) -> [PASS][62] > > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html > > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html > > > > * igt@gem_eio@in-flight-contexts-1us: > > - shard-hsw: [TIMEOUT][63] -> [PASS][64] > > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html > > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_eio@in-flight-contexts-1us.html > > > > * igt@gem_exec_parallel@bcs0-fds: > > - shard-apl: [FAIL][65] -> [PASS][66] > > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html > > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html > > - shard-iclb: [FAIL][67] -> [PASS][68] > > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html > > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html > > - shard-tglb: [FAIL][69] -> [PASS][70] > > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html > > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html > > - shard-glk: [FAIL][71] -> [PASS][72] > > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html > > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_parallel@bcs0-fds.html > > > > * igt@gem_exec_schedule@implicit-read-write-bsd2: > > - shard-iclb: [SKIP][73] ([fdo#109276] / [i915#677]) -> [PASS][74] > > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html > > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@implicit-read-write-bsd2.html > > > > * igt@gem_exec_schedule@pi-common-bsd: > > - shard-iclb: [SKIP][75] ([i915#677]) -> [PASS][76] +1 similar issue > > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html > > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd.html > > > > * igt@gem_exec_schedule@preempt-hang-render: > > - shard-apl: [SKIP][77] ([fdo#109271]) -> [PASS][78] > > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html > > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html > > - shard-glk: [SKIP][79] ([fdo#109271]) -> [PASS][80] +1 similar issue > > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html > > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html > > - shard-iclb: [SKIP][81] -> [PASS][82] > > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html > > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html > > - shard-tglb: [SKIP][83] -> [PASS][84] > > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html > > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html > > - shard-kbl: [SKIP][85] ([fdo#109271]) -> [PASS][86] > > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html > > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@gem_exec_schedule@preempt-hang-render.html > > > > * igt@gem_exec_schedule@reorder-wide-bsd: > > - shard-iclb: [SKIP][87] ([fdo#112146]) -> [PASS][88] +5 similar issues > > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html > > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html > > > > * igt@gem_userptr_blits@sync-unmap-cycles: > > - shard-snb: [DMESG-WARN][89] ([fdo#111870] / [i915#478]) -> [PASS][90] +1 similar issue > > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html > > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html > > - shard-hsw: [DMESG-WARN][91] ([fdo#111870]) -> [PASS][92] > > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html > > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html > > > > * igt@gem_workarounds@suspend-resume-fd: > > - shard-kbl: [DMESG-WARN][93] ([i915#180]) -> [PASS][94] > > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html > > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html > > > > * igt@i915_pm_dc@dc5-dpms: > > - shard-iclb: [FAIL][95] ([i915#447]) -> [PASS][96] > > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html > > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_dc@dc5-dpms.html > > > > * igt@i915_pm_rpm@system-suspend-devices: > > - shard-iclb: [SKIP][97] ([i915#1316]) -> [PASS][98] > > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html > > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html > > - shard-tglb: [SKIP][99] ([i915#1316]) -> [PASS][100] > > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html > > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@i915_pm_rpm@system-suspend-devices.html > > > > * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: > > - shard-glk: [FAIL][101] ([i915#72]) -> [PASS][102] > > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > > > > * igt@kms_flip@flip-vs-suspend: > > - shard-hsw: [INCOMPLETE][103] ([i915#61]) -> [PASS][104] > > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html > > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@kms_flip@flip-vs-suspend.html > > > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: > > - shard-kbl: [FAIL][105] ([i915#49]) -> [PASS][106] > > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > - shard-glk: [FAIL][107] ([i915#49]) -> [PASS][108] > > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > - shard-apl: [FAIL][109] ([i915#49]) -> [PASS][110] > > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: > > - shard-snb: [DMESG-WARN][111] ([i915#478]) -> [PASS][112] > > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html > > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html > > > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > > - shard-apl: [DMESG-WARN][113] ([i915#180]) -> [PASS][114] > > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > > > * igt@kms_psr@psr2_primary_page_flip: > > - shard-iclb: [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue > > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html > > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html > > > > * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: > > - shard-tglb: [SKIP][117] ([fdo#112015]) -> [PASS][118] > > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html > > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html > > > > * igt@perf_pmu@busy-vcs1: > > - shard-iclb: [SKIP][119] ([fdo#112080]) -> [PASS][120] +15 similar issues > > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html > > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@perf_pmu@busy-vcs1.html > > > > * igt@perf_pmu@most-busy-idle-check-all-bcs0: > > - shard-hsw: [FAIL][121] -> [PASS][122] +1 similar issue > > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html > > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@perf_pmu@most-busy-idle-check-all-bcs0.html > > > > * igt@prime_busy@hang-bsd2: > > - shard-iclb: [SKIP][123] ([fdo#109276]) -> [PASS][124] +20 similar issues > > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html > > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@prime_busy@hang-bsd2.html > > > > > > #### Warnings #### > > > > * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt: > > - shard-hsw: [DMESG-WARN][125] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][126] ([i915#478]) > > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html > > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html > > > > * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt: > > - shard-hsw: [DMESG-WARN][127] ([i915#478]) -> [DMESG-WARN][128] ([fdo#110789] / [i915#478]) > > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > - shard-snb: [DMESG-WARN][129] ([i915#478]) -> [DMESG-WARN][130] ([fdo#110789] / [i915#478]) > > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > > > * igt@i915_pm_dc@dc6-dpms: > > - shard-tglb: [SKIP][131] ([i915#468]) -> [FAIL][132] ([i915#454]) > > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html > > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@i915_pm_dc@dc6-dpms.html > > > > * igt@runner@aborted: > > - shard-kbl: [FAIL][133] ([i915#92]) -> ([FAIL][134], [FAIL][135]) ([i915#1389] / [i915#1402] / [i915#92]) > > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html > > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html > > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html > > - shard-apl: ([FAIL][136], [FAIL][137]) ([fdo#103927] / [i915#1402]) -> [FAIL][138] ([fdo#103927]) > > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html > > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html > > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@runner@aborted.html > > > > > > {name}: This element is suppressed. This means it is ignored when computing > > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > > [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 > > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > > [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 > > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > > [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 > > [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 > > [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 > > [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 > > [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 > > [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 > > [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185 > > [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297 > > [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 > > [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340 > > [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389 > > [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402 > > [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 > > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > > [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 > > [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447 > > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > > [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 > > [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 > > [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 > > [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 > > [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 > > [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 > > [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757 > > [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 > > > > > > Participating hosts (10 -> 8) > > ------------------------------ > > > > Missing (2): pig-skl-6260u pig-glk-j5005 > > > > > > Build changes > > ------------- > > > > * CI: CI-20190529 -> None > > * IGT: IGT_5510 -> IGTPW_4307 > > * Piglit: piglit_4509 -> None > > > > CI-20190529: 20190529 > > CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux > > IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > > > > == Logs == > > > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [Intel-gfx] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-17 10:40 ` [igt-dev] [Intel-gfx] " Petri Latvala @ 2020-03-17 13:59 ` Vudum, Lakshminarayana 2020-03-17 16:32 ` Janusz Krzysztofik 0 siblings, 1 reply; 14+ messages in thread From: Vudum, Lakshminarayana @ 2020-03-17 13:59 UTC (permalink / raw) To: Latvala, Petri, Janusz Krzysztofik Cc: igt-dev@lists.freedesktop.org, intel-gfx@lists.freedesktop.org I had to re-report more than once as there were many issues. All good now. Thanks, Lakshmi. -----Original Message----- From: Latvala, Petri <petri.latvala@intel.com> Sent: Tuesday, March 17, 2020 12:40 PM To: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Cc: igt-dev@lists.freedesktop.org; intel-gfx@lists.freedesktop.org Subject: Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) Lakshmi, see below. On Tue, Mar 17, 2020 at 09:53:51AM +0100, Janusz Krzysztofik wrote: > Hi, > > On Mon, 2020-03-16 at 19:25 +0000, Patchwork wrote: > > == Series Details == > > > > Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) > > URL : https://patchwork.freedesktop.org/series/74201/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > False positive, see below. > > > Serious unknown changes coming with IGTPW_4307_full absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_4307_full, please notify your bug team to allow them > > to document this new failure mode, which will reduce false positives in CI. > > > > External URL: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in IGTPW_4307_full: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@gem_ctx_shared@single-timeline: > > - shard-snb: NOTRUN -> [FAIL][1] > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_shared@single-timeline.html > > - shard-hsw: NOTRUN -> [FAIL][2] +1 similar issue > > [2]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g > > em_ctx_shared@single-timeline.html > > > > * igt@gem_exec_fence@basic-await@vcs0: > > - shard-kbl: [PASS][3] -> [FAIL][4] +3 similar issues > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html > > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html > > - shard-iclb: [PASS][5] -> [FAIL][6] > > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html > > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html > > - shard-apl: [PASS][7] -> [FAIL][8] +2 similar issues > > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html > > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html > > - shard-glk: [PASS][9] -> [FAIL][10] +2 similar issues > > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html > > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html > > - shard-tglb: [PASS][11] -> [FAIL][12] +2 similar issues > > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html > > [12]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@ > > gem_exec_fence@basic-await@vcs0.html > > Not related. > > > > > * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW): > > - shard-iclb: NOTRUN -> [SKIP][13] +7 similar issues > > [13]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@ > > gem_userptr_blits@process-exit-mmap-busy@gtt.html > > > > * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW): > > - shard-tglb: NOTRUN -> [SKIP][14] +11 similar issues > > [14]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@ > > gem_userptr_blits@process-exit-mmap-busy@uc.html > > Expected behavior. > > > > > * igt@gem_wait@wait-rcs0: > > - shard-hsw: [PASS][15] -> [FAIL][16] > > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html > > [16]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g > > em_wait@wait-rcs0.html > > > > * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: > > - shard-snb: [PASS][17] -> [FAIL][18] +1 similar issue > > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html > > [18]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@k > > ms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html > > Not related. > > Thanks, > Janusz > > > > > > > > #### Warnings #### > > > > * igt@gem_exec_reloc@basic-spin-bsd: > > - shard-snb: [FAIL][19] ([i915#757]) -> [TIMEOUT][20] > > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html > > [20]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@g > > em_exec_reloc@basic-spin-bsd.html > > > > > > New tests > > --------- > > > > New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full: > > > > ### New IGT tests (24) ### > > > > * igt@gem_userptr_blits@process-exit-mmap: > > - Statuses : > > - Exec time: [None] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy: > > - Statuses : > > - Exec time: [None] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: > > - Statuses : 7 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@uc: > > - Statuses : 7 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@wb: > > - Statuses : 7 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@wc: > > - Statuses : 7 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap@gtt: > > - Statuses : 6 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap@uc: > > - Statuses : 6 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap@wb: > > - Statuses : 6 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@process-exit-mmap@wc: > > - Statuses : 6 skip(s) > > - Exec time: [0.0] s > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@gtt: > > - Statuses : 3 pass(s) 4 skip(s) > > - Exec time: [0.01] s > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@uc: > > - Statuses : 3 pass(s) 4 skip(s) > > - Exec time: [0.0, 0.00] s > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@wb: > > - Statuses : 3 pass(s) 4 skip(s) > > - Exec time: [0.0, 0.00] s > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@wc: > > - Statuses : 3 pass(s) 4 skip(s) > > - Exec time: [0.0, 0.00] s > > > > * igt@sysfs_heartbeat_interval@idempotent: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_heartbeat_interval@invalid: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_heartbeat_interval@nopreempt: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_heartbeat_interval@off: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_heartbeat_interval@precise: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_preempt_timeout@idempotent: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_preempt_timeout@invalid: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_timeslice_duration@duration: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_timeslice_duration@idempotent: > > - Statuses : > > - Exec time: [None] s > > > > * igt@sysfs_timeslice_duration@timeout: > > - Statuses : > > - Exec time: [None] s > > > > > > > > Known issues > > ------------ > > > > Here are the changes found in IGTPW_4307_full that come from known issues: > > > > ### IGT changes ### > > > > #### Issues hit #### > > > > * igt@gem_ctx_persistence@close-replace-race: > > - shard-kbl: [PASS][21] -> [INCOMPLETE][22] ([i915#1402]) > > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html > > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html > > - shard-glk: [PASS][23] -> [TIMEOUT][24] ([i915#1340]) > > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html > > [24]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@g > > em_ctx_persistence@close-replace-race.html > > > > * igt@gem_ctx_shared@exec-single-timeline-bsd: > > - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#110841]) > > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html > > [26]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@ > > gem_ctx_shared@exec-single-timeline-bsd.html > > > > * igt@gem_exec_schedule@implicit-write-read-bsd1: > > - shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109276] / [i915#677]) > > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html > > [28]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@ > > gem_exec_schedule@implicit-write-read-bsd1.html > > > > * igt@gem_exec_schedule@preempt-other-chain-bsd: > > - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#112146]) +4 similar issues > > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > [30]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@ > > gem_exec_schedule@preempt-other-chain-bsd.html > > > > * igt@gem_exec_schedule@preempt-queue-bsd1: > > - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109276]) +13 similar issues > > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html > > [32]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@ > > gem_exec_schedule@preempt-queue-bsd1.html > > > > * igt@gem_exec_suspend@basic-s3: > > - shard-kbl: [PASS][33] -> [INCOMPLETE][34] ([i915#155]) > > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html > > [34]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@g > > em_exec_suspend@basic-s3.html > > > > * igt@kms_fbcon_fbt@psr-suspend: > > - shard-iclb: [PASS][35] -> [INCOMPLETE][36] ([i915#1185]) > > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html > > [36]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@ > > kms_fbcon_fbt@psr-suspend.html > > > > * igt@kms_flip@flip-vs-expired-vblank: > > - shard-kbl: [PASS][37] -> [DMESG-WARN][38] ([i915#1297]) > > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html > > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html > > - shard-apl: [PASS][39] -> [DMESG-WARN][40] ([i915#1297]) > > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html > > [40]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@k > > ms_flip@flip-vs-expired-vblank.html > > > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: > > - shard-apl: [PASS][41] -> [DMESG-WARN][42] ([i915#180]) > > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > > [42]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@k > > ms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > > > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > > - shard-kbl: [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +3 similar issues > > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > [44]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@k > > ms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > > > * igt@kms_plane_lowres@pipe-c-tiling-x: > > - shard-hsw: [PASS][45] -> [DMESG-WARN][46] ([i915#478]) > > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html > > [46]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@k > > ms_plane_lowres@pipe-c-tiling-x.html > > > > * igt@kms_psr@psr2_sprite_plane_move: > > - shard-iclb: [PASS][47] -> [SKIP][48] ([fdo#109441]) +2 similar issues > > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html > > [48]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@ > > kms_psr@psr2_sprite_plane_move.html > > > > * igt@kms_setmode@basic: > > - shard-apl: [PASS][49] -> [FAIL][50] ([i915#31]) > > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html > > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html > > - shard-glk: [PASS][51] -> [FAIL][52] ([i915#31]) > > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html > > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html > > - shard-kbl: [PASS][53] -> [FAIL][54] ([i915#31]) > > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html > > [54]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@k > > ms_setmode@basic.html > > > > * igt@perf_pmu@busy-no-semaphores-vcs1: > > - shard-iclb: [PASS][55] -> [SKIP][56] ([fdo#112080]) +11 similar issues > > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html > > [56]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@ > > perf_pmu@busy-no-semaphores-vcs1.html > > > > > > #### Possible fixes #### > > > > * igt@gem_ctx_isolation@rcs0-s3: > > - shard-snb: [FAIL][57] -> [PASS][58] +1 similar issue > > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html > > [58]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@g > > em_ctx_isolation@rcs0-s3.html > > > > * igt@gem_ctx_persistence@close-replace-race: > > - shard-tglb: [INCOMPLETE][59] ([i915#1402]) -> [PASS][60] > > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html > > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html > > - shard-apl: [INCOMPLETE][61] ([fdo#103927] / [i915#1402]) -> [PASS][62] > > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html > > [62]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@g > > em_ctx_persistence@close-replace-race.html > > > > * igt@gem_eio@in-flight-contexts-1us: > > - shard-hsw: [TIMEOUT][63] -> [PASS][64] > > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html > > [64]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@g > > em_eio@in-flight-contexts-1us.html > > > > * igt@gem_exec_parallel@bcs0-fds: > > - shard-apl: [FAIL][65] -> [PASS][66] > > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html > > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html > > - shard-iclb: [FAIL][67] -> [PASS][68] > > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html > > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html > > - shard-tglb: [FAIL][69] -> [PASS][70] > > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html > > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html > > - shard-glk: [FAIL][71] -> [PASS][72] > > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html > > [72]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@g > > em_exec_parallel@bcs0-fds.html > > > > * igt@gem_exec_schedule@implicit-read-write-bsd2: > > - shard-iclb: [SKIP][73] ([fdo#109276] / [i915#677]) -> [PASS][74] > > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html > > [74]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@ > > gem_exec_schedule@implicit-read-write-bsd2.html > > > > * igt@gem_exec_schedule@pi-common-bsd: > > - shard-iclb: [SKIP][75] ([i915#677]) -> [PASS][76] +1 similar issue > > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html > > [76]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@ > > gem_exec_schedule@pi-common-bsd.html > > > > * igt@gem_exec_schedule@preempt-hang-render: > > - shard-apl: [SKIP][77] ([fdo#109271]) -> [PASS][78] > > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html > > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html > > - shard-glk: [SKIP][79] ([fdo#109271]) -> [PASS][80] +1 similar issue > > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html > > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html > > - shard-iclb: [SKIP][81] -> [PASS][82] > > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html > > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html > > - shard-tglb: [SKIP][83] -> [PASS][84] > > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html > > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html > > - shard-kbl: [SKIP][85] ([fdo#109271]) -> [PASS][86] > > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html > > [86]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@g > > em_exec_schedule@preempt-hang-render.html > > > > * igt@gem_exec_schedule@reorder-wide-bsd: > > - shard-iclb: [SKIP][87] ([fdo#112146]) -> [PASS][88] +5 similar issues > > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html > > [88]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@ > > gem_exec_schedule@reorder-wide-bsd.html > > > > * igt@gem_userptr_blits@sync-unmap-cycles: > > - shard-snb: [DMESG-WARN][89] ([fdo#111870] / [i915#478]) -> [PASS][90] +1 similar issue > > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html > > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html > > - shard-hsw: [DMESG-WARN][91] ([fdo#111870]) -> [PASS][92] > > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html > > [92]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g > > em_userptr_blits@sync-unmap-cycles.html > > > > * igt@gem_workarounds@suspend-resume-fd: > > - shard-kbl: [DMESG-WARN][93] ([i915#180]) -> [PASS][94] > > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html > > [94]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@g > > em_workarounds@suspend-resume-fd.html > > > > * igt@i915_pm_dc@dc5-dpms: > > - shard-iclb: [FAIL][95] ([i915#447]) -> [PASS][96] > > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html > > [96]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@ > > i915_pm_dc@dc5-dpms.html > > > > * igt@i915_pm_rpm@system-suspend-devices: > > - shard-iclb: [SKIP][97] ([i915#1316]) -> [PASS][98] > > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html > > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html > > - shard-tglb: [SKIP][99] ([i915#1316]) -> [PASS][100] > > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html > > [100]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@ > > i915_pm_rpm@system-suspend-devices.html > > > > * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: > > - shard-glk: [FAIL][101] ([i915#72]) -> [PASS][102] > > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > > [102]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@k > > ms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > > > > * igt@kms_flip@flip-vs-suspend: > > - shard-hsw: [INCOMPLETE][103] ([i915#61]) -> [PASS][104] > > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html > > [104]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@k > > ms_flip@flip-vs-suspend.html > > > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: > > - shard-kbl: [FAIL][105] ([i915#49]) -> [PASS][106] > > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > - shard-glk: [FAIL][107] ([i915#49]) -> [PASS][108] > > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > - shard-apl: [FAIL][109] ([i915#49]) -> [PASS][110] > > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > [110]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@k > > ms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: > > - shard-snb: [DMESG-WARN][111] ([i915#478]) -> [PASS][112] > > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html > > [112]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@k > > ms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html > > > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > > - shard-apl: [DMESG-WARN][113] ([i915#180]) -> [PASS][114] > > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > [114]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@k > > ms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > > > * igt@kms_psr@psr2_primary_page_flip: > > - shard-iclb: [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue > > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html > > [116]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@ > > kms_psr@psr2_primary_page_flip.html > > > > * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: > > - shard-tglb: [SKIP][117] ([fdo#112015]) -> [PASS][118] > > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html > > [118]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@ > > kms_vblank@pipe-d-ts-continuation-modeset-hang.html > > > > * igt@perf_pmu@busy-vcs1: > > - shard-iclb: [SKIP][119] ([fdo#112080]) -> [PASS][120] +15 similar issues > > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html > > [120]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@ > > perf_pmu@busy-vcs1.html > > > > * igt@perf_pmu@most-busy-idle-check-all-bcs0: > > - shard-hsw: [FAIL][121] -> [PASS][122] +1 similar issue > > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html > > [122]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@p > > erf_pmu@most-busy-idle-check-all-bcs0.html > > > > * igt@prime_busy@hang-bsd2: > > - shard-iclb: [SKIP][123] ([fdo#109276]) -> [PASS][124] +20 similar issues > > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html > > [124]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@ > > prime_busy@hang-bsd2.html > > > > > > #### Warnings #### > > > > * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt: > > - shard-hsw: [DMESG-WARN][125] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][126] ([i915#478]) > > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html > > [126]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@g > > em_userptr_blits@map-fixed-invalidate-busy@gtt.html > > > > * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt: > > - shard-hsw: [DMESG-WARN][127] ([i915#478]) -> [DMESG-WARN][128] ([fdo#110789] / [i915#478]) > > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > - shard-snb: [DMESG-WARN][129] ([i915#478]) -> [DMESG-WARN][130] ([fdo#110789] / [i915#478]) > > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > [130]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@g > > em_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > > > * igt@i915_pm_dc@dc6-dpms: > > - shard-tglb: [SKIP][131] ([i915#468]) -> [FAIL][132] ([i915#454]) > > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html > > [132]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@ > > i915_pm_dc@dc6-dpms.html > > > > * igt@runner@aborted: > > - shard-kbl: [FAIL][133] ([i915#92]) -> ([FAIL][134], [FAIL][135]) ([i915#1389] / [i915#1402] / [i915#92]) > > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html > > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html > > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html > > - shard-apl: ([FAIL][136], [FAIL][137]) ([fdo#103927] / [i915#1402]) -> [FAIL][138] ([fdo#103927]) > > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html > > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html > > [138]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@r > > unner@aborted.html > > > > > > {name}: This element is suppressed. This means it is ignored when computing > > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > > [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 > > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > > [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 > > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > > [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 > > [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 > > [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 > > [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 > > [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 > > [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 > > [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185 > > [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297 > > [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 > > [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340 > > [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389 > > [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402 > > [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 > > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > > [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 > > [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447 > > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > > [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 > > [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 > > [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 > > [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 > > [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 > > [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 > > [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757 > > [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 > > > > > > Participating hosts (10 -> 8) > > ------------------------------ > > > > Missing (2): pig-skl-6260u pig-glk-j5005 > > > > > > Build changes > > ------------- > > > > * CI: CI-20190529 -> None > > * IGT: IGT_5510 -> IGTPW_4307 > > * Piglit: piglit_4509 -> None > > > > CI-20190529: 20190529 > > CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux > > IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > > git://anongit.freedesktop.org/piglit > > > > == Logs == > > > > For more details see: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx --------------------------------------------------------------------- Intel Finland Oy Registered Address: PL 281, 00181 Helsinki Business Identity Code: 0357606 - 4 Domiciled in Helsinki This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies. _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [Intel-gfx] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-17 13:59 ` Vudum, Lakshminarayana @ 2020-03-17 16:32 ` Janusz Krzysztofik 0 siblings, 0 replies; 14+ messages in thread From: Janusz Krzysztofik @ 2020-03-17 16:32 UTC (permalink / raw) To: Vudum, Lakshminarayana, Latvala, Petri Cc: igt-dev@lists.freedesktop.org, intel-gfx@lists.freedesktop.org On Tue, 2020-03-17 at 13:59 +0000, Vudum, Lakshminarayana wrote: > I had to re-report more than once as there were many issues. All good now. Thank you :-) Janusz > > Thanks, > Lakshmi. > -----Original Message----- > From: Latvala, Petri <petri.latvala@intel.com> > Sent: Tuesday, March 17, 2020 12:40 PM > To: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> > Cc: igt-dev@lists.freedesktop.org; intel-gfx@lists.freedesktop.org > Subject: Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) > > Lakshmi, see below. > > On Tue, Mar 17, 2020 at 09:53:51AM +0100, Janusz Krzysztofik wrote: > > Hi, > > > > On Mon, 2020-03-16 at 19:25 +0000, Patchwork wrote: > > > == Series Details == > > > > > > Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) > > > URL : https://patchwork.freedesktop.org/series/74201/ > > > State : failure > > > > > > == Summary == > > > > > > CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full > > > ==================================================== > > > > > > Summary > > > ------- > > > > > > **FAILURE** > > > > False positive, see below. > > > > > Serious unknown changes coming with IGTPW_4307_full absolutely need to be > > > verified manually. > > > > > > If you think the reported changes have nothing to do with the changes > > > introduced in IGTPW_4307_full, please notify your bug team to allow them > > > to document this new failure mode, which will reduce false positives in CI. > > > > > > External URL: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > > > > > Possible new issues > > > ------------------- > > > > > > Here are the unknown changes that may have been introduced in IGTPW_4307_full: > > > > > > ### IGT changes ### > > > > > > #### Possible regressions #### > > > > > > * igt@gem_ctx_shared@single-timeline: > > > - shard-snb: NOTRUN -> [FAIL][1] > > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_shared@single-timeline.html > > > - shard-hsw: NOTRUN -> [FAIL][2] +1 similar issue > > > [2]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g > > > em_ctx_shared@single-timeline.html > > > > > > * igt@gem_exec_fence@basic-await@vcs0: > > > - shard-kbl: [PASS][3] -> [FAIL][4] +3 similar issues > > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html > > > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html > > > - shard-iclb: [PASS][5] -> [FAIL][6] > > > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html > > > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html > > > - shard-apl: [PASS][7] -> [FAIL][8] +2 similar issues > > > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html > > > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html > > > - shard-glk: [PASS][9] -> [FAIL][10] +2 similar issues > > > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html > > > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html > > > - shard-tglb: [PASS][11] -> [FAIL][12] +2 similar issues > > > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html > > > [12]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@ > > > gem_exec_fence@basic-await@vcs0.html > > > > Not related. > > > > > * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW): > > > - shard-iclb: NOTRUN -> [SKIP][13] +7 similar issues > > > [13]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@ > > > gem_userptr_blits@process-exit-mmap-busy@gtt.html > > > > > > * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW): > > > - shard-tglb: NOTRUN -> [SKIP][14] +11 similar issues > > > [14]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@ > > > gem_userptr_blits@process-exit-mmap-busy@uc.html > > > > Expected behavior. > > > > > * igt@gem_wait@wait-rcs0: > > > - shard-hsw: [PASS][15] -> [FAIL][16] > > > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html > > > [16]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g > > > em_wait@wait-rcs0.html > > > > > > * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: > > > - shard-snb: [PASS][17] -> [FAIL][18] +1 similar issue > > > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html > > > [18]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@k > > > ms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html > > > > Not related. > > > > Thanks, > > Janusz > > > > > > > > > > #### Warnings #### > > > > > > * igt@gem_exec_reloc@basic-spin-bsd: > > > - shard-snb: [FAIL][19] ([i915#757]) -> [TIMEOUT][20] > > > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html > > > [20]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@g > > > em_exec_reloc@basic-spin-bsd.html > > > > > > > > > New tests > > > --------- > > > > > > New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full: > > > > > > ### New IGT tests (24) ### > > > > > > * igt@gem_userptr_blits@process-exit-mmap: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@gem_userptr_blits@process-exit-mmap-busy: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: > > > - Statuses : 7 skip(s) > > > - Exec time: [0.0] s > > > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@uc: > > > - Statuses : 7 skip(s) > > > - Exec time: [0.0] s > > > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@wb: > > > - Statuses : 7 skip(s) > > > - Exec time: [0.0] s > > > > > > * igt@gem_userptr_blits@process-exit-mmap-busy@wc: > > > - Statuses : 7 skip(s) > > > - Exec time: [0.0] s > > > > > > * igt@gem_userptr_blits@process-exit-mmap@gtt: > > > - Statuses : 6 skip(s) > > > - Exec time: [0.0] s > > > > > > * igt@gem_userptr_blits@process-exit-mmap@uc: > > > - Statuses : 6 skip(s) > > > - Exec time: [0.0] s > > > > > > * igt@gem_userptr_blits@process-exit-mmap@wb: > > > - Statuses : 6 skip(s) > > > - Exec time: [0.0] s > > > > > > * igt@gem_userptr_blits@process-exit-mmap@wc: > > > - Statuses : 6 skip(s) > > > - Exec time: [0.0] s > > > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@gtt: > > > - Statuses : 3 pass(s) 4 skip(s) > > > - Exec time: [0.01] s > > > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@uc: > > > - Statuses : 3 pass(s) 4 skip(s) > > > - Exec time: [0.0, 0.00] s > > > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@wb: > > > - Statuses : 3 pass(s) 4 skip(s) > > > - Exec time: [0.0, 0.00] s > > > > > > * igt@gem_userptr_blits@readonly-mmap-unsync@wc: > > > - Statuses : 3 pass(s) 4 skip(s) > > > - Exec time: [0.0, 0.00] s > > > > > > * igt@sysfs_heartbeat_interval@idempotent: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@sysfs_heartbeat_interval@invalid: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@sysfs_heartbeat_interval@nopreempt: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@sysfs_heartbeat_interval@off: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@sysfs_heartbeat_interval@precise: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@sysfs_preempt_timeout@idempotent: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@sysfs_preempt_timeout@invalid: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@sysfs_timeslice_duration@duration: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@sysfs_timeslice_duration@idempotent: > > > - Statuses : > > > - Exec time: [None] s > > > > > > * igt@sysfs_timeslice_duration@timeout: > > > - Statuses : > > > - Exec time: [None] s > > > > > > > > > > > > Known issues > > > ------------ > > > > > > Here are the changes found in IGTPW_4307_full that come from known issues: > > > > > > ### IGT changes ### > > > > > > #### Issues hit #### > > > > > > * igt@gem_ctx_persistence@close-replace-race: > > > - shard-kbl: [PASS][21] -> [INCOMPLETE][22] ([i915#1402]) > > > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html > > > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html > > > - shard-glk: [PASS][23] -> [TIMEOUT][24] ([i915#1340]) > > > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html > > > [24]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@g > > > em_ctx_persistence@close-replace-race.html > > > > > > * igt@gem_ctx_shared@exec-single-timeline-bsd: > > > - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#110841]) > > > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html > > > [26]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@ > > > gem_ctx_shared@exec-single-timeline-bsd.html > > > > > > * igt@gem_exec_schedule@implicit-write-read-bsd1: > > > - shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109276] / [i915#677]) > > > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html > > > [28]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@ > > > gem_exec_schedule@implicit-write-read-bsd1.html > > > > > > * igt@gem_exec_schedule@preempt-other-chain-bsd: > > > - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#112146]) +4 similar issues > > > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > > [30]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@ > > > gem_exec_schedule@preempt-other-chain-bsd.html > > > > > > * igt@gem_exec_schedule@preempt-queue-bsd1: > > > - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109276]) +13 similar issues > > > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html > > > [32]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@ > > > gem_exec_schedule@preempt-queue-bsd1.html > > > > > > * igt@gem_exec_suspend@basic-s3: > > > - shard-kbl: [PASS][33] -> [INCOMPLETE][34] ([i915#155]) > > > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html > > > [34]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@g > > > em_exec_suspend@basic-s3.html > > > > > > * igt@kms_fbcon_fbt@psr-suspend: > > > - shard-iclb: [PASS][35] -> [INCOMPLETE][36] ([i915#1185]) > > > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html > > > [36]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@ > > > kms_fbcon_fbt@psr-suspend.html > > > > > > * igt@kms_flip@flip-vs-expired-vblank: > > > - shard-kbl: [PASS][37] -> [DMESG-WARN][38] ([i915#1297]) > > > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html > > > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html > > > - shard-apl: [PASS][39] -> [DMESG-WARN][40] ([i915#1297]) > > > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html > > > [40]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@k > > > ms_flip@flip-vs-expired-vblank.html > > > > > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: > > > - shard-apl: [PASS][41] -> [DMESG-WARN][42] ([i915#180]) > > > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > > > [42]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@k > > > ms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html > > > > > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > > > - shard-kbl: [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +3 similar issues > > > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > > [44]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@k > > > ms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > > > > > * igt@kms_plane_lowres@pipe-c-tiling-x: > > > - shard-hsw: [PASS][45] -> [DMESG-WARN][46] ([i915#478]) > > > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html > > > [46]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@k > > > ms_plane_lowres@pipe-c-tiling-x.html > > > > > > * igt@kms_psr@psr2_sprite_plane_move: > > > - shard-iclb: [PASS][47] -> [SKIP][48] ([fdo#109441]) +2 similar issues > > > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html > > > [48]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@ > > > kms_psr@psr2_sprite_plane_move.html > > > > > > * igt@kms_setmode@basic: > > > - shard-apl: [PASS][49] -> [FAIL][50] ([i915#31]) > > > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html > > > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html > > > - shard-glk: [PASS][51] -> [FAIL][52] ([i915#31]) > > > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html > > > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html > > > - shard-kbl: [PASS][53] -> [FAIL][54] ([i915#31]) > > > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html > > > [54]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@k > > > ms_setmode@basic.html > > > > > > * igt@perf_pmu@busy-no-semaphores-vcs1: > > > - shard-iclb: [PASS][55] -> [SKIP][56] ([fdo#112080]) +11 similar issues > > > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html > > > [56]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@ > > > perf_pmu@busy-no-semaphores-vcs1.html > > > > > > > > > #### Possible fixes #### > > > > > > * igt@gem_ctx_isolation@rcs0-s3: > > > - shard-snb: [FAIL][57] -> [PASS][58] +1 similar issue > > > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html > > > [58]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@g > > > em_ctx_isolation@rcs0-s3.html > > > > > > * igt@gem_ctx_persistence@close-replace-race: > > > - shard-tglb: [INCOMPLETE][59] ([i915#1402]) -> [PASS][60] > > > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html > > > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html > > > - shard-apl: [INCOMPLETE][61] ([fdo#103927] / [i915#1402]) -> [PASS][62] > > > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html > > > [62]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@g > > > em_ctx_persistence@close-replace-race.html > > > > > > * igt@gem_eio@in-flight-contexts-1us: > > > - shard-hsw: [TIMEOUT][63] -> [PASS][64] > > > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html > > > [64]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@g > > > em_eio@in-flight-contexts-1us.html > > > > > > * igt@gem_exec_parallel@bcs0-fds: > > > - shard-apl: [FAIL][65] -> [PASS][66] > > > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html > > > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html > > > - shard-iclb: [FAIL][67] -> [PASS][68] > > > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html > > > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html > > > - shard-tglb: [FAIL][69] -> [PASS][70] > > > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html > > > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html > > > - shard-glk: [FAIL][71] -> [PASS][72] > > > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html > > > [72]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@g > > > em_exec_parallel@bcs0-fds.html > > > > > > * igt@gem_exec_schedule@implicit-read-write-bsd2: > > > - shard-iclb: [SKIP][73] ([fdo#109276] / [i915#677]) -> [PASS][74] > > > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html > > > [74]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@ > > > gem_exec_schedule@implicit-read-write-bsd2.html > > > > > > * igt@gem_exec_schedule@pi-common-bsd: > > > - shard-iclb: [SKIP][75] ([i915#677]) -> [PASS][76] +1 similar issue > > > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html > > > [76]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@ > > > gem_exec_schedule@pi-common-bsd.html > > > > > > * igt@gem_exec_schedule@preempt-hang-render: > > > - shard-apl: [SKIP][77] ([fdo#109271]) -> [PASS][78] > > > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html > > > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html > > > - shard-glk: [SKIP][79] ([fdo#109271]) -> [PASS][80] +1 similar issue > > > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html > > > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html > > > - shard-iclb: [SKIP][81] -> [PASS][82] > > > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html > > > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html > > > - shard-tglb: [SKIP][83] -> [PASS][84] > > > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html > > > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html > > > - shard-kbl: [SKIP][85] ([fdo#109271]) -> [PASS][86] > > > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html > > > [86]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@g > > > em_exec_schedule@preempt-hang-render.html > > > > > > * igt@gem_exec_schedule@reorder-wide-bsd: > > > - shard-iclb: [SKIP][87] ([fdo#112146]) -> [PASS][88] +5 similar issues > > > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html > > > [88]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@ > > > gem_exec_schedule@reorder-wide-bsd.html > > > > > > * igt@gem_userptr_blits@sync-unmap-cycles: > > > - shard-snb: [DMESG-WARN][89] ([fdo#111870] / [i915#478]) -> [PASS][90] +1 similar issue > > > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html > > > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html > > > - shard-hsw: [DMESG-WARN][91] ([fdo#111870]) -> [PASS][92] > > > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html > > > [92]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g > > > em_userptr_blits@sync-unmap-cycles.html > > > > > > * igt@gem_workarounds@suspend-resume-fd: > > > - shard-kbl: [DMESG-WARN][93] ([i915#180]) -> [PASS][94] > > > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html > > > [94]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@g > > > em_workarounds@suspend-resume-fd.html > > > > > > * igt@i915_pm_dc@dc5-dpms: > > > - shard-iclb: [FAIL][95] ([i915#447]) -> [PASS][96] > > > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html > > > [96]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@ > > > i915_pm_dc@dc5-dpms.html > > > > > > * igt@i915_pm_rpm@system-suspend-devices: > > > - shard-iclb: [SKIP][97] ([i915#1316]) -> [PASS][98] > > > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html > > > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html > > > - shard-tglb: [SKIP][99] ([i915#1316]) -> [PASS][100] > > > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html > > > [100]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@ > > > i915_pm_rpm@system-suspend-devices.html > > > > > > * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: > > > - shard-glk: [FAIL][101] ([i915#72]) -> [PASS][102] > > > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > > > [102]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@k > > > ms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > > > > > > * igt@kms_flip@flip-vs-suspend: > > > - shard-hsw: [INCOMPLETE][103] ([i915#61]) -> [PASS][104] > > > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html > > > [104]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@k > > > ms_flip@flip-vs-suspend.html > > > > > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: > > > - shard-kbl: [FAIL][105] ([i915#49]) -> [PASS][106] > > > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > > - shard-glk: [FAIL][107] ([i915#49]) -> [PASS][108] > > > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > > - shard-apl: [FAIL][109] ([i915#49]) -> [PASS][110] > > > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > > [110]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@k > > > ms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > > > > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: > > > - shard-snb: [DMESG-WARN][111] ([i915#478]) -> [PASS][112] > > > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html > > > [112]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@k > > > ms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html > > > > > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > > > - shard-apl: [DMESG-WARN][113] ([i915#180]) -> [PASS][114] > > > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > > [114]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@k > > > ms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > > > > > * igt@kms_psr@psr2_primary_page_flip: > > > - shard-iclb: [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue > > > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html > > > [116]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@ > > > kms_psr@psr2_primary_page_flip.html > > > > > > * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: > > > - shard-tglb: [SKIP][117] ([fdo#112015]) -> [PASS][118] > > > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html > > > [118]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@ > > > kms_vblank@pipe-d-ts-continuation-modeset-hang.html > > > > > > * igt@perf_pmu@busy-vcs1: > > > - shard-iclb: [SKIP][119] ([fdo#112080]) -> [PASS][120] +15 similar issues > > > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html > > > [120]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@ > > > perf_pmu@busy-vcs1.html > > > > > > * igt@perf_pmu@most-busy-idle-check-all-bcs0: > > > - shard-hsw: [FAIL][121] -> [PASS][122] +1 similar issue > > > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html > > > [122]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@p > > > erf_pmu@most-busy-idle-check-all-bcs0.html > > > > > > * igt@prime_busy@hang-bsd2: > > > - shard-iclb: [SKIP][123] ([fdo#109276]) -> [PASS][124] +20 similar issues > > > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html > > > [124]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@ > > > prime_busy@hang-bsd2.html > > > > > > > > > #### Warnings #### > > > > > > * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt: > > > - shard-hsw: [DMESG-WARN][125] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][126] ([i915#478]) > > > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html > > > [126]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@g > > > em_userptr_blits@map-fixed-invalidate-busy@gtt.html > > > > > > * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt: > > > - shard-hsw: [DMESG-WARN][127] ([i915#478]) -> [DMESG-WARN][128] ([fdo#110789] / [i915#478]) > > > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > > - shard-snb: [DMESG-WARN][129] ([i915#478]) -> [DMESG-WARN][130] ([fdo#110789] / [i915#478]) > > > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > > [130]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@g > > > em_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html > > > > > > * igt@i915_pm_dc@dc6-dpms: > > > - shard-tglb: [SKIP][131] ([i915#468]) -> [FAIL][132] ([i915#454]) > > > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html > > > [132]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@ > > > i915_pm_dc@dc6-dpms.html > > > > > > * igt@runner@aborted: > > > - shard-kbl: [FAIL][133] ([i915#92]) -> ([FAIL][134], [FAIL][135]) ([i915#1389] / [i915#1402] / [i915#92]) > > > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html > > > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html > > > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html > > > - shard-apl: ([FAIL][136], [FAIL][137]) ([fdo#103927] / [i915#1402]) -> [FAIL][138] ([fdo#103927]) > > > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html > > > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html > > > [138]: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@r > > > unner@aborted.html > > > > > > > > > {name}: This element is suppressed. This means it is ignored when computing > > > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > > > > [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 > > > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > > > [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 > > > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > > > [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 > > > [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 > > > [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 > > > [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 > > > [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 > > > [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 > > > [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185 > > > [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297 > > > [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 > > > [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340 > > > [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389 > > > [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402 > > > [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 > > > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > > > [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 > > > [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447 > > > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > > > [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 > > > [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 > > > [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 > > > [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 > > > [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 > > > [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 > > > [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757 > > > [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 > > > > > > > > > Participating hosts (10 -> 8) > > > ------------------------------ > > > > > > Missing (2): pig-skl-6260u pig-glk-j5005 > > > > > > > > > Build changes > > > ------------- > > > > > > * CI: CI-20190529 -> None > > > * IGT: IGT_5510 -> IGTPW_4307 > > > * Piglit: piglit_4509 -> None > > > > > > CI-20190529: 20190529 > > > CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux > > > IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > > IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > > > git://anongit.freedesktop.org/piglit > > > > > > == Logs == > > > > > > For more details see: > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html > > > > _______________________________________________ > > Intel-gfx mailing list > > Intel-gfx@lists.freedesktop.org > > https://lists.freedesktop.org/mailman/listinfo/intel-gfx _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik ` (3 preceding siblings ...) 2020-03-16 19:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-03-17 10:50 ` Patchwork 2020-03-17 11:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2020-03-17 10:50 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev == Series Details == Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) URL : https://patchwork.freedesktop.org/series/74201/ State : failure == Summary == CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4307_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4307_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4307_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_fence@basic-await@vcs0: - shard-kbl: [PASS][1] -> [FAIL][2] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html - shard-iclb: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html - shard-apl: [PASS][5] -> [FAIL][6] +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html - shard-glk: [PASS][7] -> [FAIL][8] +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html - shard-tglb: [PASS][9] -> [FAIL][10] +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs0.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-hsw: NOTRUN -> [FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_exec_whisper@basic-fds-forked-all.html * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW): - shard-iclb: NOTRUN -> [SKIP][12] +7 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW): - shard-tglb: NOTRUN -> [SKIP][13] +11 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html * igt@gem_wait@wait-rcs0: - shard-hsw: [PASS][14] -> [FAIL][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_wait@wait-rcs0.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-snb: [PASS][16] -> [FAIL][17] +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html #### Warnings #### * igt@gem_exec_reloc@basic-spin-bsd: - shard-snb: [FAIL][18] ([i915#757]) -> [TIMEOUT][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@gem_exec_reloc@basic-spin-bsd.html New tests --------- New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full: ### New IGT tests (17) ### * igt@gem_userptr_blits@process-exit-mmap: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@uc: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wb: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wc: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@gtt: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@uc: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wb: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wc: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@readonly-mmap-unsync@gtt: - Statuses : 3 pass(s) 4 skip(s) - Exec time: [0.01] s * igt@gem_userptr_blits@readonly-mmap-unsync@uc: - Statuses : 3 pass(s) 4 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wb: - Statuses : 3 pass(s) 4 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wc: - Statuses : 3 pass(s) 4 skip(s) - Exec time: [0.0, 0.00] s * igt@sysfs_heartbeat_interval@off: - Statuses : - Exec time: [None] s * igt@sysfs_heartbeat_interval@precise: - Statuses : - Exec time: [None] s * igt@sysfs_preempt_timeout@idempotent: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_4307_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@close-replace-race: - shard-kbl: [PASS][20] -> [INCOMPLETE][21] ([i915#1402]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html - shard-glk: [PASS][22] -> [TIMEOUT][23] ([i915#1340]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@gem_ctx_persistence@close-replace-race.html * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][24] -> [SKIP][25] ([fdo#110841]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_schedule@implicit-write-read-bsd1: - shard-iclb: [PASS][26] -> [SKIP][27] ([fdo#109276] / [i915#677]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd1.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][28] -> [SKIP][29] ([fdo#112146]) +4 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd1: - shard-iclb: [PASS][30] -> [SKIP][31] ([fdo#109276]) +13 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html * igt@gem_exec_suspend@basic-s3: - shard-kbl: [PASS][32] -> [INCOMPLETE][33] ([i915#155]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_exec_suspend@basic-s3.html * igt@kms_fbcon_fbt@psr-suspend: - shard-iclb: [PASS][34] -> [INCOMPLETE][35] ([i915#1185]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-expired-vblank: - shard-kbl: [PASS][36] -> [DMESG-WARN][37] ([i915#1297]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html - shard-apl: [PASS][38] -> [DMESG-WARN][39] ([i915#1297]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [PASS][40] -> [DMESG-WARN][41] ([i915#180]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][42] -> [DMESG-WARN][43] ([i915#180]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_lowres@pipe-c-tiling-x: - shard-hsw: [PASS][44] -> [DMESG-WARN][45] ([i915#478]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][46] -> [SKIP][47] ([fdo#109441]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic: - shard-apl: [PASS][48] -> [FAIL][49] ([i915#31]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html - shard-glk: [PASS][50] -> [FAIL][51] ([i915#31]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html - shard-kbl: [PASS][52] -> [FAIL][53] ([i915#31]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_setmode@basic.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][54] -> [SKIP][55] ([fdo#112080]) +11 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html #### Possible fixes #### * igt@gem_ctx_isolation@rcs0-s3: - shard-snb: [FAIL][56] -> [PASS][57] +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_persistence@close-replace-race: - shard-tglb: [INCOMPLETE][58] ([i915#1402]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html - shard-apl: [INCOMPLETE][60] ([fdo#103927] / [i915#1402]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html * igt@gem_eio@in-flight-contexts-1us: - shard-hsw: [TIMEOUT][62] -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_exec_parallel@bcs0-fds: - shard-apl: [FAIL][64] -> [PASS][65] [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html - shard-iclb: [FAIL][66] -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html - shard-tglb: [FAIL][68] -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html - shard-glk: [FAIL][70] -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_parallel@bcs0-fds.html * igt@gem_exec_schedule@implicit-read-write-bsd2: - shard-iclb: [SKIP][72] ([fdo#109276] / [i915#677]) -> [PASS][73] [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@implicit-read-write-bsd2.html * igt@gem_exec_schedule@pi-common-bsd: - shard-iclb: [SKIP][74] ([i915#677]) -> [PASS][75] +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd.html * igt@gem_exec_schedule@preempt-hang-render: - shard-apl: [SKIP][76] ([fdo#109271]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html - shard-glk: [SKIP][78] ([fdo#109271]) -> [PASS][79] +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html - shard-iclb: [SKIP][80] ([i915#1467]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html - shard-tglb: [SKIP][82] ([i915#1467]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html - shard-kbl: [SKIP][84] ([fdo#109271]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@gem_exec_schedule@preempt-hang-render.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [SKIP][86] ([fdo#112146]) -> [PASS][87] +5 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-snb: [DMESG-WARN][88] ([fdo#111870] / [i915#478]) -> [PASS][89] +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html - shard-hsw: [DMESG-WARN][90] ([fdo#111870]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [DMESG-WARN][92] ([i915#180]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_dc@dc5-dpms: - shard-iclb: [FAIL][94] ([i915#447]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_dc@dc5-dpms.html * igt@i915_pm_rpm@system-suspend-devices: - shard-iclb: [SKIP][96] ([i915#1316]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html - shard-tglb: [SKIP][98] ([i915#1316]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@i915_pm_rpm@system-suspend-devices.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [FAIL][100] ([i915#72]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [INCOMPLETE][102] ([i915#61]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-kbl: [FAIL][104] ([i915#49]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html - shard-glk: [FAIL][106] ([i915#49]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html - shard-apl: [FAIL][108] ([i915#49]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-snb: [DMESG-WARN][110] ([i915#478]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-apl: [DMESG-WARN][112] ([i915#180]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][114] ([fdo#109441]) -> [PASS][115] +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: - shard-tglb: [SKIP][116] ([fdo#112015]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html * igt@perf_pmu@busy-vcs1: - shard-iclb: [SKIP][118] ([fdo#112080]) -> [PASS][119] +15 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@perf_pmu@busy-vcs1.html * igt@perf_pmu@most-busy-idle-check-all-bcs0: - shard-hsw: [FAIL][120] -> [PASS][121] +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@perf_pmu@most-busy-idle-check-all-bcs0.html * igt@prime_busy@hang-bsd2: - shard-iclb: [SKIP][122] ([fdo#109276]) -> [PASS][123] +20 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@prime_busy@hang-bsd2.html #### Warnings #### * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt: - shard-hsw: [DMESG-WARN][124] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][125] ([i915#478]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt: - shard-hsw: [DMESG-WARN][126] ([i915#478]) -> [DMESG-WARN][127] ([fdo#110789] / [i915#478]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html - shard-snb: [DMESG-WARN][128] ([i915#478]) -> [DMESG-WARN][129] ([fdo#110789] / [i915#478]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: [SKIP][130] ([i915#468]) -> [FAIL][131] ([i915#454]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@i915_pm_dc@dc6-dpms.html * igt@runner@aborted: - shard-kbl: [FAIL][132] ([i915#92]) -> ([FAIL][133], [FAIL][134]) ([i915#1389] / [i915#1402] / [i915#92]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html - shard-apl: ([FAIL][135], [FAIL][136]) ([fdo#103927] / [i915#1402]) -> [FAIL][137] ([fdo#103927]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185 [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297 [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340 [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389 [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402 [i915#1467]: https://gitlab.freedesktop.org/drm/intel/issues/1467 [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757 [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5510 -> IGTPW_4307 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik ` (4 preceding siblings ...) 2020-03-17 10:50 ` [igt-dev] " Patchwork @ 2020-03-17 11:33 ` Patchwork 2020-03-17 13:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2020-03-17 11:33 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev == Series Details == Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) URL : https://patchwork.freedesktop.org/series/74201/ State : success == Summary == CI Bug Log - changes from CI_DRM_8137 -> IGTPW_4307 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html Known issues ------------ Here are the changes found in IGTPW_4307 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-cfl-8700k: [INCOMPLETE][1] ([i915#656]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/fi-cfl-8700k/igt@i915_selftest@live@execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/fi-cfl-8700k/igt@i915_selftest@live@execlists.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [FAIL][3] ([i915#217]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html - fi-kbl-7500u: [FAIL][5] ([i915#323]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656 Participating hosts (48 -> 45) ------------------------------ Additional (2): fi-skl-6770hq fi-tgl-dsi Missing (5): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5510 -> IGTPW_4307 CI-20190529: 20190529 CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_userptr_blits@process-exit-mmap +igt@gem_userptr_blits@process-exit-mmap-busy -igt@gem_userptr_blits@process-exit-gtt -igt@gem_userptr_blits@process-exit-gtt-busy == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik ` (5 preceding siblings ...) 2020-03-17 11:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2020-03-17 13:01 ` Patchwork 2020-03-17 13:54 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2020-03-17 17:18 ` Patchwork 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2020-03-17 13:01 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev == Series Details == Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) URL : https://patchwork.freedesktop.org/series/74201/ State : failure == Summary == CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4307_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4307_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4307_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_fence@basic-await@rcs0: - shard-kbl: [PASS][1] -> [FAIL][2] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@rcs0.html * igt@gem_exec_fence@basic-await@vcs1: - shard-tglb: [PASS][3] -> [FAIL][4] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs1.html * igt@gem_exec_fence@basic-await@vecs0: - shard-glk: [PASS][5] -> ([FAIL][6], [FAIL][7]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vecs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@gem_exec_fence@basic-await@vecs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vecs0.html - shard-apl: [PASS][8] -> [FAIL][9] +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vecs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vecs0.html * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW): - shard-iclb: NOTRUN -> ([SKIP][10], [SKIP][11]) +7 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW): - shard-tglb: NOTRUN -> [SKIP][12] +11 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html * {igt@gem_userptr_blits@process-exit-mmap@wc} (NEW): - shard-iclb: NOTRUN -> [SKIP][13] +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_userptr_blits@process-exit-mmap@wc.html #### Warnings #### * igt@gem_exec_reloc@basic-spin-bsd: - shard-snb: [FAIL][14] ([i915#757]) -> [TIMEOUT][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@gem_exec_reloc@basic-spin-bsd.html New tests --------- New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full: ### New IGT tests (17) ### * igt@gem_userptr_blits@process-exit-mmap: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: - Statuses : 10 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@uc: - Statuses : 10 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wb: - Statuses : 10 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wc: - Statuses : 10 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@gtt: - Statuses : 9 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@uc: - Statuses : 9 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wb: - Statuses : 9 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wc: - Statuses : 9 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@readonly-mmap-unsync@gtt: - Statuses : 5 pass(s) 5 skip(s) - Exec time: [0.01] s * igt@gem_userptr_blits@readonly-mmap-unsync@uc: - Statuses : 5 pass(s) 5 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wb: - Statuses : 5 pass(s) 5 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wc: - Statuses : 5 pass(s) 5 skip(s) - Exec time: [0.0, 0.00] s * igt@sysfs_heartbeat_interval@off: - Statuses : - Exec time: [None] s * igt@sysfs_heartbeat_interval@precise: - Statuses : - Exec time: [None] s * igt@sysfs_preempt_timeout@idempotent: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_4307_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@close-replace-race: - shard-kbl: [PASS][16] -> [INCOMPLETE][17] ([i915#1402]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html - shard-glk: [PASS][18] -> ([INCOMPLETE][19], [TIMEOUT][20]) ([i915#1340] / [i915#1402] / [i915#58] / [k.org#198133]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_ctx_persistence@close-replace-race.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@gem_ctx_persistence@close-replace-race.html * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][21] -> ([SKIP][22], [SKIP][23]) ([fdo#110841]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_fence@basic-await@vcs0: - shard-kbl: [PASS][24] -> [FAIL][25] ([i915#1472]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html - shard-iclb: [PASS][26] -> ([FAIL][27], [FAIL][28]) ([i915#1472]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_fence@basic-await@vcs0.html - shard-apl: [PASS][29] -> [FAIL][30] ([i915#1472]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html - shard-glk: [PASS][31] -> ([FAIL][32], [FAIL][33]) ([i915#1472]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@gem_exec_fence@basic-await@vcs0.html - shard-tglb: [PASS][34] -> [FAIL][35] ([i915#1472]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs0.html * igt@gem_exec_schedule@implicit-both-bsd: - shard-iclb: [PASS][36] -> ([SKIP][37], [PASS][38]) ([i915#677]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@implicit-both-bsd.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_schedule@implicit-both-bsd.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_exec_schedule@implicit-both-bsd.html * igt@gem_exec_schedule@implicit-write-read-bsd1: - shard-iclb: [PASS][39] -> ([SKIP][40], [PASS][41]) ([fdo#109276] / [i915#677]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd1.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_schedule@implicit-write-read-bsd1.html * igt@gem_exec_schedule@preempt-contexts-bsd: - shard-iclb: [PASS][42] -> ([SKIP][43], [SKIP][44]) ([fdo#112146]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-contexts-bsd.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@gem_exec_schedule@preempt-contexts-bsd.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-contexts-bsd.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][45] -> ([PASS][46], [SKIP][47]) ([fdo#112146]) +6 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@preempt-other-chain-bsd.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd1: - shard-iclb: [PASS][48] -> ([SKIP][49], [SKIP][50]) ([fdo#109276]) +5 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@preempt-queue-bsd1.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html * igt@gem_exec_suspend@basic-s3: - shard-kbl: [PASS][51] -> [INCOMPLETE][52] ([i915#155]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_exec_suspend@basic-s3.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [PASS][53] -> ([PASS][54], [FAIL][55]) ([i915#644]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_wait@wait-rcs0: - shard-hsw: [PASS][56] -> [FAIL][57] ([i915#1462]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_wait@wait-rcs0.html - shard-snb: [PASS][58] -> [FAIL][59] ([i915#1462]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_wait@wait-rcs0.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@gem_wait@wait-rcs0.html * igt@i915_pm_rps@waitboost: - shard-iclb: [PASS][60] -> ([PASS][61], [FAIL][62]) ([i915#413]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@i915_pm_rps@waitboost.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_rps@waitboost.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@i915_pm_rps@waitboost.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-snb: [PASS][63] -> [FAIL][64] ([i915#1471]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html * igt@kms_fbcon_fbt@psr-suspend: - shard-iclb: [PASS][65] -> ([INCOMPLETE][66], [PASS][67]) ([i915#1185]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-expired-vblank: - shard-kbl: [PASS][68] -> [DMESG-WARN][69] ([i915#1297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html - shard-apl: [PASS][70] -> ([DMESG-WARN][71], [DMESG-WARN][72]) ([i915#1297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [PASS][73] -> ([PASS][74], [DMESG-WARN][75]) ([i915#180]) +3 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][76] -> [DMESG-WARN][77] ([i915#180]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_lowres@pipe-c-tiling-x: - shard-hsw: [PASS][78] -> [DMESG-WARN][79] ([i915#478]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][80] -> ([SKIP][81], [SKIP][82]) ([fdo#109441]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@kms_psr@psr2_cursor_render.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][83] -> ([PASS][84], [SKIP][85]) ([fdo#109441]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic: - shard-apl: [PASS][86] -> ([FAIL][87], [PASS][88]) ([i915#31]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_setmode@basic.html - shard-glk: [PASS][89] -> ([FAIL][90], [FAIL][91]) ([i915#31]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk1/igt@kms_setmode@basic.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html - shard-kbl: [PASS][92] -> [FAIL][93] ([i915#31]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_setmode@basic.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][94] -> ([SKIP][95], [PASS][96]) ([fdo#112080]) +5 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html * igt@perf_pmu@busy-start-vcs1: - shard-iclb: [PASS][97] -> [SKIP][98] ([fdo#112080]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-start-vcs1.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@perf_pmu@busy-start-vcs1.html * igt@perf_pmu@init-busy-vcs1: - shard-iclb: [PASS][99] -> ([SKIP][100], [SKIP][101]) ([fdo#112080]) +4 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@perf_pmu@init-busy-vcs1.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@perf_pmu@init-busy-vcs1.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@perf_pmu@init-busy-vcs1.html * igt@prime_busy@wait-after-bsd2: - shard-iclb: [PASS][102] -> [SKIP][103] ([fdo#109276]) +3 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@prime_busy@wait-after-bsd2.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@prime_busy@wait-after-bsd2.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [PASS][104] -> ([PASS][105], [SKIP][106]) ([fdo#109276]) +12 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@prime_vgem@fence-wait-bsd2.html #### Possible fixes #### * igt@gem_ctx_isolation@rcs0-s3: - shard-snb: [FAIL][107] ([i915#1462]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html - shard-hsw: [FAIL][109] ([i915#1462]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_ctx_isolation@rcs0-s3.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_persistence@close-replace-race: - shard-tglb: [INCOMPLETE][111] ([i915#1402]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html - shard-apl: [INCOMPLETE][113] ([fdo#103927] / [i915#1402]) -> ([PASS][114], [PASS][115]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_ctx_persistence@close-replace-race.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html * igt@gem_eio@in-flight-contexts-1us: - shard-hsw: [TIMEOUT][116] -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_exec_parallel@bcs0-fds: - shard-apl: [FAIL][118] ([i915#1470]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html - shard-iclb: [FAIL][120] ([i915#1470]) -> ([PASS][121], [PASS][122]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_exec_parallel@bcs0-fds.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html - shard-tglb: [FAIL][123] ([i915#1470]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html - shard-glk: [FAIL][125] ([i915#1470]) -> ([PASS][126], [PASS][127]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk6/igt@gem_exec_parallel@bcs0-fds.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_parallel@bcs0-fds.html * igt@gem_exec_parallel@vcs1: - shard-iclb: [SKIP][128] ([fdo#112080]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_exec_parallel@vcs1.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@vcs1.html * igt@gem_exec_schedule@out-order-bsd2: - shard-iclb: [SKIP][130] ([fdo#109276]) -> [PASS][131] +5 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_exec_schedule@out-order-bsd2.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_schedule@out-order-bsd2.html * igt@gem_exec_schedule@pi-common-bsd: - shard-iclb: [SKIP][132] ([i915#677]) -> ([PASS][133], [PASS][134]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@pi-common-bsd.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd.html * igt@gem_exec_schedule@preempt-contexts-bsd2: - shard-iclb: [SKIP][135] ([fdo#109276]) -> ([PASS][136], [PASS][137]) +6 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@preempt-contexts-bsd2.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-contexts-bsd2.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@gem_exec_schedule@preempt-contexts-bsd2.html * igt@gem_exec_schedule@preempt-hang-render: - shard-apl: [SKIP][138] ([fdo#109271]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html - shard-glk: [SKIP][140] ([fdo#109271]) -> ([PASS][141], [PASS][142]) +1 similar issue [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_schedule@preempt-hang-render.html - shard-iclb: [SKIP][143] ([i915#1467]) -> ([PASS][144], [PASS][145]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@preempt-hang-render.html - shard-tglb: [SKIP][146] ([i915#1467]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html - shard-kbl: [SKIP][148] ([fdo#109271]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@gem_exec_schedule@preempt-hang-render.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [SKIP][150] ([fdo#112146]) -> ([PASS][151], [PASS][152]) +3 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-snb: [DMESG-WARN][153] ([fdo#111870] / [i915#478]) -> [PASS][154] +1 similar issue [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html - shard-hsw: [DMESG-WARN][155] ([fdo#111870]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [DMESG-WARN][157] ([i915#180]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_rpm@system-suspend-devices: - shard-iclb: [SKIP][159] ([i915#1316]) -> ([PASS][160], [PASS][161]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@i915_pm_rpm@system-suspend-devices.html - shard-tglb: [SKIP][162] ([i915#1316]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@i915_pm_rpm@system-suspend-devices.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [FAIL][164] ([i915#72]) -> ([PASS][165], [PASS][166]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [INCOMPLETE][167] ([i915#61]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-kbl: [FAIL][169] ([i915#49]) -> [PASS][170] [16 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik ` (6 preceding siblings ...) 2020-03-17 13:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-03-17 13:54 ` Patchwork 2020-03-17 17:18 ` Patchwork 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2020-03-17 13:54 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev == Series Details == Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) URL : https://patchwork.freedesktop.org/series/74201/ State : success == Summary == CI Bug Log - changes from IGT_5510_full -> IGTPW_4307_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_4307_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4307_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4307_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW): - shard-iclb: NOTRUN -> ([SKIP][1], [SKIP][2]) +7 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW): - shard-tglb: NOTRUN -> [SKIP][3] +11 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html * {igt@gem_userptr_blits@process-exit-mmap@wc} (NEW): - shard-iclb: NOTRUN -> [SKIP][4] +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_userptr_blits@process-exit-mmap@wc.html #### Warnings #### * igt@gem_exec_reloc@basic-spin-bsd: - shard-snb: [FAIL][5] ([i915#757]) -> [TIMEOUT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-snb2/igt@gem_exec_reloc@basic-spin-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@gem_exec_reloc@basic-spin-bsd.html New tests --------- New tests have been introduced between IGT_5510_full and IGTPW_4307_full: ### New IGT tests (17) ### * igt@gem_userptr_blits@process-exit-mmap: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: - Statuses : 10 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@uc: - Statuses : 10 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wb: - Statuses : 10 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wc: - Statuses : 10 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@gtt: - Statuses : 9 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@uc: - Statuses : 9 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wb: - Statuses : 9 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wc: - Statuses : 9 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@readonly-mmap-unsync@gtt: - Statuses : 5 pass(s) 5 skip(s) - Exec time: [0.01] s * igt@gem_userptr_blits@readonly-mmap-unsync@uc: - Statuses : 5 pass(s) 5 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wb: - Statuses : 5 pass(s) 5 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wc: - Statuses : 5 pass(s) 5 skip(s) - Exec time: [0.0, 0.00] s * igt@sysfs_heartbeat_interval@off: - Statuses : - Exec time: [None] s * igt@sysfs_heartbeat_interval@precise: - Statuses : - Exec time: [None] s * igt@sysfs_preempt_timeout@idempotent: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_4307_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [PASS][7] -> ([SKIP][8], [SKIP][9]) ([fdo#112080]) +4 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][10] -> ([SKIP][11], [SKIP][12]) ([fdo#110841]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb8/igt@gem_ctx_shared@exec-single-timeline-bsd.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_async@concurrent-writes-bsd2: - shard-iclb: [PASS][13] -> [SKIP][14] ([fdo#109276]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb1/igt@gem_exec_async@concurrent-writes-bsd2.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_async@concurrent-writes-bsd2.html * igt@gem_exec_fence@basic-await@vcs0: - shard-kbl: [PASS][15] -> [FAIL][16] ([i915#1472]) +3 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-kbl4/igt@gem_exec_fence@basic-await@vcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html - shard-iclb: [PASS][17] -> ([FAIL][18], [FAIL][19]) ([i915#1472]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_fence@basic-await@vcs0.html - shard-apl: [PASS][20] -> [FAIL][21] ([i915#1472]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-apl7/igt@gem_exec_fence@basic-await@vcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html - shard-glk: [PASS][22] -> ([FAIL][23], [FAIL][24]) ([i915#1472]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@gem_exec_fence@basic-await@vcs0.html - shard-tglb: [PASS][25] -> [FAIL][26] ([i915#1472]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-tglb3/igt@gem_exec_fence@basic-await@vcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs0.html * igt@gem_exec_schedule@implicit-write-read-bsd1: - shard-iclb: [PASS][27] -> ([SKIP][28], [PASS][29]) ([fdo#109276] / [i915#677]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb4/igt@gem_exec_schedule@implicit-write-read-bsd1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd1.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_schedule@implicit-write-read-bsd1.html * igt@gem_exec_schedule@independent-bsd2: - shard-iclb: [PASS][30] -> ([SKIP][31], [PASS][32]) ([fdo#109276]) +9 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb4/igt@gem_exec_schedule@independent-bsd2.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@independent-bsd2.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@independent-bsd2.html * igt@gem_exec_schedule@preempt-contexts-bsd: - shard-iclb: [PASS][33] -> ([SKIP][34], [SKIP][35]) ([fdo#112146]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@gem_exec_schedule@preempt-contexts-bsd.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-contexts-bsd.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][36] -> ([PASS][37], [SKIP][38]) ([fdo#112146]) +6 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@preempt-other-chain-bsd.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd1: - shard-iclb: [PASS][39] -> ([SKIP][40], [SKIP][41]) ([fdo#109276]) +5 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb1/igt@gem_exec_schedule@preempt-queue-bsd1.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@preempt-queue-bsd1.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html * igt@gem_exec_suspend@basic-s3: - shard-kbl: [PASS][42] -> [INCOMPLETE][43] ([i915#155]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-kbl2/igt@gem_exec_suspend@basic-s3.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_exec_suspend@basic-s3.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [PASS][44] -> ([PASS][45], [FAIL][46]) ([i915#644]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-glk8/igt@gem_ppgtt@flink-and-close-vma-leak.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_wait@wait-rcs0: - shard-hsw: [PASS][47] -> [FAIL][48] ([i915#1462]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-hsw7/igt@gem_wait@wait-rcs0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_wait@wait-rcs0.html - shard-snb: [PASS][49] -> [FAIL][50] ([i915#1462]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-snb2/igt@gem_wait@wait-rcs0.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@gem_wait@wait-rcs0.html * igt@i915_pm_dc@dc5-dpms: - shard-iclb: [PASS][51] -> ([FAIL][52], [PASS][53]) ([i915#447]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb7/igt@i915_pm_dc@dc5-dpms.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_dc@dc5-dpms.html * igt@i915_pm_rps@waitboost: - shard-tglb: [PASS][54] -> [FAIL][55] ([i915#413]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-tglb1/igt@i915_pm_rps@waitboost.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb2/igt@i915_pm_rps@waitboost.html - shard-iclb: [PASS][56] -> ([PASS][57], [FAIL][58]) ([i915#413]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb2/igt@i915_pm_rps@waitboost.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_rps@waitboost.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@i915_pm_rps@waitboost.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-snb: [PASS][59] -> [FAIL][60] ([i915#1471]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html * igt@kms_fbcon_fbt@psr-suspend: - shard-iclb: [PASS][61] -> ([INCOMPLETE][62], [PASS][63]) ([i915#1185]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb7/igt@kms_fbcon_fbt@psr-suspend.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-expired-vblank: - shard-kbl: [PASS][64] -> [DMESG-WARN][65] ([i915#1297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html - shard-apl: [PASS][66] -> ([DMESG-WARN][67], [DMESG-WARN][68]) ([i915#1297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-apl8/igt@kms_flip@flip-vs-expired-vblank.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [PASS][69] -> ([PASS][70], [DMESG-WARN][71]) ([i915#180]) +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][72] -> [DMESG-WARN][73] ([i915#180]) +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_lowres@pipe-c-tiling-x: - shard-hsw: [PASS][74] -> [DMESG-WARN][75] ([i915#478]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [PASS][76] -> ([SKIP][77], [SKIP][78]) ([fdo#109441]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@kms_psr@psr2_cursor_plane_move.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@psr2_primary_render: - shard-iclb: [PASS][79] -> [SKIP][80] ([fdo#109441]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb2/igt@kms_psr@psr2_primary_render.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_psr@psr2_primary_render.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][81] -> ([SKIP][82], [PASS][83]) ([fdo#112080]) +8 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb4/igt@perf_pmu@busy-no-semaphores-vcs1.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html * igt@perf_pmu@busy-start-vcs1: - shard-iclb: [PASS][84] -> [SKIP][85] ([fdo#112080]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb4/igt@perf_pmu@busy-start-vcs1.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@perf_pmu@busy-start-vcs1.html #### Possible fixes #### * igt@gem_ctx_isolation@rcs0-s3: - shard-snb: [FAIL][86] ([i915#1462]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-snb6/igt@gem_ctx_isolation@rcs0-s3.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html - shard-hsw: [FAIL][88] ([i915#1462]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-hsw2/igt@gem_ctx_isolation@rcs0-s3.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_persistence@close-replace-race: - shard-tglb: [INCOMPLETE][90] ([i915#1402]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html - shard-iclb: [TIMEOUT][92] ([i915#1340]) -> ([PASS][93], [PASS][94]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb3/igt@gem_ctx_persistence@close-replace-race.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_ctx_persistence@close-replace-race.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_persistence@close-replace-race.html - shard-apl: [INCOMPLETE][95] ([fdo#103927]) -> ([PASS][96], [PASS][97]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_ctx_persistence@close-replace-race.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html * igt@gem_eio@in-flight-contexts-1us: - shard-hsw: [TIMEOUT][98] -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-hsw7/igt@gem_eio@in-flight-contexts-1us.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_exec_balancer@hang: - shard-tglb: [FAIL][100] ([i915#1277]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-tglb3/igt@gem_exec_balancer@hang.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_balancer@hang.html * igt@gem_exec_parallel@bcs0-fds: - shard-apl: [FAIL][102] ([i915#1470]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-apl2/igt@gem_exec_parallel@bcs0-fds.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html - shard-kbl: [FAIL][104] ([i915#1470]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-kbl7/igt@gem_exec_parallel@bcs0-fds.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_parallel@bcs0-fds.html * igt@gem_exec_schedule@out-order-bsd2: - shard-iclb: [SKIP][106] ([fdo#109276]) -> [PASS][107] +3 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb7/igt@gem_exec_schedule@out-order-bsd2.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_schedule@out-order-bsd2.html * igt@gem_exec_schedule@pi-common-bsd: - shard-iclb: [SKIP][108] ([i915#677]) -> ([PASS][109], [PASS][110]) +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb2/igt@gem_exec_schedule@pi-common-bsd.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@pi-common-bsd.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd.html * igt@gem_exec_schedule@preempt-contexts-bsd2: - shard-iclb: [SKIP][111] ([fdo#109276]) -> ([PASS][112], [PASS][113]) +4 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb3/igt@gem_exec_schedule@preempt-contexts-bsd2.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-contexts-bsd2.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@gem_exec_schedule@preempt-contexts-bsd2.html * igt@gem_exec_schedule@preempt-hang-render: - shard-apl: [SKIP][114] ([fdo#109271]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-apl2/igt@gem_exec_schedule@preempt-hang-render.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html - shard-glk: [SKIP][116] ([fdo#109271]) -> ([PASS][117], [PASS][118]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-glk9/igt@gem_exec_schedule@preempt-hang-render.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_schedule@preempt-hang-render.html - shard-iclb: [SKIP][119] ([i915#1467]) -> ([PASS][120], [PASS][121]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@preempt-hang-render.html - shard-tglb: [SKIP][122] ([i915#1467]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-tglb5/igt@gem_exec_schedule@preempt-hang-render.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html - shard-kbl: [SKIP][124] ([fdo#109271]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@gem_exec_schedule@preempt-hang-render.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [SKIP][126] ([fdo#112146]) -> ([PASS][127], [PASS][128]) +2 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_exec_store@cachelines-vcs1: - shard-iclb: [SKIP][129] ([fdo#112080]) -> [PASS][130] +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb6/igt@gem_exec_store@cachelines-vcs1.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@gem_exec_store@cachelines-vcs1.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-snb: [DMESG-WARN][131] ([fdo#111870] / [i915#478]) -> [PASS][132] +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-snb6/igt@gem_userptr_blits@sync-unmap-cycles.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html - shard-hsw: [DMESG-WARN][133] ([fdo#111870]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [DMESG-WARN][135] ([i915#716]) -> ([PASS][136], [PASS][137]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-glk1/igt@gen9_exec_parse@allowed-all.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@gen9_exec_parse@allowed-all.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk7/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][138] ([i915#454]) -> ([PASS][139], [PASS][140]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@system-suspend-devices: - shard-iclb: [SKIP][141] ([i915#1316]) -> ([PASS][142], [PASS][143]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb6/igt@i915_pm_rpm@system-suspend-devices.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@i915_pm_rpm@system-suspend-devices.html - shard-tglb: [SKIP][144] ([i915#1316]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-tglb7/igt@i915_pm_rpm@system-suspend-devices.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rps@reset: - shard-iclb: [FAIL][146] ([i915#413]) -> ([PASS][147], [PASS][148]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-iclb8/igt@i915_pm_rps@reset.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@i915_pm_rps@reset.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@execlists: - shard-kbl: [INCOMPLETE][149] ([fdo#112259] / [i915#656]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-kbl7/igt@i915_selftest@live@execlists.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@i915_selftest@live@execlists.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [FAIL][151] ([i915#72]) -> ([PASS][152], [PASS][153]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [INCOMPLETE][154] ([i915#61]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-hsw2/igt@kms_flip@flip-vs-suspend.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [DMESG-WARN][156] ([i915#180]) -> ([PASS][157], [PASS][158]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-kbl: [FAIL][159] ([i915#49]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html - shard-glk: [FAIL][161] ([i915#49]) -> ([PASS][162], [PASS][163]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html - shard-apl: [FAIL][164] ([i915#49]) -> ([PASS][165], [PASS][166]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-snb: [DMESG-WARN][167] ([i915#478]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5510/shard-snb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik ` (7 preceding siblings ...) 2020-03-17 13:54 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2020-03-17 17:18 ` Patchwork 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2020-03-17 17:18 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev == Series Details == Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) URL : https://patchwork.freedesktop.org/series/74201/ State : success == Summary == CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_4307_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4307_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4307_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW): - shard-iclb: NOTRUN -> ([SKIP][1], [SKIP][2]) +7 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW): - shard-tglb: NOTRUN -> ([SKIP][3], [SKIP][4]) +11 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb3/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html * {igt@gem_userptr_blits@process-exit-mmap@wc} (NEW): - shard-iclb: NOTRUN -> [SKIP][5] +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_userptr_blits@process-exit-mmap@wc.html #### Warnings #### * igt@gem_exec_reloc@basic-spin-bsd: - shard-snb: [FAIL][6] ([i915#757]) -> [TIMEOUT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@gem_exec_reloc@basic-spin-bsd.html New tests --------- New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full: ### New IGT tests (17) ### * igt@gem_userptr_blits@process-exit-mmap: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: - Statuses : 13 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@uc: - Statuses : 13 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wb: - Statuses : 13 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap-busy@wc: - Statuses : 13 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@gtt: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@uc: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wb: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@process-exit-mmap@wc: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@gem_userptr_blits@readonly-mmap-unsync@gtt: - Statuses : 6 pass(s) 7 skip(s) - Exec time: [0.01] s * igt@gem_userptr_blits@readonly-mmap-unsync@uc: - Statuses : 6 pass(s) 7 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wb: - Statuses : 6 pass(s) 7 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_userptr_blits@readonly-mmap-unsync@wc: - Statuses : 6 pass(s) 7 skip(s) - Exec time: [0.0, 0.00] s * igt@sysfs_heartbeat_interval@off: - Statuses : - Exec time: [None] s * igt@sysfs_heartbeat_interval@precise: - Statuses : - Exec time: [None] s * igt@sysfs_preempt_timeout@idempotent: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_4307_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@close-replace-race: - shard-kbl: [PASS][8] -> ([INCOMPLETE][9], [INCOMPLETE][10]) ([i915#1402]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@gem_ctx_persistence@close-replace-race.html - shard-glk: [PASS][11] -> ([TIMEOUT][12], [INCOMPLETE][13]) ([i915#1340] / [i915#1402] / [i915#58] / [k.org#198133]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@gem_ctx_persistence@close-replace-race.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_ctx_persistence@close-replace-race.html * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][14] -> ([SKIP][15], [SKIP][16]) ([fdo#110841]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_fence@basic-await@vcs0: - shard-kbl: [PASS][17] -> [FAIL][18] ([i915#1472]) +3 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html - shard-iclb: [PASS][19] -> ([FAIL][20], [FAIL][21]) ([i915#1472]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_fence@basic-await@vcs0.html - shard-apl: [PASS][22] -> ([FAIL][23], [FAIL][24]) ([i915#1472]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_fence@basic-await@vcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html - shard-glk: [PASS][25] -> ([FAIL][26], [FAIL][27]) ([i915#1472]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@gem_exec_fence@basic-await@vcs0.html - shard-tglb: [PASS][28] -> ([FAIL][29], [PASS][30]) ([i915#1472]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb3/igt@gem_exec_fence@basic-await@vcs0.html * igt@gem_exec_fence@basic-await@vcs1: - shard-tglb: [PASS][31] -> ([FAIL][32], [FAIL][33]) ([i915#1472]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs1.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb3/igt@gem_exec_fence@basic-await@vcs1.html * igt@gem_exec_schedule@implicit-both-bsd: - shard-iclb: [PASS][34] -> ([SKIP][35], [PASS][36]) ([i915#677]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@implicit-both-bsd.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_schedule@implicit-both-bsd.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_exec_schedule@implicit-both-bsd.html * igt@gem_exec_schedule@implicit-write-read-bsd1: - shard-iclb: [PASS][37] -> ([SKIP][38], [PASS][39]) ([fdo#109276] / [i915#677]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd1.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_schedule@implicit-write-read-bsd1.html * igt@gem_exec_schedule@preempt-contexts-bsd: - shard-iclb: [PASS][40] -> ([SKIP][41], [SKIP][42]) ([fdo#112146]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-contexts-bsd.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@gem_exec_schedule@preempt-contexts-bsd.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-contexts-bsd.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][43] -> ([SKIP][44], [PASS][45]) ([fdo#112146]) +6 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd1: - shard-iclb: [PASS][46] -> ([SKIP][47], [SKIP][48]) ([fdo#109276]) +5 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@preempt-queue-bsd1.html * igt@gem_exec_suspend@basic-s3: - shard-kbl: [PASS][49] -> ([INCOMPLETE][50], [INCOMPLETE][51]) ([i915#155]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_exec_suspend@basic-s3.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@gem_exec_suspend@basic-s3.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [PASS][52] -> ([PASS][53], [FAIL][54]) ([i915#644]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_tiled_wb: - shard-hsw: [PASS][55] -> ([PASS][56], [INCOMPLETE][57]) ([i915#61]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@gem_tiled_wb.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_tiled_wb.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@gem_tiled_wb.html * igt@gem_wait@wait-rcs0: - shard-hsw: [PASS][58] -> ([FAIL][59], [FAIL][60]) ([i915#1462]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_wait@wait-rcs0.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@gem_wait@wait-rcs0.html - shard-snb: [PASS][61] -> ([FAIL][62], [FAIL][63]) ([i915#1462]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_wait@wait-rcs0.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@gem_wait@wait-rcs0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_wait@wait-rcs0.html * igt@i915_pm_rps@waitboost: - shard-iclb: [PASS][64] -> ([FAIL][65], [PASS][66]) ([i915#413]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@i915_pm_rps@waitboost.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@i915_pm_rps@waitboost.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_rps@waitboost.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-hsw: [PASS][67] -> ([PASS][68], [FAIL][69]) ([i915#57]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-snb: [PASS][70] -> ([FAIL][71], [FAIL][72]) ([i915#1471]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html * igt@kms_fbcon_fbt@psr-suspend: - shard-iclb: [PASS][73] -> ([INCOMPLETE][74], [PASS][75]) ([i915#1185]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-expired-vblank: - shard-kbl: [PASS][76] -> ([DMESG-WARN][77], [DMESG-WARN][78]) ([i915#1297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@kms_flip@flip-vs-expired-vblank.html - shard-apl: [PASS][79] -> ([DMESG-WARN][80], [DMESG-WARN][81]) ([i915#1297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-kbl: [PASS][82] -> ([DMESG-WARN][83], [DMESG-WARN][84]) ([i915#180]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [PASS][85] -> ([PASS][86], [DMESG-WARN][87]) ([i915#180]) +4 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][88] -> ([PASS][89], [DMESG-WARN][90]) ([i915#180]) +3 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_lowres@pipe-c-tiling-x: - shard-hsw: [PASS][91] -> ([DMESG-WARN][92], [DMESG-WARN][93]) ([i915#478]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw4/igt@kms_plane_lowres@pipe-c-tiling-x.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][94] -> ([SKIP][95], [SKIP][96]) ([fdo#109441]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@kms_psr@psr2_cursor_render.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][97] -> ([SKIP][98], [PASS][99]) ([fdo#109441]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic: - shard-apl: [PASS][100] -> ([FAIL][101], [PASS][102]) ([i915#31]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_setmode@basic.html - shard-glk: [PASS][103] -> ([FAIL][104], [FAIL][105]) ([i915#31]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk1/igt@kms_setmode@basic.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html - shard-kbl: [PASS][106] -> ([FAIL][107], [FAIL][108]) ([i915#31]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@kms_setmode@basic.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_setmode@basic.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][109] -> ([PASS][110], [SKIP][111]) ([fdo#112080]) +5 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html * igt@perf_pmu@busy-start-vcs1: - shard-iclb: [PASS][112] -> [SKIP][113] ([fdo#112080]) +1 similar issue [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-start-vcs1.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@perf_pmu@busy-start-vcs1.html * igt@perf_pmu@init-busy-vcs1: - shard-iclb: [PASS][114] -> ([SKIP][115], [SKIP][116]) ([fdo#112080]) +4 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@perf_pmu@init-busy-vcs1.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@perf_pmu@init-busy-vcs1.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@perf_pmu@init-busy-vcs1.html * igt@prime_busy@wait-after-bsd2: - shard-iclb: [PASS][117] -> [SKIP][118] ([fdo#109276]) +3 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@prime_busy@wait-after-bsd2.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@prime_busy@wait-after-bsd2.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [PASS][119] -> ([SKIP][120], [PASS][121]) ([fdo#109276]) +12 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@prime_vgem@fence-wait-bsd2.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html #### Possible fixes #### * igt@gem_ctx_isolation@rcs0-s3: - shard-snb: [FAIL][122] ([i915#1462]) -> ([PASS][123], [PASS][124]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@gem_ctx_isolation@rcs0-s3.html - shard-hsw: [FAIL][125] ([i915#1462]) -> ([PASS][126], [PASS][127]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_ctx_isolation@rcs0-s3.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@gem_ctx_isolation@rcs0-s3.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_persistence@close-replace-race: - shard-apl: [INCOMPLETE][128] ([fdo#103927] / [i915#1402]) -> ([PASS][129], [PASS][130]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_ctx_persistence@close-replace-race.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html * igt@gem_eio@in-flight-contexts-1us: - shard-hsw: [TIMEOUT][131] -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_exec_parallel@bcs0-fds: - shard-apl: [FAIL][133] ([i915#1470]) -> ([PASS][134], [PASS][135]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_exec_parallel@bcs0-fds.html - shard-iclb: [FAIL][136] ([i915#1470]) -> ([PASS][137], [PASS][138]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_exec_parallel@bcs0-fds.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html - shard-tglb: [FAIL][139] ([i915#1470]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html - shard-glk: [FAIL][141] ([i915#1470]) -> ([PASS][142], [PASS][143]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk6/igt@gem_exec_parallel@bcs0-fds.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_parallel@bcs0-fds.html * igt@gem_exec_parallel@vcs1: - shard-iclb: [SKIP][144] ([fdo#112080]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_exec_parallel@vcs1.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@vcs1.html * igt@gem_exec_schedule@out-order-bsd2: - shard-iclb: [SKIP][146] ([fdo#109276]) -> [PASS][147] +1 similar issue [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_exec_schedule@out-order-bsd2.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_schedule@out-order-bsd2.html * igt@gem_exec_schedule@pi-common-bsd: - shard-iclb: [SKIP][148] ([i915#677]) -> ([PASS][149], [PASS][150]) +1 similar issue [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@pi-common-bsd.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd.html * igt@gem_exec_schedule@preempt-contexts-bsd2: - shard-iclb: [SKIP][151] ([fdo#109276]) -> ([PASS][152], [PASS][153]) +10 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@preempt-contexts-bsd2.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-contexts-bsd2.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@gem_exec_schedule@preempt-contexts-bsd2.html * igt@gem_exec_schedule@preempt-hang-render: - shard-apl: [SKIP][154] ([fdo#109271]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html - shard-glk: [SKIP][156] ([fdo#109271]) -> ([PASS][157], [PASS][158]) +1 similar issue [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_schedule@preempt-hang-render.html - shard-iclb: [SKIP][159] ([i915#1467]) -> ([PASS][160], [PASS][161]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@gem_exec_schedule@preempt-hang-render.html - shard-tglb: [SKIP][162] ([i915#1467]) -> ([PASS][163], [PASS][164]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_schedule@preempt-hang-render.html - shard-kbl: [SKIP][165] ([fdo#109271]) -> ([PASS][166], [PASS][167]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@gem_exec_schedule@preempt-hang-render.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@gem_exec_schedule@preempt-hang-render.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [SKIP][168] ([fdo#112146]) -> ([PASS][169], [PASS][170]) +3 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_userptr_blits@sync-unmap: - shard-snb: [DMESG-WARN][171] ([fdo#111870] / [i915#478]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_userptr_blits@sync-unmap.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-snb: [DME == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2020-03-17 17:18 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-03-16 8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik 2020-03-16 8:45 ` [igt-dev] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise Janusz Krzysztofik 2020-03-16 8:45 ` [igt-dev] [RESUBMIT PATCH 2/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik 2020-03-16 13:31 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) Patchwork 2020-03-16 19:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2020-03-17 8:53 ` Janusz Krzysztofik 2020-03-17 10:40 ` [igt-dev] [Intel-gfx] " Petri Latvala 2020-03-17 13:59 ` Vudum, Lakshminarayana 2020-03-17 16:32 ` Janusz Krzysztofik 2020-03-17 10:50 ` [igt-dev] " Patchwork 2020-03-17 11:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2020-03-17 13:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2020-03-17 13:54 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2020-03-17 17:18 ` Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox