* [igt-dev] [PATCH i-g-t v2 0/2] Add negative tests to VGEM
@ 2023-03-09 13:51 Maíra Canal
2023-03-09 13:51 ` [igt-dev] [PATCH i-g-t v2 1/2] lib/igt_vgem: Use UAPI header Maíra Canal
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Maíra Canal @ 2023-03-09 13:51 UTC (permalink / raw)
To: Melissa Wen, Daniel Vetter, Petri Latvala, Kamil Konieczny; +Cc: igt-dev
Currently, the VGEM tests don't cover any negative tests. So, by inspecting
the driver code, add tests that input invalid arguments and then, check if
the driver is returning the correct values.
In the first patch, update VGEM to use the UAPI header instead of having it
defined in the source code and in the second patch, introduce the negative
tests.
v1 -> v2:
- Don't remove "#include <stdbool.h>"
Best Regards,
- Maíra Canal
Maíra Canal (2):
lib/igt_vgem: Use UAPI header
tests/vgem_basic: Add negative tests
lib/igt_vgem.c | 36 +++++++-------------------
lib/igt_vgem.h | 2 +-
tests/vgem_basic.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 73 insertions(+), 28 deletions(-)
--
2.39.2
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/2] lib/igt_vgem: Use UAPI header 2023-03-09 13:51 [igt-dev] [PATCH i-g-t v2 0/2] Add negative tests to VGEM Maíra Canal @ 2023-03-09 13:51 ` Maíra Canal 2023-03-16 18:12 ` Kamil Konieczny 2023-03-09 13:51 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/vgem_basic: Add negative tests Maíra Canal ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: Maíra Canal @ 2023-03-09 13:51 UTC (permalink / raw) To: Melissa Wen, Daniel Vetter, Petri Latvala, Kamil Konieczny; +Cc: igt-dev Currently, VGEM copies the UAPI header contents to source file. So, delete the copy from the source file and use the UAPI header directly. Signed-off-by: Maíra Canal <mcanal@igalia.com> --- lib/igt_vgem.c | 36 +++++++++--------------------------- lib/igt_vgem.h | 2 +- 2 files changed, 10 insertions(+), 28 deletions(-) diff --git a/lib/igt_vgem.c b/lib/igt_vgem.c index 468383c7..93c8398e 100644 --- a/lib/igt_vgem.c +++ b/lib/igt_vgem.c @@ -94,41 +94,23 @@ void *vgem_mmap(int fd, struct vgem_bo *bo, unsigned prot) return ptr; } -#define LOCAL_VGEM_FENCE_ATTACH 0x1 -#define LOCAL_VGEM_FENCE_SIGNAL 0x2 - -#define LOCAL_IOCTL_VGEM_FENCE_ATTACH DRM_IOWR( DRM_COMMAND_BASE + LOCAL_VGEM_FENCE_ATTACH, struct local_vgem_fence_attach) -#define LOCAL_IOCTL_VGEM_FENCE_SIGNAL DRM_IOW( DRM_COMMAND_BASE + LOCAL_VGEM_FENCE_SIGNAL, struct local_vgem_fence_signal) - -struct local_vgem_fence_attach { - uint32_t handle; - uint32_t flags; - uint32_t out_fence; - uint32_t pad; -}; - -struct local_vgem_fence_signal { - uint32_t fence; - uint32_t flags; -}; - bool vgem_has_fences(int fd) { - struct local_vgem_fence_signal arg; + struct drm_vgem_fence_signal arg; int err; err = 0; memset(&arg, 0, sizeof(arg)); - if (drmIoctl(fd, LOCAL_IOCTL_VGEM_FENCE_SIGNAL, &arg)) + if (drmIoctl(fd, DRM_IOCTL_VGEM_FENCE_SIGNAL, &arg)) err = -errno; errno = 0; return err == -ENOENT; } -static int __vgem_fence_attach(int fd, struct local_vgem_fence_attach *arg) +static int __vgem_fence_attach(int fd, struct drm_vgem_fence_attach *arg) { int err = 0; - if (igt_ioctl(fd, LOCAL_IOCTL_VGEM_FENCE_ATTACH, arg)) + if (igt_ioctl(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, arg)) err = -errno; errno = 0; return err; @@ -136,7 +118,7 @@ static int __vgem_fence_attach(int fd, struct local_vgem_fence_attach *arg) bool vgem_fence_has_flag(int fd, unsigned flags) { - struct local_vgem_fence_attach arg; + struct drm_vgem_fence_attach arg; struct vgem_bo bo; bool ret = false; @@ -160,7 +142,7 @@ bool vgem_fence_has_flag(int fd, unsigned flags) uint32_t vgem_fence_attach(int fd, struct vgem_bo *bo, unsigned flags) { - struct local_vgem_fence_attach arg; + struct drm_vgem_fence_attach arg; memset(&arg, 0, sizeof(arg)); arg.handle = bo->handle; @@ -169,10 +151,10 @@ uint32_t vgem_fence_attach(int fd, struct vgem_bo *bo, unsigned flags) return arg.out_fence; } -static int ioctl_vgem_fence_signal(int fd, struct local_vgem_fence_signal *arg) +static int ioctl_vgem_fence_signal(int fd, struct drm_vgem_fence_signal *arg) { int err = 0; - if (igt_ioctl(fd, LOCAL_IOCTL_VGEM_FENCE_SIGNAL, arg)) + if (igt_ioctl(fd, DRM_IOCTL_VGEM_FENCE_SIGNAL, arg)) err = -errno; errno = 0; return err; @@ -180,7 +162,7 @@ static int ioctl_vgem_fence_signal(int fd, struct local_vgem_fence_signal *arg) int __vgem_fence_signal(int fd, uint32_t fence) { - struct local_vgem_fence_signal arg; + struct drm_vgem_fence_signal arg; memset(&arg, 0, sizeof(arg)); arg.fence = fence; diff --git a/lib/igt_vgem.h b/lib/igt_vgem.h index 92045f0e..9fd5e53b 100644 --- a/lib/igt_vgem.h +++ b/lib/igt_vgem.h @@ -26,6 +26,7 @@ #include <stdint.h> #include <stdbool.h> +#include "vgem_drm.h" struct vgem_bo { uint32_t handle; @@ -43,7 +44,6 @@ void *vgem_mmap(int fd, struct vgem_bo *bo, unsigned prot); bool vgem_has_fences(int fd); bool vgem_fence_has_flag(int fd, unsigned flags); uint32_t vgem_fence_attach(int fd, struct vgem_bo *bo, unsigned flags); -#define VGEM_FENCE_WRITE 0x1 #define WIP_VGEM_FENCE_NOTIMEOUT 0x2 int __vgem_fence_signal(int fd, uint32_t fence); void vgem_fence_signal(int fd, uint32_t fence); -- 2.39.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/2] lib/igt_vgem: Use UAPI header 2023-03-09 13:51 ` [igt-dev] [PATCH i-g-t v2 1/2] lib/igt_vgem: Use UAPI header Maíra Canal @ 2023-03-16 18:12 ` Kamil Konieczny 0 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2023-03-16 18:12 UTC (permalink / raw) To: igt-dev; +Cc: Daniel Vetter Hi Maíra, thank you for cleanup patch. On 2023-03-09 at 10:51:15 -0300, Maíra Canal wrote: > Currently, VGEM copies the UAPI header contents to source file. So, s/Currently,/Currently/ s/So,// > delete the copy from the source file and use the UAPI header directly. s/delete/Deleted/ s/use/used/ > > Signed-off-by: Maíra Canal <mcanal@igalia.com> With small fixes to description: Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil > --- > lib/igt_vgem.c | 36 +++++++++--------------------------- > lib/igt_vgem.h | 2 +- > 2 files changed, 10 insertions(+), 28 deletions(-) > > diff --git a/lib/igt_vgem.c b/lib/igt_vgem.c > index 468383c7..93c8398e 100644 > --- a/lib/igt_vgem.c > +++ b/lib/igt_vgem.c > @@ -94,41 +94,23 @@ void *vgem_mmap(int fd, struct vgem_bo *bo, unsigned prot) > return ptr; > } > > -#define LOCAL_VGEM_FENCE_ATTACH 0x1 > -#define LOCAL_VGEM_FENCE_SIGNAL 0x2 > - > -#define LOCAL_IOCTL_VGEM_FENCE_ATTACH DRM_IOWR( DRM_COMMAND_BASE + LOCAL_VGEM_FENCE_ATTACH, struct local_vgem_fence_attach) > -#define LOCAL_IOCTL_VGEM_FENCE_SIGNAL DRM_IOW( DRM_COMMAND_BASE + LOCAL_VGEM_FENCE_SIGNAL, struct local_vgem_fence_signal) > - > -struct local_vgem_fence_attach { > - uint32_t handle; > - uint32_t flags; > - uint32_t out_fence; > - uint32_t pad; > -}; > - > -struct local_vgem_fence_signal { > - uint32_t fence; > - uint32_t flags; > -}; > - > bool vgem_has_fences(int fd) > { > - struct local_vgem_fence_signal arg; > + struct drm_vgem_fence_signal arg; > int err; > > err = 0; > memset(&arg, 0, sizeof(arg)); > - if (drmIoctl(fd, LOCAL_IOCTL_VGEM_FENCE_SIGNAL, &arg)) > + if (drmIoctl(fd, DRM_IOCTL_VGEM_FENCE_SIGNAL, &arg)) > err = -errno; > errno = 0; > return err == -ENOENT; > } > > -static int __vgem_fence_attach(int fd, struct local_vgem_fence_attach *arg) > +static int __vgem_fence_attach(int fd, struct drm_vgem_fence_attach *arg) > { > int err = 0; > - if (igt_ioctl(fd, LOCAL_IOCTL_VGEM_FENCE_ATTACH, arg)) > + if (igt_ioctl(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, arg)) > err = -errno; > errno = 0; > return err; > @@ -136,7 +118,7 @@ static int __vgem_fence_attach(int fd, struct local_vgem_fence_attach *arg) > > bool vgem_fence_has_flag(int fd, unsigned flags) > { > - struct local_vgem_fence_attach arg; > + struct drm_vgem_fence_attach arg; > struct vgem_bo bo; > bool ret = false; > > @@ -160,7 +142,7 @@ bool vgem_fence_has_flag(int fd, unsigned flags) > > uint32_t vgem_fence_attach(int fd, struct vgem_bo *bo, unsigned flags) > { > - struct local_vgem_fence_attach arg; > + struct drm_vgem_fence_attach arg; > > memset(&arg, 0, sizeof(arg)); > arg.handle = bo->handle; > @@ -169,10 +151,10 @@ uint32_t vgem_fence_attach(int fd, struct vgem_bo *bo, unsigned flags) > return arg.out_fence; > } > > -static int ioctl_vgem_fence_signal(int fd, struct local_vgem_fence_signal *arg) > +static int ioctl_vgem_fence_signal(int fd, struct drm_vgem_fence_signal *arg) > { > int err = 0; > - if (igt_ioctl(fd, LOCAL_IOCTL_VGEM_FENCE_SIGNAL, arg)) > + if (igt_ioctl(fd, DRM_IOCTL_VGEM_FENCE_SIGNAL, arg)) > err = -errno; > errno = 0; > return err; > @@ -180,7 +162,7 @@ static int ioctl_vgem_fence_signal(int fd, struct local_vgem_fence_signal *arg) > > int __vgem_fence_signal(int fd, uint32_t fence) > { > - struct local_vgem_fence_signal arg; > + struct drm_vgem_fence_signal arg; > > memset(&arg, 0, sizeof(arg)); > arg.fence = fence; > diff --git a/lib/igt_vgem.h b/lib/igt_vgem.h > index 92045f0e..9fd5e53b 100644 > --- a/lib/igt_vgem.h > +++ b/lib/igt_vgem.h > @@ -26,6 +26,7 @@ > > #include <stdint.h> > #include <stdbool.h> > +#include "vgem_drm.h" > > struct vgem_bo { > uint32_t handle; > @@ -43,7 +44,6 @@ void *vgem_mmap(int fd, struct vgem_bo *bo, unsigned prot); > bool vgem_has_fences(int fd); > bool vgem_fence_has_flag(int fd, unsigned flags); > uint32_t vgem_fence_attach(int fd, struct vgem_bo *bo, unsigned flags); > -#define VGEM_FENCE_WRITE 0x1 > #define WIP_VGEM_FENCE_NOTIMEOUT 0x2 > int __vgem_fence_signal(int fd, uint32_t fence); > void vgem_fence_signal(int fd, uint32_t fence); > -- > 2.39.2 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/2] tests/vgem_basic: Add negative tests 2023-03-09 13:51 [igt-dev] [PATCH i-g-t v2 0/2] Add negative tests to VGEM Maíra Canal 2023-03-09 13:51 ` [igt-dev] [PATCH i-g-t v2 1/2] lib/igt_vgem: Use UAPI header Maíra Canal @ 2023-03-09 13:51 ` Maíra Canal 2023-03-16 18:19 ` Kamil Konieczny 2023-03-09 14:26 ` [igt-dev] ✓ Fi.CI.BAT: success for Add negative tests to VGEM (rev2) Patchwork 2023-03-11 3:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 1 reply; 7+ messages in thread From: Maíra Canal @ 2023-03-09 13:51 UTC (permalink / raw) To: Melissa Wen, Daniel Vetter, Petri Latvala, Kamil Konieczny; +Cc: igt-dev Currently, the vgem_basic tests don't cover any negative tests. So, add tests covering possible error paths of the driver by inputting invalid arguments and checking if the driver is returning the correct values. Signed-off-by: Maíra Canal <mcanal@igalia.com> --- tests/vgem_basic.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/tests/vgem_basic.c b/tests/vgem_basic.c index 2a2900f8..4f371b3d 100644 --- a/tests/vgem_basic.c +++ b/tests/vgem_basic.c @@ -152,6 +152,27 @@ static void test_dmabuf_export(int fd) close(other); } +static void test_busy_fence(int fd) +{ + struct drm_vgem_fence_attach arg = {}; + struct vgem_bo bo; + + bo.width = 1024; + bo.height = 1; + bo.bpp = 32; + vgem_create(fd, &bo); + + /* Attach a fence for reading */ + vgem_fence_attach(fd, &bo, 0); + + /* Attach a fence for writing, so it should be an exclusive fence */ + arg.handle = bo.handle; + arg.flags = VGEM_FENCE_WRITE; + + /* As the fence is not exclusive, return -EBUSY, indicating a conflicting fence */ + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, &arg, EBUSY); +} + static void test_dmabuf_mmap(int fd) { struct vgem_bo bo; @@ -434,6 +455,48 @@ igt_main igt_subtest_f("mmap") test_mmap(fd); + igt_describe("Make sure a fence cannot be attached and signaled with invalid flags."); + igt_subtest("bad-flag") { + struct drm_vgem_fence_attach attach = { + .flags = 0xff, + }; + + struct drm_vgem_fence_signal signal = { + .flags = 0xff, + }; + + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, &attach, EINVAL); + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_SIGNAL, &signal, EINVAL); + } + + igt_describe("Make sure the pad is zero."); + igt_subtest("bad-pad") { + struct drm_vgem_fence_attach arg = { + .pad = 0x01, + }; + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, &arg, EINVAL); + } + + igt_describe("Make sure a fence cannot be attached to a invalid handle."); + igt_subtest("bad-handle") { + struct drm_vgem_fence_attach arg = { + .handle = 0xff, + }; + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, &arg, ENOENT); + } + + igt_describe("Make sure a non-existent fence cannot be signaled."); + igt_subtest("bad-fence") { + struct drm_vgem_fence_signal arg = { + .fence = 0xff, + }; + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_SIGNAL, &arg, ENOENT); + } + + igt_describe("Make sure a conflicting fence cannot be attached."); + igt_subtest("busy-fence") + test_busy_fence(fd); + igt_subtest_group { igt_fixture { igt_require(has_prime_export(fd)); -- 2.39.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/2] tests/vgem_basic: Add negative tests 2023-03-09 13:51 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/vgem_basic: Add negative tests Maíra Canal @ 2023-03-16 18:19 ` Kamil Konieczny 0 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2023-03-16 18:19 UTC (permalink / raw) To: igt-dev; +Cc: Daniel Vetter Hi Maíra, On 2023-03-09 at 10:51:16 -0300, Maíra Canal wrote: > Currently, the vgem_basic tests don't cover any negative tests. So, add ---------- ^ ---------------------------------------------------- ^^^ Drop "," and "So,", also s/add/Added/ > tests covering possible error paths of the driver by inputting invalid > arguments and checking if the driver is returning the correct values. -------------------------------------------------------------- ^ Insert here "error" word. > > Signed-off-by: Maíra Canal <mcanal@igalia.com> > --- > tests/vgem_basic.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 63 insertions(+) > > diff --git a/tests/vgem_basic.c b/tests/vgem_basic.c > index 2a2900f8..4f371b3d 100644 > --- a/tests/vgem_basic.c > +++ b/tests/vgem_basic.c > @@ -152,6 +152,27 @@ static void test_dmabuf_export(int fd) > close(other); > } > > +static void test_busy_fence(int fd) > +{ > + struct drm_vgem_fence_attach arg = {}; > + struct vgem_bo bo; > + > + bo.width = 1024; > + bo.height = 1; > + bo.bpp = 32; > + vgem_create(fd, &bo); > + > + /* Attach a fence for reading */ > + vgem_fence_attach(fd, &bo, 0); > + > + /* Attach a fence for writing, so it should be an exclusive fence */ > + arg.handle = bo.handle; > + arg.flags = VGEM_FENCE_WRITE; > + > + /* As the fence is not exclusive, return -EBUSY, indicating a conflicting fence */ > + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, &arg, EBUSY); > +} > + > static void test_dmabuf_mmap(int fd) > { > struct vgem_bo bo; > @@ -434,6 +455,48 @@ igt_main > igt_subtest_f("mmap") > test_mmap(fd); > > + igt_describe("Make sure a fence cannot be attached and signaled with invalid flags."); > + igt_subtest("bad-flag") { > + struct drm_vgem_fence_attach attach = { > + .flags = 0xff, > + }; > + > + struct drm_vgem_fence_signal signal = { > + .flags = 0xff, > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, &attach, EINVAL); > + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_SIGNAL, &signal, EINVAL); > + } > + > + igt_describe("Make sure the pad is zero."); --------------------------------------- ^^^^ imho better write: non-zero pad is rejected > + igt_subtest("bad-pad") { > + struct drm_vgem_fence_attach arg = { > + .pad = 0x01, What about few other invalid values ? If you think it is worth checking it can go in following patch or with this one. With small description fixes Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil > + }; > + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, &arg, EINVAL); > + } > + > + igt_describe("Make sure a fence cannot be attached to a invalid handle."); > + igt_subtest("bad-handle") { > + struct drm_vgem_fence_attach arg = { > + .handle = 0xff, > + }; > + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_ATTACH, &arg, ENOENT); > + } > + > + igt_describe("Make sure a non-existent fence cannot be signaled."); > + igt_subtest("bad-fence") { > + struct drm_vgem_fence_signal arg = { > + .fence = 0xff, > + }; > + do_ioctl_err(fd, DRM_IOCTL_VGEM_FENCE_SIGNAL, &arg, ENOENT); > + } > + > + igt_describe("Make sure a conflicting fence cannot be attached."); > + igt_subtest("busy-fence") > + test_busy_fence(fd); > + > igt_subtest_group { > igt_fixture { > igt_require(has_prime_export(fd)); > -- > 2.39.2 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add negative tests to VGEM (rev2) 2023-03-09 13:51 [igt-dev] [PATCH i-g-t v2 0/2] Add negative tests to VGEM Maíra Canal 2023-03-09 13:51 ` [igt-dev] [PATCH i-g-t v2 1/2] lib/igt_vgem: Use UAPI header Maíra Canal 2023-03-09 13:51 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/vgem_basic: Add negative tests Maíra Canal @ 2023-03-09 14:26 ` Patchwork 2023-03-11 3:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-03-09 14:26 UTC (permalink / raw) To: Maíra Canal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5059 bytes --] == Series Details == Series: Add negative tests to VGEM (rev2) URL : https://patchwork.freedesktop.org/series/114912/ State : success == Summary == CI Bug Log - changes from IGT_7188 -> IGTPW_8582 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/index.html Participating hosts (36 -> 35) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8582 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-1: NOTRUN -> [ABORT][1] ([i915#6687] / [i915#7978]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][2] -> [DMESG-FAIL][3] ([i915#5334]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@migrate: - bat-adlp-9: [PASS][4] -> [DMESG-FAIL][5] ([i915#7699]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-adlp-9/igt@i915_selftest@live@migrate.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/bat-adlp-9/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@reset: - bat-rpls-2: [PASS][6] -> [ABORT][7] ([i915#4983] / [i915#7913]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-rpls-2/igt@i915_selftest@live@reset.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-rpls-1: NOTRUN -> [DMESG-FAIL][8] ([i915#6367] / [i915#7996]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - fi-bsw-n3050: NOTRUN -> [SKIP][9] ([fdo#109271]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/fi-bsw-n3050/igt@kms_chamelium_hpd@common-hpd-after-suspend.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][10] ([i915#7911]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_heartbeat: - fi-cfl-8109u: [DMESG-FAIL][12] ([i915#5334]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/fi-cfl-8109u/igt@i915_selftest@live@gt_heartbeat.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/fi-cfl-8109u/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@migrate: - bat-rpls-2: [DMESG-FAIL][14] ([i915#7699]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-rpls-2/igt@i915_selftest@live@migrate.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/bat-rpls-2/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@requests: - bat-rpls-1: [ABORT][16] ([i915#7694] / [i915#7911]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-rpls-1/igt@i915_selftest@live@requests.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/bat-rpls-1/igt@i915_selftest@live@requests.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7694]: https://gitlab.freedesktop.org/drm/intel/issues/7694 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7188 -> IGTPW_8582 CI-20190529: 20190529 CI_DRM_12829: d947159409deea43f404f35cc758740c714c8888 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8582: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/index.html IGT_7188: b35bfa32fe672d67ced8555557e3e707ace211ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@vgem_basic@bad-fence +igt@vgem_basic@bad-flag +igt@vgem_basic@bad-handle +igt@vgem_basic@bad-pad +igt@vgem_basic@busy-fence == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/index.html [-- Attachment #2: Type: text/html, Size: 6113 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Add negative tests to VGEM (rev2) 2023-03-09 13:51 [igt-dev] [PATCH i-g-t v2 0/2] Add negative tests to VGEM Maíra Canal ` (2 preceding siblings ...) 2023-03-09 14:26 ` [igt-dev] ✓ Fi.CI.BAT: success for Add negative tests to VGEM (rev2) Patchwork @ 2023-03-11 3:56 ` Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-03-11 3:56 UTC (permalink / raw) To: Maíra Canal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 41700 bytes --] == Series Details == Series: Add negative tests to VGEM (rev2) URL : https://patchwork.freedesktop.org/series/114912/ State : success == Summary == CI Bug Log - changes from IGT_7188_full -> IGTPW_8582_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8582_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_pm_rps@reset: - {shard-rkl}: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-4/igt@i915_pm_rps@reset.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-2/igt@i915_pm_rps@reset.html * {igt@xe/xe_exec_basic@once-rebind}: - {shard-dg1}: NOTRUN -> [SKIP][3] +180 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-dg1-17/igt@xe/xe_exec_basic@once-rebind.html New tests --------- New tests have been introduced between IGT_7188_full and IGTPW_8582_full: ### New IGT tests (5) ### * igt@vgem_basic@bad-fence: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@vgem_basic@bad-flag: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@vgem_basic@bad-handle: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@vgem_basic@bad-pad: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@vgem_basic@busy-fence: - Statuses : 5 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8582_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-tglu-10: NOTRUN -> [SKIP][4] ([i915#7701]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@device_reset@cold-reset-bound.html * igt@feature_discovery@display-3x: - shard-tglu-9: NOTRUN -> [SKIP][5] ([i915#1839]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@feature_discovery@display-3x.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-9: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-10: NOTRUN -> [SKIP][7] ([i915#6335]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu-10: NOTRUN -> [SKIP][8] ([fdo#109314]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-9: NOTRUN -> [FAIL][9] ([i915#6117]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-tglu-10: NOTRUN -> [FAIL][10] ([i915#2842]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-glk: [PASS][11] -> [INCOMPLETE][12] ([i915#2295]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-glk7/igt@gem_exec_reloc@basic-cpu-wc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-glk6/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_huc_copy@huc-copy: - shard-tglu-10: NOTRUN -> [SKIP][13] ([i915#2190]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@massive: - shard-tglu-9: NOTRUN -> [SKIP][14] ([i915#4613]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@random-engines: - shard-tglu-10: NOTRUN -> [SKIP][15] ([i915#4613]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@gem_lmem_swapping@random-engines.html * igt@gem_pread@exhaustion: - shard-tglu-10: NOTRUN -> [WARN][16] ([i915#2658]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-tglu-9: NOTRUN -> [SKIP][17] ([i915#4270]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@gem_pxp@create-regular-context-1.html * igt@gem_softpin@evict-snoop: - shard-tglu-9: NOTRUN -> [SKIP][18] ([fdo#109312]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu-10: NOTRUN -> [SKIP][19] ([i915#3297]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][20] -> [ABORT][21] ([i915#5566]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl3/igt@gen9_exec_parse@allowed-single.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-apl4/igt@gen9_exec_parse@allowed-single.html - shard-glk: [PASS][22] -> [ABORT][23] ([i915#5566]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-glk6/igt@gen9_exec_parse@allowed-single.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-glk3/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu-10: NOTRUN -> [SKIP][24] ([i915#2527] / [i915#2856]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@gen9_exec_parse@bb-oversize.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][25] -> [SKIP][26] ([fdo#109271]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-apl1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-9: NOTRUN -> [WARN][27] ([i915#2681]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-10: NOTRUN -> [SKIP][28] ([fdo#111644] / [i915#1397]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglu-10: NOTRUN -> [SKIP][29] ([fdo#109506]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-tglu-10: NOTRUN -> [SKIP][30] ([i915#5286]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-tglu-10: NOTRUN -> [SKIP][31] ([fdo#111614]) +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu-10: NOTRUN -> [SKIP][32] ([fdo#111615]) +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][33] ([i915#6095]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][34] ([i915#3689] / [i915#6095]) +3 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-tglu-9: NOTRUN -> [SKIP][35] ([i915#1845] / [i915#7651]) +15 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs: - shard-tglu-10: NOTRUN -> [SKIP][37] ([fdo#111615] / [i915#3689]) +5 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglu-9: NOTRUN -> [SKIP][38] ([fdo#111615] / [i915#1845] / [i915#7651]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-tglu-10: NOTRUN -> [SKIP][39] ([i915#3689]) +5 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-10: NOTRUN -> [SKIP][40] ([i915#3742]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu-9: NOTRUN -> [SKIP][41] ([i915#7828]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@vga-hpd: - shard-tglu-10: NOTRUN -> [SKIP][42] ([i915#7828]) +6 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu-10: NOTRUN -> [SKIP][43] ([i915#3116] / [i915#3299]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic: - shard-tglu-10: NOTRUN -> [SKIP][44] ([i915#6944] / [i915#7116] / [i915#7118]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-tglu-9: NOTRUN -> [SKIP][45] ([i915#1845]) +3 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu-10: NOTRUN -> [SKIP][46] ([fdo#109279] / [i915#3359]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu-10: NOTRUN -> [SKIP][47] ([i915#3359]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-10: NOTRUN -> [SKIP][48] ([i915#4103]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-tglu-10: NOTRUN -> [SKIP][49] ([fdo#109274]) +2 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][50] -> [FAIL][51] ([i915#2346]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu-10: NOTRUN -> [SKIP][52] ([i915#3840]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_dsc@dsc-with-bpc.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-tglu-10: NOTRUN -> [SKIP][53] ([fdo#109274] / [i915#3637]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu-9: NOTRUN -> [SKIP][54] ([fdo#109274] / [i915#3637]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-apl: [PASS][55] -> [ABORT][56] ([i915#180]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-10: NOTRUN -> [SKIP][57] ([i915#2587] / [i915#2672]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-tglu-10: NOTRUN -> [SKIP][58] ([fdo#109285]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt: - shard-tglu-10: NOTRUN -> [SKIP][59] ([fdo#110189]) +19 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-glk: NOTRUN -> [SKIP][60] ([fdo#109271]) +4 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-glk3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-10: NOTRUN -> [SKIP][61] ([fdo#109280]) +26 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu-9: NOTRUN -> [SKIP][62] ([i915#1849]) +14 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu-10: NOTRUN -> [SKIP][63] ([i915#1839]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglu-9: NOTRUN -> [SKIP][64] ([fdo#109289]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-tglu-10: NOTRUN -> [SKIP][65] ([fdo#109289]) +3 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25: - shard-tglu-9: NOTRUN -> [SKIP][66] ([i915#3555]) +3 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25.html * igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling: - shard-tglu-9: NOTRUN -> [SKIP][67] ([i915#3555] / [i915#6953]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu-9: NOTRUN -> [SKIP][68] ([i915#658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-tglu-10: NOTRUN -> [SKIP][69] ([i915#658]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-tglu-10: NOTRUN -> [SKIP][70] ([fdo#111068] / [i915#658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-10: NOTRUN -> [SKIP][71] ([i915#5461]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-10: NOTRUN -> [SKIP][72] ([fdo#111615] / [i915#5289]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@all-tests: - shard-tglu-10: NOTRUN -> [SKIP][73] ([i915#6433]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_selftest@all-tests.html * igt@kms_tv_load_detect@load-detect: - shard-tglu-10: NOTRUN -> [SKIP][74] ([fdo#109309]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flipline: - shard-tglu-10: NOTRUN -> [SKIP][75] ([i915#3555]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@kms_vrr@flipline.html * igt@v3d/v3d_perfmon@create-perfmon-exceed: - shard-tglu-10: NOTRUN -> [SKIP][76] ([fdo#109315] / [i915#2575]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@v3d/v3d_perfmon@create-perfmon-exceed.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-tglu-9: NOTRUN -> [SKIP][77] ([fdo#109315] / [i915#2575]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-purgeable-twice: - shard-tglu-10: NOTRUN -> [SKIP][78] ([i915#2575]) +4 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-10/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-tglu-9: NOTRUN -> [SKIP][79] ([i915#2575]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-9/igt@vc4/vc4_tiling@get-bad-flags.html #### Possible fixes #### * igt@api_intel_bb@object-reloc-keep-cache: - {shard-rkl}: [SKIP][80] ([i915#3281]) -> [PASS][81] +8 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - {shard-rkl}: [FAIL][82] ([i915#7742]) -> [PASS][83] +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - {shard-rkl}: [FAIL][84] ([i915#6268]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@kms: - {shard-dg1}: [FAIL][86] ([i915#5784]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-dg1-14/igt@gem_eio@kms.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-dg1-15/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][88] ([i915#2842]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][90] ([i915#2842]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_pwrite_snooped: - {shard-rkl}: [SKIP][92] ([i915#3282]) -> [PASS][93] +3 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@gem_pwrite_snooped.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-5/igt@gem_pwrite_snooped.html * igt@gen9_exec_parse@shadow-peek: - {shard-rkl}: [SKIP][94] ([i915#2527]) -> [PASS][95] +3 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@gen9_exec_parse@shadow-peek.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_dc@dc5-psr: - {shard-rkl}: [SKIP][96] ([i915#658]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@i915_pm_dc@dc5-psr.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_dc@dc9-dpms: - {shard-rkl}: [SKIP][98] ([i915#3361]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@system-suspend-modeset: - {shard-tglu}: [SKIP][100] ([i915#3547]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-tglu-6/igt@i915_pm_rpm@system-suspend-modeset.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-2/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][102] ([i915#5334]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][104] ([i915#2346]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - {shard-tglu}: [SKIP][106] ([i915#1845]) -> [PASS][107] +2 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-tglu-6/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-7/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - {shard-rkl}: [SKIP][108] ([i915#4098]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - {shard-rkl}: [SKIP][110] ([fdo#110189] / [i915#3955]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][112] ([i915#79]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - {shard-tglu}: [SKIP][114] ([i915#1849]) -> [PASS][115] +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite: - {shard-rkl}: [SKIP][116] ([i915#1849] / [i915#4098]) -> [PASS][117] +11 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - {shard-tglu}: [SKIP][118] ([i915#433]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html * {igt@kms_plane@invalid-pixel-format-settings}: - {shard-rkl}: [SKIP][120] ([i915#8152]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@kms_plane@invalid-pixel-format-settings.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-6/igt@kms_plane@invalid-pixel-format-settings.html * igt@kms_plane@plane-panning-bottom-right@pipe-a-planes: - {shard-rkl}: [SKIP][122] ([i915#1849]) -> [PASS][123] +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html * igt@kms_psr@primary_mmap_gtt: - {shard-rkl}: [SKIP][124] ([i915#1072]) -> [PASS][125] +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@kms_psr@primary_mmap_gtt.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-6/igt@kms_psr@primary_mmap_gtt.html * igt@kms_vblank@pipe-b-query-idle: - {shard-rkl}: [SKIP][126] ([i915#1845] / [i915#4098]) -> [PASS][127] +17 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@kms_vblank@pipe-b-query-idle.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-6/igt@kms_vblank@pipe-b-query-idle.html * igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm: - {shard-tglu}: [SKIP][128] ([i915#1845] / [i915#7651]) -> [PASS][129] +12 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-tglu-6/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-tglu-1/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html * igt@prime_vgem@coherency-gtt: - {shard-rkl}: [SKIP][130] ([fdo#109295] / [fdo#111656] / [i915#3708]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@prime_vgem@coherency-gtt.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/shard-rkl-5/igt@prime_vgem@coherency-gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154 [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8273]: https://gitlab.freedesktop.org/drm/intel/issues/8273 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7188 -> IGTPW_8582 CI-20190529: 20190529 CI_DRM_12829: d947159409deea43f404f35cc758740c714c8888 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8582: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/index.html IGT_7188: b35bfa32fe672d67ced8555557e3e707ace211ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8582/index.html [-- Attachment #2: Type: text/html, Size: 41698 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-03-16 18:19 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-09 13:51 [igt-dev] [PATCH i-g-t v2 0/2] Add negative tests to VGEM Maíra Canal 2023-03-09 13:51 ` [igt-dev] [PATCH i-g-t v2 1/2] lib/igt_vgem: Use UAPI header Maíra Canal 2023-03-16 18:12 ` Kamil Konieczny 2023-03-09 13:51 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/vgem_basic: Add negative tests Maíra Canal 2023-03-16 18:19 ` Kamil Konieczny 2023-03-09 14:26 ` [igt-dev] ✓ Fi.CI.BAT: success for Add negative tests to VGEM (rev2) Patchwork 2023-03-11 3:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox