* [igt-dev] [PATCH i-g-t 1/2] testplan/meson.build: don't generate testlist on cross-compilation
@ 2023-04-27 10:41 Mauro Carvalho Chehab
2023-04-27 10:41 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_freq_api: add missing include Mauro Carvalho Chehab
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Mauro Carvalho Chehab @ 2023-04-27 10:41 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
When doing cross-compilation, the binaries won't likely run at
the builder machine. So, it is not possible to verify if there are
documentation gaps.
On such cases, skip checking it.
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
docs/testplan/meson.build | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build
index 3347f61876ef..e36713960ccd 100644
--- a/docs/testplan/meson.build
+++ b/docs/testplan/meson.build
@@ -11,8 +11,13 @@ xe_test_config = join_paths(source_root, 'tests', 'xe', 'xe_test_config.json')
check_testlist = []
if build_tests
doc_dependencies = test_executables
- # Check if documentation matches the actual tests
- check_testlist = [ '--check-testlist', '--igt-build-path', build_root ]
+ # Check if documentation matches the actual tests and tests can run
+ if not meson.is_cross_build()
+ build_info += 'Will Check if documentation is in sync with testlist'
+ check_testlist = [ '--check-testlist', '--igt-build-path', build_root ]
+ else
+ warning('WARNING: Will not check if documentation is in sync with testlist')
+ endif
else
doc_dependencies = []
endif
--
2.40.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_freq_api: add missing include 2023-04-27 10:41 [igt-dev] [PATCH i-g-t 1/2] testplan/meson.build: don't generate testlist on cross-compilation Mauro Carvalho Chehab @ 2023-04-27 10:41 ` Mauro Carvalho Chehab 2023-04-27 12:06 ` Andrzej Hajda 2023-04-27 12:02 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] testplan/meson.build: don't generate testlist on cross-compilation Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 6+ messages in thread From: Mauro Carvalho Chehab @ 2023-04-27 10:41 UTC (permalink / raw) To: igt-dev From: Kamil Konieczny <kamil.konieczny@linux.intel.com> Add missing include file. This fixes armhf, aarch64 and mips cross-compilation error: ../tests/i915/i915_pm_freq_api.c:80:46: error: ‘O_WRONLY’ undeclared (first use in this function); did you mean ‘STA_RONLY’? Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- tests/i915/i915_pm_freq_api.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/i915/i915_pm_freq_api.c b/tests/i915/i915_pm_freq_api.c index 7342f5414034..662d514a4ef6 100644 --- a/tests/i915/i915_pm_freq_api.c +++ b/tests/i915/i915_pm_freq_api.c @@ -3,6 +3,8 @@ * Copyright © 2023 Intel Corporation */ +#include <fcntl.h> + #include "i915/gem.h" #include "igt_sysfs.h" #include "igt.h" -- 2.40.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_freq_api: add missing include 2023-04-27 10:41 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_freq_api: add missing include Mauro Carvalho Chehab @ 2023-04-27 12:06 ` Andrzej Hajda 0 siblings, 0 replies; 6+ messages in thread From: Andrzej Hajda @ 2023-04-27 12:06 UTC (permalink / raw) To: Mauro Carvalho Chehab, igt-dev On 27.04.2023 12:41, Mauro Carvalho Chehab wrote: > From: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Add missing include file. This fixes armhf, aarch64 and mips > cross-compilation error: > > ../tests/i915/i915_pm_freq_api.c:80:46: error: ‘O_WRONLY’ undeclared (first use in this function); did you mean ‘STA_RONLY’? > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Regards Andrzej > --- > tests/i915/i915_pm_freq_api.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tests/i915/i915_pm_freq_api.c b/tests/i915/i915_pm_freq_api.c > index 7342f5414034..662d514a4ef6 100644 > --- a/tests/i915/i915_pm_freq_api.c > +++ b/tests/i915/i915_pm_freq_api.c > @@ -3,6 +3,8 @@ > * Copyright © 2023 Intel Corporation > */ > > +#include <fcntl.h> > + > #include "i915/gem.h" > #include "igt_sysfs.h" > #include "igt.h" ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] testplan/meson.build: don't generate testlist on cross-compilation 2023-04-27 10:41 [igt-dev] [PATCH i-g-t 1/2] testplan/meson.build: don't generate testlist on cross-compilation Mauro Carvalho Chehab 2023-04-27 10:41 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_freq_api: add missing include Mauro Carvalho Chehab @ 2023-04-27 12:02 ` Patchwork 2023-04-27 12:05 ` [igt-dev] [PATCH i-g-t 1/2] " Andrzej Hajda 2023-04-27 14:55 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-04-27 12:02 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7303 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] testplan/meson.build: don't generate testlist on cross-compilation URL : https://patchwork.freedesktop.org/series/117047/ State : success == Summary == CI Bug Log - changes from CI_DRM_13069 -> IGTPW_8872 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/index.html Participating hosts (40 -> 37) ------------------------------ Missing (3): bat-adlp-9 bat-rpls-2 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8872 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@parallel-random-engines: - bat-adlm-1: NOTRUN -> [SKIP][1] ([i915#4613]) +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_backlight@basic-brightness: - bat-adlm-1: NOTRUN -> [SKIP][2] ([i915#7561]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rps@basic-api: - bat-adlm-1: NOTRUN -> [SKIP][3] ([i915#6621]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@slpc: - bat-rpls-1: [PASS][4] -> [FAIL][5] ([i915#6997]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/bat-rpls-1/igt@i915_selftest@live@slpc.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-adlm-1: NOTRUN -> [SKIP][6] ([i915#7828]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - bat-rpls-1: NOTRUN -> [SKIP][7] ([i915#7828]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-rpls-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlm-1: NOTRUN -> [SKIP][8] ([fdo#109285]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@basic: - bat-adlm-1: NOTRUN -> [SKIP][9] ([i915#1849]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@hang-read-crc: - bat-adlm-1: NOTRUN -> [SKIP][10] ([i915#1845]) +6 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-rpls-1: NOTRUN -> [SKIP][11] ([i915#1845]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_psr@cursor_plane_move: - bat-adlm-1: NOTRUN -> [SKIP][12] ([i915#1072]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@kms_psr@cursor_plane_move.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlm-1: NOTRUN -> [SKIP][13] ([i915#3555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlm-1: NOTRUN -> [SKIP][14] ([i915#1845] / [i915#3708]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-write: - bat-adlm-1: NOTRUN -> [SKIP][15] ([i915#3708]) +3 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-1: [ABORT][16] ([i915#6687]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@kms_force_connector_basic@force-connector-state: - bat-adlm-1: [ABORT][18] ([i915#8139]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/bat-adlm-1/igt@kms_force_connector_basic@force-connector-state.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-adlm-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [FAIL][20] ([i915#7932]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - fi-tgl-1115g4: [INCOMPLETE][22] ([i915#7443] / [i915#8102]) -> [INCOMPLETE][23] ([i915#8102]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102 [i915#8139]: https://gitlab.freedesktop.org/drm/intel/issues/8139 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7272 -> IGTPW_8872 CI-20190529: 20190529 CI_DRM_13069: 574aa476b59f2d35b31ce3a599416575c4912e78 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8872: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/index.html IGT_7272: b2786c0c504bb4fa9f2dc6082fe9332223198b24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/index.html [-- Attachment #2: Type: text/html, Size: 8623 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] testplan/meson.build: don't generate testlist on cross-compilation 2023-04-27 10:41 [igt-dev] [PATCH i-g-t 1/2] testplan/meson.build: don't generate testlist on cross-compilation Mauro Carvalho Chehab 2023-04-27 10:41 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_freq_api: add missing include Mauro Carvalho Chehab 2023-04-27 12:02 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] testplan/meson.build: don't generate testlist on cross-compilation Patchwork @ 2023-04-27 12:05 ` Andrzej Hajda 2023-04-27 14:55 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Andrzej Hajda @ 2023-04-27 12:05 UTC (permalink / raw) To: Mauro Carvalho Chehab, igt-dev On 27.04.2023 12:41, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > When doing cross-compilation, the binaries won't likely run at > the builder machine. So, it is not possible to verify if there are > documentation gaps. > > On such cases, skip checking it. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> > --- > docs/testplan/meson.build | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build > index 3347f61876ef..e36713960ccd 100644 > --- a/docs/testplan/meson.build > +++ b/docs/testplan/meson.build > @@ -11,8 +11,13 @@ xe_test_config = join_paths(source_root, 'tests', 'xe', 'xe_test_config.json') > check_testlist = [] > if build_tests > doc_dependencies = test_executables > - # Check if documentation matches the actual tests > - check_testlist = [ '--check-testlist', '--igt-build-path', build_root ] > + # Check if documentation matches the actual tests and tests can run > + if not meson.is_cross_build() > + build_info += 'Will Check if documentation is in sync with testlist' > + check_testlist = [ '--check-testlist', '--igt-build-path', build_root ] > + else > + warning('WARNING: Will not check if documentation is in sync with testlist') > + endif Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Regards Andrzej > else > doc_dependencies = [] > endif ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] testplan/meson.build: don't generate testlist on cross-compilation 2023-04-27 10:41 [igt-dev] [PATCH i-g-t 1/2] testplan/meson.build: don't generate testlist on cross-compilation Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-04-27 12:05 ` [igt-dev] [PATCH i-g-t 1/2] " Andrzej Hajda @ 2023-04-27 14:55 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-04-27 14:55 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 15821 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] testplan/meson.build: don't generate testlist on cross-compilation URL : https://patchwork.freedesktop.org/series/117047/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13069_full -> IGTPW_8872_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8872_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8872_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_8872/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8872_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@in-flight-contexts-1us: - shard-apl: [PASS][1] -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-apl2/igt@gem_eio@in-flight-contexts-1us.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-apl3/igt@gem_eio@in-flight-contexts-1us.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_barrier_race@remote-request@rcs0: - {shard-tglu}: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-tglu-4/igt@gem_barrier_race@remote-request@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-tglu-9/igt@gem_barrier_race@remote-request@rcs0.html Known issues ------------ Here are the changes found in IGTPW_8872_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [PASS][5] -> [ABORT][6] ([i915#7461]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-glk5/igt@gem_barrier_race@remote-request@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-glk8/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2346]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][11] -> [FAIL][12] ([i915#2346]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-apl: NOTRUN -> [SKIP][13] ([fdo#109271]) +6 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-apl6/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271]) +28 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-snb7/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1.html * igt@kms_vblank@pipe-b-query-forked-busy-hang: - shard-apl: [PASS][15] -> [SKIP][16] ([fdo#109271]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-apl2/igt@kms_vblank@pipe-b-query-forked-busy-hang.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-apl7/igt@kms_vblank@pipe-b-query-forked-busy-hang.html - shard-glk: [PASS][17] -> [SKIP][18] ([fdo#109271]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-glk6/igt@kms_vblank@pipe-b-query-forked-busy-hang.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-glk1/igt@kms_vblank@pipe-b-query-forked-busy-hang.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - {shard-rkl}: [FAIL][19] ([i915#7742]) -> [PASS][20] +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_eio@unwedge-stress: - {shard-dg1}: [FAIL][21] ([i915#5784]) -> [PASS][22] +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-dg1-14/igt@gem_eio@unwedge-stress.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][23] ([i915#2842]) -> [PASS][24] +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - {shard-rkl}: [FAIL][25] ([i915#2842]) -> [PASS][26] +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s3-devices@lmem0: - {shard-dg1}: [FAIL][27] ([i915#5115]) -> [PASS][28] +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-dg1-16/igt@gem_exec_suspend@basic-s3-devices@lmem0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-dg1-15/igt@gem_exec_suspend@basic-s3-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - {shard-tglu}: [ABORT][29] -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-tglu-8/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - {shard-rkl}: [SKIP][31] ([i915#1397]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][33] ([i915#2122]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-glk9/igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - {shard-tglu}: [ABORT][35] ([i915#8222]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13069/shard-tglu-2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/shard-tglu-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [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#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [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#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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [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#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [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#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [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#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8222]: https://gitlab.freedesktop.org/drm/intel/issues/8222 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7272 -> IGTPW_8872 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13069: 574aa476b59f2d35b31ce3a599416575c4912e78 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8872: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/index.html IGT_7272: b2786c0c504bb4fa9f2dc6082fe9332223198b24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8872/index.html [-- Attachment #2: Type: text/html, Size: 11019 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-04-27 14:55 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-04-27 10:41 [igt-dev] [PATCH i-g-t 1/2] testplan/meson.build: don't generate testlist on cross-compilation Mauro Carvalho Chehab 2023-04-27 10:41 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pm_freq_api: add missing include Mauro Carvalho Chehab 2023-04-27 12:06 ` Andrzej Hajda 2023-04-27 12:02 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] testplan/meson.build: don't generate testlist on cross-compilation Patchwork 2023-04-27 12:05 ` [igt-dev] [PATCH i-g-t 1/2] " Andrzej Hajda 2023-04-27 14:55 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox