* [igt-dev] [i-g-t, v2] test/i915/gem_exec_reloc: check reloc support in GEM
@ 2021-03-16 11:04 Tejas Upadhyay
2021-03-16 12:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Tejas Upadhyay @ 2021-03-16 11:04 UTC (permalink / raw)
To: igt-dev; +Cc: hariom.pandey
i915 kernel driver is dropping reloc support gen12+. This change
will check reloc support in respective platform before executing
gem_exec_reloc in IGT.
Changes since V1 :
- Adjusted for gem_has_relocations(i915)
Ref : https://patchwork.kernel.org/project/dri-devel/patch/20210311162606.1045592-1-jason@jlekstrand.net/
Cc: Maarten Lankhorst<maarten.lankhorst@intel.com>
Signed-off-by: Tejas Upadhyay <tejaskumarx.surendrakumar.upadhyay@intel.com>
---
tests/i915/gem_exec_reloc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/i915/gem_exec_reloc.c b/tests/i915/gem_exec_reloc.c
index 8d52960b..a897cc67 100644
--- a/tests/i915/gem_exec_reloc.c
+++ b/tests/i915/gem_exec_reloc.c
@@ -1478,6 +1478,8 @@ igt_main
igt_fixture {
fd = drm_open_driver_master(DRIVER_INTEL);
igt_require_gem(fd);
+ /* Check if relocations supported by platform */
+ igt_require(gem_has_relocations(fd));
}
for (f = flags; f->name; f++) {
--
2.30.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 9+ messages in thread* [igt-dev] ✗ Fi.CI.BAT: failure for test/i915/gem_exec_reloc: check reloc support in GEM 2021-03-16 11:04 [igt-dev] [i-g-t, v2] test/i915/gem_exec_reloc: check reloc support in GEM Tejas Upadhyay @ 2021-03-16 12:07 ` Patchwork 2021-03-17 8:05 ` Petri Latvala 2021-03-17 9:34 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2021-03-16 12:07 UTC (permalink / raw) To: Tejas Upadhyay; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 2587 bytes --] == Series Details == Series: test/i915/gem_exec_reloc: check reloc support in GEM URL : https://patchwork.freedesktop.org/series/88005/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9860 -> IGTPW_5607 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5607 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5607, 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_5607/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5607: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-skl-6600u: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-skl-6600u/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-skl-6600u/igt@i915_pm_rpm@basic-pci-d3-state.html Known issues ------------ Here are the changes found in IGTPW_5607 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-kbl-8809g: [TIMEOUT][3] ([i915#3145]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145 [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180 Participating hosts (45 -> 40) ------------------------------ Missing (5): fi-ilk-m540 fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6033 -> IGTPW_5607 CI-20190529: 20190529 CI_DRM_9860: 2f5c82c9a6a468ec8b20a3bb322c3289fb05e77b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5607: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html IGT_6033: ecfe4c613cdbc082e4a561ead120b40349b63f2b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html [-- Attachment #1.2: Type: text/html, Size: 3154 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for test/i915/gem_exec_reloc: check reloc support in GEM 2021-03-16 12:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork @ 2021-03-17 8:05 ` Petri Latvala 2021-03-17 16:16 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 9+ messages in thread From: Petri Latvala @ 2021-03-17 8:05 UTC (permalink / raw) To: igt-dev, Lakshminarayana Vudum On Tue, Mar 16, 2021 at 12:07:39PM +0000, Patchwork wrote: > == Series Details == > > Series: test/i915/gem_exec_reloc: check reloc support in GEM > URL : https://patchwork.freedesktop.org/series/88005/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_9860 -> IGTPW_5607 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_5607 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_5607, 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_5607/index.html > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_5607: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pm_rpm@basic-pci-d3-state: > - fi-skl-6600u: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-skl-6600u/igt@i915_pm_rpm@basic-pci-d3-state.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-skl-6600u/igt@i915_pm_rpm@basic-pci-d3-state.html > Lakshmi, false positive here. -- Petri Latvala > > Known issues > ------------ > > Here are the changes found in IGTPW_5607 that come from known issues: > > ### IGT changes ### > > #### Possible fixes #### > > * igt@gem_exec_gttfill@basic: > - fi-kbl-8809g: [TIMEOUT][3] ([i915#3145]) -> [PASS][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145 > [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180 > > > Participating hosts (45 -> 40) > ------------------------------ > > Missing (5): fi-ilk-m540 fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_6033 -> IGTPW_5607 > > CI-20190529: 20190529 > CI_DRM_9860: 2f5c82c9a6a468ec8b20a3bb322c3289fb05e77b @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_5607: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html > IGT_6033: ecfe4c613cdbc082e4a561ead120b40349b63f2b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for test/i915/gem_exec_reloc: check reloc support in GEM 2021-03-17 8:05 ` Petri Latvala @ 2021-03-17 16:16 ` Vudum, Lakshminarayana 2021-03-18 4:25 ` Surendrakumar Upadhyay, TejaskumarX 0 siblings, 1 reply; 9+ messages in thread From: Vudum, Lakshminarayana @ 2021-03-17 16:16 UTC (permalink / raw) To: Latvala, Petri, igt-dev@lists.freedesktop.org Re-reported. -----Original Message----- From: Latvala, Petri <petri.latvala@intel.com> Sent: Wednesday, March 17, 2021 1:06 AM To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Cc: Surendrakumar Upadhyay, TejaskumarX <tejaskumarx.surendrakumar.upadhyay@intel.com> Subject: Re: [igt-dev] ✗ Fi.CI.BAT: failure for test/i915/gem_exec_reloc: check reloc support in GEM On Tue, Mar 16, 2021 at 12:07:39PM +0000, Patchwork wrote: > == Series Details == > > Series: test/i915/gem_exec_reloc: check reloc support in GEM > URL : https://patchwork.freedesktop.org/series/88005/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_9860 -> IGTPW_5607 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_5607 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_5607, 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_5607/index.html > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_5607: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pm_rpm@basic-pci-d3-state: > - fi-skl-6600u: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-skl-6600u/igt@i915_pm_rpm@basic-pci-d3-state.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-skl-6600u/igt@i > 915_pm_rpm@basic-pci-d3-state.html > Lakshmi, false positive here. -- Petri Latvala > > Known issues > ------------ > > Here are the changes found in IGTPW_5607 that come from known issues: > > ### IGT changes ### > > #### Possible fixes #### > > * igt@gem_exec_gttfill@basic: > - fi-kbl-8809g: [TIMEOUT][3] ([i915#3145]) -> [PASS][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145 > [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180 > > > Participating hosts (45 -> 40) > ------------------------------ > > Missing (5): fi-ilk-m540 fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_6033 -> IGTPW_5607 > > CI-20190529: 20190529 > CI_DRM_9860: 2f5c82c9a6a468ec8b20a3bb322c3289fb05e77b @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_5607: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html > IGT_6033: ecfe4c613cdbc082e4a561ead120b40349b63f2b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for test/i915/gem_exec_reloc: check reloc support in GEM 2021-03-17 16:16 ` Vudum, Lakshminarayana @ 2021-03-18 4:25 ` Surendrakumar Upadhyay, TejaskumarX 2021-03-18 6:18 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 9+ messages in thread From: Surendrakumar Upadhyay, TejaskumarX @ 2021-03-18 4:25 UTC (permalink / raw) To: Vudum, Lakshminarayana, Latvala, Petri, igt-dev@lists.freedesktop.org Hi Laxmi, It is not related to patch. Patch runs in gem_exec_reloc testsuit only. Thanks, Tejas > -----Original Message----- > From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> > Sent: 17 March 2021 21:47 > To: Latvala, Petri <petri.latvala@intel.com>; igt-dev@lists.freedesktop.org > Cc: Surendrakumar Upadhyay, TejaskumarX > <tejaskumarx.surendrakumar.upadhyay@intel.com> > Subject: RE: [igt-dev] ✗ Fi.CI.BAT: failure for test/i915/gem_exec_reloc: check > reloc support in GEM > > Re-reported. > > -----Original Message----- > From: Latvala, Petri <petri.latvala@intel.com> > Sent: Wednesday, March 17, 2021 1:06 AM > To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana > <lakshminarayana.vudum@intel.com> > Cc: Surendrakumar Upadhyay, TejaskumarX > <tejaskumarx.surendrakumar.upadhyay@intel.com> > Subject: Re: [igt-dev] ✗ Fi.CI.BAT: failure for test/i915/gem_exec_reloc: check > reloc support in GEM > > On Tue, Mar 16, 2021 at 12:07:39PM +0000, Patchwork wrote: > > == Series Details == > > > > Series: test/i915/gem_exec_reloc: check reloc support in GEM > > URL : https://patchwork.freedesktop.org/series/88005/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from CI_DRM_9860 -> IGTPW_5607 > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > > > Serious unknown changes coming with IGTPW_5607 absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_5607, 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_5607/index.html > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in > IGTPW_5607: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@i915_pm_rpm@basic-pci-d3-state: > > - fi-skl-6600u: [PASS][1] -> [FAIL][2] > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-skl- > 6600u/igt@i915_pm_rpm@basic-pci-d3-state.html > > [2]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-skl-6600u/igt@i > > 915_pm_rpm@basic-pci-d3-state.html > > > > Lakshmi, false positive here. > > > -- > Petri Latvala > > > > > > > > Known issues > > ------------ > > > > Here are the changes found in IGTPW_5607 that come from known issues: > > > > ### IGT changes ### > > > > #### Possible fixes #### > > > > * igt@gem_exec_gttfill@basic: > > - fi-kbl-8809g: [TIMEOUT][3] ([i915#3145]) -> [PASS][4] > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-kbl- > 8809g/igt@gem_exec_gttfill@basic.html > > [4]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-kbl-8809g/igt@g > > em_exec_gttfill@basic.html > > > > > > {name}: This element is suppressed. This means it is ignored when > computing > > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > > [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145 > > [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180 > > > > > > Participating hosts (45 -> 40) > > ------------------------------ > > > > Missing (5): fi-ilk-m540 fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus > > > > > > Build changes > > ------------- > > > > * CI: CI-20190529 -> None > > * IGT: IGT_6033 -> IGTPW_5607 > > > > CI-20190529: 20190529 > > CI_DRM_9860: 2f5c82c9a6a468ec8b20a3bb322c3289fb05e77b @ > git://anongit.freedesktop.org/gfx-ci/linux > > IGTPW_5607: https://intel-gfx-ci.01.org/tree/drm- > tip/IGTPW_5607/index.html > > IGT_6033: ecfe4c613cdbc082e4a561ead120b40349b63f2b @ > > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > > > == Logs == > > > > For more details see: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html > > > _______________________________________________ > > igt-dev mailing list > > igt-dev@lists.freedesktop.org > > https://lists.freedesktop.org/mailman/listinfo/igt-dev > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for test/i915/gem_exec_reloc: check reloc support in GEM 2021-03-18 4:25 ` Surendrakumar Upadhyay, TejaskumarX @ 2021-03-18 6:18 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 9+ messages in thread From: Vudum, Lakshminarayana @ 2021-03-18 6:18 UTC (permalink / raw) To: Surendrakumar Upadhyay, TejaskumarX, Latvala, Petri, igt-dev@lists.freedesktop.org @Surendrakumar Upadhyay, TejaskumarX Looks like all good. -----Original Message----- From: Surendrakumar Upadhyay, TejaskumarX <tejaskumarx.surendrakumar.upadhyay@intel.com> Sent: Wednesday, March 17, 2021 9:25 PM To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>; Latvala, Petri <petri.latvala@intel.com>; igt-dev@lists.freedesktop.org Subject: RE: [igt-dev] ✗ Fi.CI.BAT: failure for test/i915/gem_exec_reloc: check reloc support in GEM Hi Laxmi, It is not related to patch. Patch runs in gem_exec_reloc testsuit only. Thanks, Tejas > -----Original Message----- > From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> > Sent: 17 March 2021 21:47 > To: Latvala, Petri <petri.latvala@intel.com>; > igt-dev@lists.freedesktop.org > Cc: Surendrakumar Upadhyay, TejaskumarX > <tejaskumarx.surendrakumar.upadhyay@intel.com> > Subject: RE: [igt-dev] ✗ Fi.CI.BAT: failure for > test/i915/gem_exec_reloc: check reloc support in GEM > > Re-reported. > > -----Original Message----- > From: Latvala, Petri <petri.latvala@intel.com> > Sent: Wednesday, March 17, 2021 1:06 AM > To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana > <lakshminarayana.vudum@intel.com> > Cc: Surendrakumar Upadhyay, TejaskumarX > <tejaskumarx.surendrakumar.upadhyay@intel.com> > Subject: Re: [igt-dev] ✗ Fi.CI.BAT: failure for > test/i915/gem_exec_reloc: check reloc support in GEM > > On Tue, Mar 16, 2021 at 12:07:39PM +0000, Patchwork wrote: > > == Series Details == > > > > Series: test/i915/gem_exec_reloc: check reloc support in GEM > > URL : https://patchwork.freedesktop.org/series/88005/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from CI_DRM_9860 -> IGTPW_5607 > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > > > Serious unknown changes coming with IGTPW_5607 absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_5607, 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_5607/index.html > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in > IGTPW_5607: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@i915_pm_rpm@basic-pci-d3-state: > > - fi-skl-6600u: [PASS][1] -> [FAIL][2] > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-skl- > 6600u/igt@i915_pm_rpm@basic-pci-d3-state.html > > [2]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-skl-6600u/igt > > @i > > 915_pm_rpm@basic-pci-d3-state.html > > > > Lakshmi, false positive here. > > > -- > Petri Latvala > > > > > > > > Known issues > > ------------ > > > > Here are the changes found in IGTPW_5607 that come from known issues: > > > > ### IGT changes ### > > > > #### Possible fixes #### > > > > * igt@gem_exec_gttfill@basic: > > - fi-kbl-8809g: [TIMEOUT][3] ([i915#3145]) -> [PASS][4] > > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-kbl- > 8809g/igt@gem_exec_gttfill@basic.html > > [4]: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-kbl-8809g/igt > > @g > > em_exec_gttfill@basic.html > > > > > > {name}: This element is suppressed. This means it is ignored when > computing > > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > > [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145 > > [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180 > > > > > > Participating hosts (45 -> 40) > > ------------------------------ > > > > Missing (5): fi-ilk-m540 fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus > > > > > > Build changes > > ------------- > > > > * CI: CI-20190529 -> None > > * IGT: IGT_6033 -> IGTPW_5607 > > > > CI-20190529: 20190529 > > CI_DRM_9860: 2f5c82c9a6a468ec8b20a3bb322c3289fb05e77b @ > git://anongit.freedesktop.org/gfx-ci/linux > > IGTPW_5607: https://intel-gfx-ci.01.org/tree/drm- > tip/IGTPW_5607/index.html > > IGT_6033: ecfe4c613cdbc082e4a561ead120b40349b63f2b @ > > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > > > == Logs == > > > > For more details see: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html > > > _______________________________________________ > > igt-dev mailing list > > igt-dev@lists.freedesktop.org > > https://lists.freedesktop.org/mailman/listinfo/igt-dev > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for test/i915/gem_exec_reloc: check reloc support in GEM 2021-03-16 11:04 [igt-dev] [i-g-t, v2] test/i915/gem_exec_reloc: check reloc support in GEM Tejas Upadhyay 2021-03-16 12:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork @ 2021-03-17 9:34 ` Patchwork 2021-03-17 16:12 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2021-03-17 18:43 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-03-17 9:34 UTC (permalink / raw) To: Tejas Upadhyay; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30270 bytes --] == Series Details == Series: test/i915/gem_exec_reloc: check reloc support in GEM URL : https://patchwork.freedesktop.org/series/88005/ State : success == Summary == CI Bug Log - changes from CI_DRM_9860_full -> IGTPW_5607_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_5607_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5607_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_5607/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5607_full: ### IGT changes ### #### Warnings #### * igt@kms_content_protection@uevent: - shard-kbl: [FAIL][1] ([i915#2105]) -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl7/igt@kms_content_protection@uevent.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl7/igt@kms_content_protection@uevent.html Known issues ------------ Here are the changes found in IGTPW_5607_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@psr2: - shard-iclb: NOTRUN -> [SKIP][3] ([i915#658]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@feature_discovery@psr2.html * igt@gem_ctx_persistence@engines-mixed: - shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) +5 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb6/igt@gem_ctx_persistence@engines-mixed.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][5] ([i915#280]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@hang: - shard-iclb: [PASS][6] -> [INCOMPLETE][7] ([i915#1895] / [i915#3031]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb3/igt@gem_exec_balancer@hang.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_exec_balancer@hang.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][8] -> [FAIL][9] ([i915#2846]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk4/igt@gem_exec_fair@basic-deadline.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk5/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][10] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl6/igt@gem_exec_fair@basic-none-solo@rcs0.html - shard-glk: NOTRUN -> [FAIL][11] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk4/igt@gem_exec_fair@basic-none-solo@rcs0.html - shard-iclb: NOTRUN -> [FAIL][12] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@gem_exec_fair@basic-none-solo@rcs0.html - shard-tglb: NOTRUN -> [FAIL][13] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb5/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][14] -> [FAIL][15] ([i915#2842]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-kbl: [PASS][16] -> [FAIL][17] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_params@no-vebox: - shard-iclb: NOTRUN -> [SKIP][18] ([fdo#109283]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@gem_exec_params@no-vebox.html - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#109283]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb7/igt@gem_exec_params@no-vebox.html * igt@gem_exec_reloc@basic-wide-active@vcs1: - shard-iclb: NOTRUN -> [FAIL][20] ([i915#2389]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_exec_reloc@basic-wide-active@vcs1.html * igt@gem_exec_schedule@u-fairslice@rcs0: - shard-iclb: [PASS][21] -> [DMESG-WARN][22] ([i915#2803]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb5/igt@gem_exec_schedule@u-fairslice@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_exec_schedule@u-fairslice@rcs0.html * igt@gem_exec_whisper@basic-contexts: - shard-glk: [PASS][23] -> [DMESG-WARN][24] ([i915#118] / [i915#95]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk8/igt@gem_exec_whisper@basic-contexts.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk3/igt@gem_exec_whisper@basic-contexts.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][25] ([i915#2658]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb7/igt@gem_pwrite@basic-exhaustion.html - shard-iclb: NOTRUN -> [WARN][26] ([i915#2658]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_pwrite@basic-exhaustion.html - shard-kbl: NOTRUN -> [WARN][27] ([i915#2658]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl3/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: NOTRUN -> [WARN][28] ([i915#2658]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb2/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][29] ([i915#2658]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk9/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][30] ([i915#768]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [INCOMPLETE][31] ([i915#2502] / [i915#2667]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl6/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#112306]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb3/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-iclb: NOTRUN -> [SKIP][33] ([fdo#112306]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][34] -> [FAIL][35] ([i915#454]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb8/igt@i915_pm_dc@dc6-psr.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#109289] / [fdo#111719]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html - shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109289]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271]) +190 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl1/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_query@query-topology-unsupported: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109302]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][40] -> [INCOMPLETE][41] ([i915#2782]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-snb7/igt@i915_selftest@live@hangcheck.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb5/igt@i915_selftest@live@hangcheck.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-iclb: NOTRUN -> [SKIP][42] ([i915#1769]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb2/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#110725] / [fdo#111614]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_ccs@pipe-a-ccs-on-another-bo: - shard-snb: NOTRUN -> [SKIP][44] ([fdo#109271]) +347 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb2/igt@kms_ccs@pipe-a-ccs-on-another-bo.html * igt@kms_chamelium@hdmi-hpd-storm: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +8 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl2/igt@kms_chamelium@hdmi-hpd-storm.html * igt@kms_chamelium@vga-hpd: - shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +22 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl3/igt@kms_chamelium@vga-hpd.html * igt@kms_chamelium@vga-hpd-without-ddc: - shard-snb: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +23 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb5/igt@kms_chamelium@vga-hpd-without-ddc.html * igt@kms_color@pipe-b-ctm-0-75: - shard-iclb: NOTRUN -> [FAIL][48] ([i915#1149] / [i915#315]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb2/igt@kms_color@pipe-b-ctm-0-75.html * igt@kms_color@pipe-b-degamma: - shard-tglb: NOTRUN -> [FAIL][49] ([i915#1149]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb8/igt@kms_color@pipe-b-degamma.html - shard-iclb: NOTRUN -> [FAIL][50] ([i915#1149]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb7/igt@kms_color@pipe-b-degamma.html * igt@kms_color_chamelium@pipe-c-ctm-limited-range: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@kms_color_chamelium@pipe-c-ctm-limited-range.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-tglb: NOTRUN -> [SKIP][52] ([fdo#109284] / [fdo#111827]) +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html - shard-glk: NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk7/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_color_chamelium@pipe-d-ctm-negative: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@kms_color_chamelium@pipe-d-ctm-negative.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen: - shard-glk: NOTRUN -> [SKIP][55] ([fdo#109271]) +24 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk4/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109278] / [fdo#109279]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-onscreen: - shard-tglb: NOTRUN -> [SKIP][57] ([fdo#109279]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x170-onscreen.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109274] / [fdo#109278]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-kbl: NOTRUN -> [DMESG-FAIL][59] ([IGT#6]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html - shard-apl: NOTRUN -> [DMESG-FAIL][60] ([IGT#6]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt@kms_cursor_legacy@pipe-d-single-move: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109278]) +9 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#533]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk5/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_dp_dsc@basic-dsc-enable-dp: - shard-tglb: NOTRUN -> [SKIP][63] ([fdo#109349]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb3/igt@kms_dp_dsc@basic-dsc-enable-dp.html * igt@kms_dp_tiled_display@basic-test-pattern: - shard-iclb: NOTRUN -> [SKIP][64] ([i915#426]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@kms_dp_tiled_display@basic-test-pattern.html - shard-tglb: NOTRUN -> [SKIP][65] ([i915#426]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb1/igt@kms_dp_tiled_display@basic-test-pattern.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109274]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-suspend-interruptible@a-edp1: - shard-tglb: [PASS][67] -> [DMESG-WARN][68] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-tglb8/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl2/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#2642]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile: - shard-apl: NOTRUN -> [FAIL][72] ([i915#2641]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#2672]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-apl: [PASS][74] -> [FAIL][75] ([i915#49]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-apl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html - shard-kbl: [PASS][76] -> [FAIL][77] ([i915#49]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-kbl: NOTRUN -> [SKIP][78] ([fdo#109271]) +91 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-tglb: NOTRUN -> [SKIP][79] ([fdo#111825]) +15 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-iclb: NOTRUN -> [SKIP][80] ([fdo#109280]) +12 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-swap: - shard-iclb: NOTRUN -> [SKIP][81] ([i915#1187]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@kms_hdr@static-swap.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-kbl: [PASS][82] -> [DMESG-WARN][83] ([i915#180] / [i915#533]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane_alpha_blend@pipe-b-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][85] ([fdo#108145] / [i915#265]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html - shard-kbl: NOTRUN -> [FAIL][86] ([fdo#108145] / [i915#265]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4: - shard-apl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#658]) +4 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-0: - shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html - shard-kbl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#658]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl1/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html * igt@kms_psr2_su@page_flip: - shard-iclb: [PASS][90] -> [SKIP][91] ([fdo#109642] / [fdo#111068] / [i915#658]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb2/igt@kms_psr2_su@page_flip.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][92] -> [SKIP][93] ([fdo#109441]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109441]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_sysfs_edid_timing: - shard-apl: NOTRUN -> [FAIL][95] ([IGT#2]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl8/igt@kms_sysfs_edid_timing.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][96] -> [DMESG-WARN][97] ([i915#180] / [i915#295]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-kbl: [PASS][98] -> [DMESG-WARN][99] ([i915#180]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl6/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl3/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-idle: - shard-kbl: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#533]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl2/igt@kms_vblank@pipe-d-wait-idle.html - shard-apl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl1/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2437]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2437]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk2/igt@kms_writeback@writeback-pixel-formats.html - shard-iclb: NOTRUN -> [SKIP][104] ([i915#2437]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@kms_writeback@writeback-pixel-formats.html - shard-tglb: NOTRUN -> [SKIP][105] ([i915#2437]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb1/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-tglb: NOTRUN -> [SKIP][106] ([i915#2530]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb5/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html - shard-iclb: NOTRUN -> [SKIP][107] ([i915#2530]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@perf_pmu@event-wait@rcs0: - shard-iclb: NOTRUN -> [SKIP][108] ([fdo#112283]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb7/igt@perf_pmu@event-wait@rcs0.html * igt@prime_nv_test@nv_write_i915_cpu_mmap_read: - shard-tglb: NOTRUN -> [SKIP][109] ([fdo#109291]) +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb2/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html - shard-iclb: NOTRUN -> [SKIP][110] ([fdo#109291]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb8/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html * igt@sysfs_clients@recycle: - shard-kbl: [PASS][111] -> [FAIL][112] ([i915#3028]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl7/igt@sysfs_clients@recycle.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl2/igt@sysfs_clients@recycle.html * igt@sysfs_clients@recycle-many: - shard-apl: [PASS][113] -> [FAIL][114] ([i915#3028]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-apl3/igt@sysfs_clients@recycle-many.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl3/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-10@vcs0: - shard-apl: [PASS][115] -> [SKIP][116] ([fdo#109271] / [i915#3026]) +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-apl8/igt@sysfs_clients@sema-10@vcs0.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl2/igt@sysfs_clients@sema-10@vcs0.html - shard-kbl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#3026]) +4 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl6/igt@sysfs_clients@sema-10@vcs0.html * igt@sysfs_clients@split-10@bcs0: - shard-glk: [PASS][118] -> [SKIP][119] ([fdo#109271] / [i915#3026]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk9/igt@sysfs_clients@split-10@bcs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk7/igt@sysfs_clients@split-10@bcs0.html * igt@tools_test@sysfs_l3_parity: - shard-iclb: NOTRUN -> [SKIP][120] ([fdo#109307]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ctx_shared@q-smoketest-all: - shard-glk: [DMESG-WARN][121] ([i915#118] / [i915#95]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk9/igt@gem_ctx_shared@q-smoketest-all.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk2/igt@gem_ctx_shared@q-smoketest-all.html * igt@gem_exec_fair@basic-none@vcs1: - shard-kbl: [FAIL][123] ([i915#2842]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl2/igt@gem_exec_fair@basic-none@vcs1.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl4/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-tglb: [FAIL][125] ([i915#2842]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs0.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_schedule@u-fairslice@vcs0: - shard-iclb: [DMESG-WARN][127] ([i915#2803]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb5/igt@gem_exec_schedule@u-fairslice@vcs0.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_exec_schedule@u-fairslice@vcs0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-iclb: [FAIL][129] ([i915#2428]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb4/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [DMESG-WARN][131] ([i915#180]) -> [PASS][132] +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic: - shard-snb: [SKIP][133] ([fdo#109271]) -> [PASS][134] +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-snb2/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb2/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][135] ([i915#79]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@sysfs_clients@recycle: - shard-tglb: [FAIL][137] ([i915#3028]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-tglb6/igt@sysfs_clients@recycle.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb7/igt@sysfs_clients@recycle.html * igt@sysfs_clients@recycle-many: - shard-glk: [FAIL][139] ([i915#3028]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk4/igt@sysfs_clients@recycle-many.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk3/igt@sysfs_clients@recycle-many.html #### Warnings #### * igt@gem_exec_fair@basic-pace@vcs0: - shard-kbl: [FAIL][141] ([i915#2842]) -> [SKIP][142] ([fdo#109271]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs0.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][143] ([i915#658]) -> [SKIP][144] ([i915#588]) [143]: https://intel == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html [-- Attachment #1.2: Type: text/html, Size: 33724 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for test/i915/gem_exec_reloc: check reloc support in GEM 2021-03-16 11:04 [igt-dev] [i-g-t, v2] test/i915/gem_exec_reloc: check reloc support in GEM Tejas Upadhyay 2021-03-16 12:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork 2021-03-17 9:34 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2021-03-17 16:12 ` Patchwork 2021-03-17 18:43 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-03-17 16:12 UTC (permalink / raw) To: Tejas Upadhyay; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 2229 bytes --] == Series Details == Series: test/i915/gem_exec_reloc: check reloc support in GEM URL : https://patchwork.freedesktop.org/series/88005/ State : success == Summary == CI Bug Log - changes from CI_DRM_9860 -> IGTPW_5607 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html Known issues ------------ Here are the changes found in IGTPW_5607 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-skl-6600u: [PASS][1] -> [FAIL][2] ([i915#3239]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-skl-6600u/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-skl-6600u/igt@i915_pm_rpm@basic-pci-d3-state.html #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-kbl-8809g: [TIMEOUT][3] ([i915#3145]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145 [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180 [i915#3239]: https://gitlab.freedesktop.org/drm/intel/issues/3239 Participating hosts (45 -> 40) ------------------------------ Missing (5): fi-ilk-m540 fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6033 -> IGTPW_5607 CI-20190529: 20190529 CI_DRM_9860: 2f5c82c9a6a468ec8b20a3bb322c3289fb05e77b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5607: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html IGT_6033: ecfe4c613cdbc082e4a561ead120b40349b63f2b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html [-- Attachment #1.2: Type: text/html, Size: 2781 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for test/i915/gem_exec_reloc: check reloc support in GEM 2021-03-16 11:04 [igt-dev] [i-g-t, v2] test/i915/gem_exec_reloc: check reloc support in GEM Tejas Upadhyay ` (2 preceding siblings ...) 2021-03-17 16:12 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2021-03-17 18:43 ` Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-03-17 18:43 UTC (permalink / raw) To: Tejas Upadhyay; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30270 bytes --] == Series Details == Series: test/i915/gem_exec_reloc: check reloc support in GEM URL : https://patchwork.freedesktop.org/series/88005/ State : success == Summary == CI Bug Log - changes from CI_DRM_9860_full -> IGTPW_5607_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_5607_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5607_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_5607/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5607_full: ### IGT changes ### #### Warnings #### * igt@kms_content_protection@uevent: - shard-kbl: [FAIL][1] ([i915#2105]) -> ([FAIL][2], [FAIL][3]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl7/igt@kms_content_protection@uevent.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl1/igt@kms_content_protection@uevent.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl7/igt@kms_content_protection@uevent.html Known issues ------------ Here are the changes found in IGTPW_5607_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@psr2: - shard-iclb: NOTRUN -> ([SKIP][4], [PASS][5]) ([i915#658]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@feature_discovery@psr2.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_create@create-clear: - shard-iclb: [PASS][6] -> [FAIL][7] ([i915#3160]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb6/igt@gem_create@create-clear.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@gem_create@create-clear.html * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-kbl: NOTRUN -> ([DMESG-WARN][8], [PASS][9]) ([i915#180]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_persistence@engines-mixed: - shard-snb: NOTRUN -> ([SKIP][10], [SKIP][11]) ([fdo#109271] / [i915#1099]) +3 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb6/igt@gem_ctx_persistence@engines-mixed.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb7/igt@gem_ctx_persistence@engines-mixed.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb2/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> ([SKIP][13], [SKIP][14]) ([i915#280]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb8/igt@gem_ctx_sseu@mmap-args.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@hang: - shard-iclb: [PASS][15] -> ([PASS][16], [INCOMPLETE][17]) ([i915#1895] / [i915#3031]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb3/igt@gem_exec_balancer@hang.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@gem_exec_balancer@hang.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_exec_balancer@hang.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][18] -> ([FAIL][19], [FAIL][20]) ([i915#2846]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk4/igt@gem_exec_fair@basic-deadline.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk7/igt@gem_exec_fair@basic-deadline.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk5/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> ([FAIL][21], [FAIL][22]) ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html - shard-glk: NOTRUN -> [FAIL][23] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk4/igt@gem_exec_fair@basic-none-solo@rcs0.html - shard-iclb: NOTRUN -> ([FAIL][24], [FAIL][25]) ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@gem_exec_fair@basic-none-solo@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@gem_exec_fair@basic-none-solo@rcs0.html - shard-tglb: NOTRUN -> ([FAIL][26], [FAIL][27]) ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb7/igt@gem_exec_fair@basic-none-solo@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb5/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][28] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][29] -> ([FAIL][30], [FAIL][31]) ([i915#2842]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][32] -> ([FAIL][33], [PASS][34]) ([i915#2842]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_params@no-vebox: - shard-iclb: NOTRUN -> ([SKIP][35], [SKIP][36]) ([fdo#109283]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@gem_exec_params@no-vebox.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb8/igt@gem_exec_params@no-vebox.html - shard-tglb: NOTRUN -> ([SKIP][37], [SKIP][38]) ([fdo#109283]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb7/igt@gem_exec_params@no-vebox.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb1/igt@gem_exec_params@no-vebox.html * igt@gem_exec_reloc@basic-many-active@vcs1: - shard-iclb: NOTRUN -> [FAIL][39] ([i915#2389]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@gem_exec_reloc@basic-many-active@vcs1.html * igt@gem_exec_reloc@basic-wide-active@vcs1: - shard-iclb: NOTRUN -> ([FAIL][40], [FAIL][41]) ([i915#2389]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb2/igt@gem_exec_reloc@basic-wide-active@vcs1.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_exec_reloc@basic-wide-active@vcs1.html * igt@gem_exec_schedule@u-fairslice@rcs0: - shard-iclb: [PASS][42] -> ([DMESG-WARN][43], [PASS][44]) ([i915#2803]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb5/igt@gem_exec_schedule@u-fairslice@rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_exec_schedule@u-fairslice@rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb2/igt@gem_exec_schedule@u-fairslice@rcs0.html * igt@gem_exec_whisper@basic-contexts: - shard-glk: [PASS][45] -> ([PASS][46], [DMESG-WARN][47]) ([i915#118] / [i915#95]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk8/igt@gem_exec_whisper@basic-contexts.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk5/igt@gem_exec_whisper@basic-contexts.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk3/igt@gem_exec_whisper@basic-contexts.html * igt@gem_mmap_gtt@big-copy: - shard-glk: [PASS][48] -> ([PASS][49], [FAIL][50]) ([i915#307]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk9/igt@gem_mmap_gtt@big-copy.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk4/igt@gem_mmap_gtt@big-copy.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk8/igt@gem_mmap_gtt@big-copy.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][51] ([i915#2658]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb7/igt@gem_pwrite@basic-exhaustion.html - shard-iclb: NOTRUN -> ([WARN][52], [WARN][53]) ([i915#2658]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb1/igt@gem_pwrite@basic-exhaustion.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@gem_pwrite@basic-exhaustion.html - shard-kbl: NOTRUN -> ([WARN][54], [WARN][55]) ([i915#2658]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl3/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][56] ([i915#2658]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl7/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: NOTRUN -> [WARN][57] ([i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb2/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][58] ([i915#2658]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk9/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> ([SKIP][59], [SKIP][60]) ([i915#768]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][61] ([i915#3002]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl2/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [INCOMPLETE][62] ([i915#2502] / [i915#2667]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl6/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglb: NOTRUN -> [SKIP][63] ([fdo#112306]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb3/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-iclb: NOTRUN -> ([SKIP][64], [SKIP][65]) ([fdo#112306]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@gen9_exec_parse@basic-rejected-ctx-param.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-apl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl3/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][67] -> ([PASS][68], [FAIL][69]) ([i915#454]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-iclb8/igt@i915_pm_dc@dc6-psr.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@i915_pm_dc@dc6-psr.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#109289] / [fdo#111719]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html - shard-iclb: NOTRUN -> ([SKIP][71], [SKIP][72]) ([fdo#109289]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-kbl: NOTRUN -> [SKIP][73] ([fdo#109271]) +29 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-apl: NOTRUN -> ([SKIP][74], [SKIP][75]) ([fdo#109271]) +127 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl6/igt@i915_pm_rpm@modeset-pc8-residency-stress.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl1/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_query@query-topology-unsupported: - shard-iclb: NOTRUN -> ([SKIP][76], [SKIP][77]) ([fdo#109302]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@i915_query@query-topology-unsupported.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@client: - shard-glk: [PASS][78] -> [DMESG-FAIL][79] ([i915#3047]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk6/igt@i915_selftest@live@client.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk3/igt@i915_selftest@live@client.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][80] -> ([PASS][81], [INCOMPLETE][82]) ([i915#2782]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-snb7/igt@i915_selftest@live@hangcheck.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb2/igt@i915_selftest@live@hangcheck.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb5/igt@i915_selftest@live@hangcheck.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-iclb: NOTRUN -> ([SKIP][83], [SKIP][84]) ([i915#1769]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb2/igt@kms_atomic_transition@plane-all-modeset-transition.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-iclb: NOTRUN -> ([SKIP][85], [SKIP][86]) ([fdo#110725] / [fdo#111614]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@kms_big_fb@linear-8bpp-rotate-90.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_ccs@pipe-a-ccs-on-another-bo: - shard-snb: NOTRUN -> ([SKIP][87], [SKIP][88]) ([fdo#109271]) +252 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb2/igt@kms_ccs@pipe-a-ccs-on-another-bo.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb6/igt@kms_ccs@pipe-a-ccs-on-another-bo.html * igt@kms_chamelium@hdmi-hpd-storm: - shard-kbl: NOTRUN -> ([SKIP][89], [SKIP][90]) ([fdo#109271] / [fdo#111827]) +5 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl1/igt@kms_chamelium@hdmi-hpd-storm.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl2/igt@kms_chamelium@hdmi-hpd-storm.html * igt@kms_chamelium@vga-hpd: - shard-apl: NOTRUN -> ([SKIP][91], [SKIP][92]) ([fdo#109271] / [fdo#111827]) +12 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl3/igt@kms_chamelium@vga-hpd.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl8/igt@kms_chamelium@vga-hpd.html * igt@kms_chamelium@vga-hpd-without-ddc: - shard-snb: NOTRUN -> ([SKIP][93], [SKIP][94]) ([fdo#109271] / [fdo#111827]) +12 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb2/igt@kms_chamelium@vga-hpd-without-ddc.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb5/igt@kms_chamelium@vga-hpd-without-ddc.html * igt@kms_color@pipe-b-ctm-0-75: - shard-iclb: NOTRUN -> ([FAIL][95], [FAIL][96]) ([i915#1149] / [i915#315]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@kms_color@pipe-b-ctm-0-75.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb2/igt@kms_color@pipe-b-ctm-0-75.html * igt@kms_color@pipe-b-degamma: - shard-tglb: NOTRUN -> ([FAIL][97], [FAIL][98]) ([i915#1149]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb5/igt@kms_color@pipe-b-degamma.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb8/igt@kms_color@pipe-b-degamma.html - shard-iclb: NOTRUN -> ([FAIL][99], [FAIL][100]) ([i915#1149]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb7/igt@kms_color@pipe-b-degamma.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@kms_color@pipe-b-degamma.html * igt@kms_color@pipe-d-ctm-red-to-blue: - shard-iclb: NOTRUN -> [SKIP][101] ([fdo#109278] / [i915#1149]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@kms_color@pipe-d-ctm-red-to-blue.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][102] ([fdo#109271] / [fdo#111827]) +14 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-snb7/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-b-ctm-limited-range: - shard-kbl: NOTRUN -> [SKIP][103] ([fdo#109271] / [fdo#111827]) +4 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl4/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-apl: NOTRUN -> [SKIP][104] ([fdo#109271] / [fdo#111827]) +14 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-limited-range: - shard-iclb: NOTRUN -> ([SKIP][105], [SKIP][106]) ([fdo#109284] / [fdo#111827]) +3 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@kms_color_chamelium@pipe-c-ctm-limited-range.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb8/igt@kms_color_chamelium@pipe-c-ctm-limited-range.html - shard-tglb: NOTRUN -> ([SKIP][107], [SKIP][108]) ([fdo#109284] / [fdo#111827]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb8/igt@kms_color_chamelium@pipe-c-ctm-limited-range.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb7/igt@kms_color_chamelium@pipe-c-ctm-limited-range.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-tglb: NOTRUN -> [SKIP][109] ([fdo#109284] / [fdo#111827]) +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html - shard-glk: NOTRUN -> ([SKIP][110], [SKIP][111]) ([fdo#109271] / [fdo#111827]) +2 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk7/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_color_chamelium@pipe-d-ctm-negative: - shard-iclb: NOTRUN -> ([SKIP][112], [SKIP][113]) ([fdo#109278] / [fdo#109284] / [fdo#111827]) +2 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@kms_color_chamelium@pipe-d-ctm-negative.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@kms_color_chamelium@pipe-d-ctm-negative.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen: - shard-glk: NOTRUN -> ([SKIP][114], [SKIP][115]) ([fdo#109271]) +21 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk8/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk4/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html - shard-iclb: NOTRUN -> ([SKIP][116], [SKIP][117]) ([fdo#109278] / [fdo#109279]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html - shard-tglb: NOTRUN -> ([SKIP][118], [SKIP][119]) ([fdo#109279]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html * igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen: - shard-iclb: NOTRUN -> [SKIP][120] ([fdo#109278] / [fdo#109279]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb7/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-onscreen: - shard-tglb: NOTRUN -> [SKIP][121] ([fdo#109279]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x170-onscreen.html * igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge: - shard-glk: [PASS][122] -> ([DMESG-FAIL][123], [PASS][124]) ([i915#118] / [i915#70] / [i915#95]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-glk6/igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk7/igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk5/igt@kms_cursor_edge_walk@pipe-a-256x256-top-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-iclb: NOTRUN -> ([SKIP][125], [SKIP][126]) ([fdo#109274] / [fdo#109278]) +2 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-iclb: NOTRUN -> [SKIP][127] ([fdo#109274] / [fdo#109278]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-kbl: NOTRUN -> ([DMESG-FAIL][128], [DMESG-FAIL][129]) ([IGT#6]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl7/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html - shard-apl: NOTRUN -> [DMESG-FAIL][130] ([IGT#6]) +1 similar issue [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt@kms_cursor_legacy@pipe-d-single-move: - shard-iclb: NOTRUN -> [SKIP][131] ([fdo#109278]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-iclb: NOTRUN -> ([SKIP][132], [SKIP][133]) ([fdo#109278]) +8 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb2/igt@kms_cursor_legacy@pipe-d-torture-bo.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb4/igt@kms_cursor_legacy@pipe-d-torture-bo.html - shard-kbl: NOTRUN -> [SKIP][134] ([fdo#109271] / [i915#533]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html - shard-glk: NOTRUN -> ([SKIP][135], [SKIP][136]) ([fdo#109271] / [i915#533]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk7/igt@kms_cursor_legacy@pipe-d-torture-bo.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-glk5/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_dp_dsc@basic-dsc-enable-dp: - shard-tglb: NOTRUN -> [SKIP][137] ([fdo#109349]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb3/igt@kms_dp_dsc@basic-dsc-enable-dp.html * igt@kms_dp_tiled_display@basic-test-pattern: - shard-iclb: NOTRUN -> ([SKIP][138], [SKIP][139]) ([i915#426]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb8/igt@kms_dp_tiled_display@basic-test-pattern.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@kms_dp_tiled_display@basic-test-pattern.html - shard-tglb: NOTRUN -> [SKIP][140] ([i915#426]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb1/igt@kms_dp_tiled_display@basic-test-pattern.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-iclb: NOTRUN -> ([SKIP][141], [SKIP][142]) ([fdo#109274]) +1 similar issue [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-iclb5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [PASS][143] -> ([PASS][144], [DMESG-WARN][145]) ([i915#180]) +6 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-edp1: - shard-tglb: [PASS][146] -> [DMESG-WARN][147] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-tglb8/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1: - shard-apl: [PASS][148] -> ([DMESG-WARN][149], [PASS][150]) ([i915#180]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][151] -> [DMESG-WARN][152] ([i915#180]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl2/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: - shard-apl: NOTRUN -> ([SKIP][153], [SKIP][154]) ([fdo#109271] / [i915#2642]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile: - shard-apl: NOTRUN -> ([FAIL][155], [FAIL][156]) ([i915#2641]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs: - shard-apl: NOTRUN -> ([SKIP][157], [SKIP][158]) ([fdo#109271] / [i915#2672]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/shard-apl8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-apl: [PASS][159] -> ([FAIL][160], [FAIL][161]) ([i915#49]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9860/shard-apl1/igt@kms_frontbuffer_tracking@fbc-1p-prims == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5607/index.html [-- Attachment #1.2: Type: text/html, Size: 32980 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2021-03-18 6:18 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-03-16 11:04 [igt-dev] [i-g-t, v2] test/i915/gem_exec_reloc: check reloc support in GEM Tejas Upadhyay 2021-03-16 12:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork 2021-03-17 8:05 ` Petri Latvala 2021-03-17 16:16 ` Vudum, Lakshminarayana 2021-03-18 4:25 ` Surendrakumar Upadhyay, TejaskumarX 2021-03-18 6:18 ` Vudum, Lakshminarayana 2021-03-17 9:34 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2021-03-17 16:12 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2021-03-17 18:43 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.