* [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds
@ 2023-05-09 10:42 Mauro Carvalho Chehab
2023-05-09 10:42 ` [igt-dev] [PATCH i-g-t v2 1/2] meson: add an option to control " Mauro Carvalho Chehab
` (7 more replies)
0 siblings, 8 replies; 14+ messages in thread
From: Mauro Carvalho Chehab @ 2023-05-09 10:42 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
The Xe driver is currently under heavy development and has not
merged upstream yet. While merging doesn't happen, the API may
still change, as upstream may request changes on it and/or
driver developers may need to tweak some API bits.
While this is happening, incompatible API changes may still
happen. As IGT is distributed on some distros, placing Xe
tests on binaries is not a good idea, as such tests may fail
when the final version gets released.
So, add a build option to allow disabling Xe driver builds.
The first patch adds such option but keeps it enabled by
default, as we don't want to break any CI automation that
may be relying on having the driver enabled.
The idea is to get the first patch merged, and then give
some time to adjust CI scripts. Afterwards, apply the
second one changing the default.
---
v2:
- fix compilation breakage with -Dtests=disabled
Mauro Carvalho Chehab (2):
meson: add an option to control Xe test builds
meson_options.txt: disable Xe driver tests by default
docs/testplan/meson.build | 9 ++++++++-
meson.build | 1 +
meson_options.txt | 10 ++++++++++
tests/meson.build | 21 ++++++++++++---------
4 files changed, 31 insertions(+), 10 deletions(-)
--
2.40.1
^ permalink raw reply [flat|nested] 14+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/2] meson: add an option to control Xe test builds 2023-05-09 10:42 [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds Mauro Carvalho Chehab @ 2023-05-09 10:42 ` Mauro Carvalho Chehab 2023-05-12 8:49 ` Kamil Konieczny 2023-05-09 10:42 ` [igt-dev] [PATCH i-g-t v2 2/2] meson_options.txt: disable Xe driver tests by default Mauro Carvalho Chehab ` (6 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Mauro Carvalho Chehab @ 2023-05-09 10:42 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> The Xe driver is currently under heavy development and has not merged upstream yet. While merging doesn't happen, the API may still change, as upstream may request changes on it and/or driver developers may need to tweak some API bits. While this is happening, incompatible API changes may still happen. As IGT is distributed on some distros, placing Xe tests on binaries is not a good idea, as such tests may fail when the final version gets released. So, add a build option to allow disabling Xe driver builds. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- docs/testplan/meson.build | 9 ++++++++- meson.build | 1 + meson_options.txt | 9 +++++++++ tests/meson.build | 21 ++++++++++++--------- 4 files changed, 30 insertions(+), 10 deletions(-) diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build index b65ee964ddd2..2014f91b5be1 100644 --- a/docs/testplan/meson.build +++ b/docs/testplan/meson.build @@ -23,11 +23,18 @@ else doc_dependencies = [] endif +xe_test_dict = { + 'xe_tests': { 'input': xe_test_config, 'extra_args': check_testlist } + } + test_dict = { - 'xe_tests': { 'input': xe_test_config, 'extra_args': check_testlist }, 'kms_tests': { 'input': kms_test_config, 'extra_args': [] } } +if build_xe + test_dict += xe_test_dict +endif + foreach testplan, fields: test_dict rst = custom_target(testplan + '.rst', build_by_default : true, diff --git a/meson.build b/meson.build index 0362178444ee..1c872cc9cb02 100644 --- a/meson.build +++ b/meson.build @@ -85,6 +85,7 @@ endforeach build_chamelium = get_option('chamelium') build_docs = get_option('docs') build_tests = not get_option('tests').disabled() +build_xe = not get_option('xe_driver').disabled() with_libdrm = get_option('libdrm_drivers') build_info = ['Build type: ' + get_option('buildtype')] diff --git a/meson_options.txt b/meson_options.txt index 2cb44f20169b..7b5a818cb72f 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -37,6 +37,15 @@ option('tests', type : 'feature', description : 'Build tests') +# Currently, Xe uAPI is not stable: it may still change while the driver is +# not merged upstream. +# So, add an option to enable it, as distros shall not be shipping +# binaries with Xe tests on it, as they will most certainly fail once +# drivers get upstreamed. +option('xe_driver', + type : 'feature', + description : 'Build tests for Xe driver (experimental)') + option('libdrm_drivers', type : 'array', value : ['auto'], diff --git a/tests/meson.build b/tests/meson.build index c15eb3a08cb2..38f080f7c26e 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -317,15 +317,18 @@ foreach prog : i915_progs test_list += prog endforeach -foreach prog : xe_progs - test_executables += executable(prog, - join_paths('xe', prog + '.c'), - dependencies : test_deps, - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) - test_list += prog -endforeach +if build_xe + foreach prog : xe_progs + test_executables += executable(prog, + join_paths('xe', prog + '.c'), + dependencies : test_deps, + install_dir : libexecdir, + install_rpath : libexecdir_rpathdir, + install : true) + test_list += prog + endforeach + build_info += 'Xe **experimental** tests enabled.' +endif foreach prog : msm_progs test_executables += executable(prog, join_paths('msm', prog + '.c'), -- 2.40.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/2] meson: add an option to control Xe test builds 2023-05-09 10:42 ` [igt-dev] [PATCH i-g-t v2 1/2] meson: add an option to control " Mauro Carvalho Chehab @ 2023-05-12 8:49 ` Kamil Konieczny 0 siblings, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2023-05-12 8:49 UTC (permalink / raw) To: igt-dev On 2023-05-09 at 12:42:02 +0200, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > The Xe driver is currently under heavy development and has not > merged upstream yet. While merging doesn't happen, the API may > still change, as upstream may request changes on it and/or > driver developers may need to tweak some API bits. > > While this is happening, incompatible API changes may still > happen. As IGT is distributed on some distros, placing Xe > tests on binaries is not a good idea, as such tests may fail > when the final version gets released. > > So, add a build option to allow disabling Xe driver builds. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > docs/testplan/meson.build | 9 ++++++++- > meson.build | 1 + > meson_options.txt | 9 +++++++++ > tests/meson.build | 21 ++++++++++++--------- > 4 files changed, 30 insertions(+), 10 deletions(-) > > diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build > index b65ee964ddd2..2014f91b5be1 100644 > --- a/docs/testplan/meson.build > +++ b/docs/testplan/meson.build > @@ -23,11 +23,18 @@ else > doc_dependencies = [] > endif > > +xe_test_dict = { > + 'xe_tests': { 'input': xe_test_config, 'extra_args': check_testlist } > + } > + > test_dict = { > - 'xe_tests': { 'input': xe_test_config, 'extra_args': check_testlist }, > 'kms_tests': { 'input': kms_test_config, 'extra_args': [] } > } > > +if build_xe > + test_dict += xe_test_dict > +endif > + > foreach testplan, fields: test_dict > rst = custom_target(testplan + '.rst', > build_by_default : true, > diff --git a/meson.build b/meson.build > index 0362178444ee..1c872cc9cb02 100644 > --- a/meson.build > +++ b/meson.build > @@ -85,6 +85,7 @@ endforeach > build_chamelium = get_option('chamelium') > build_docs = get_option('docs') > build_tests = not get_option('tests').disabled() > +build_xe = not get_option('xe_driver').disabled() > with_libdrm = get_option('libdrm_drivers') > > build_info = ['Build type: ' + get_option('buildtype')] > diff --git a/meson_options.txt b/meson_options.txt > index 2cb44f20169b..7b5a818cb72f 100644 > --- a/meson_options.txt > +++ b/meson_options.txt > @@ -37,6 +37,15 @@ option('tests', > type : 'feature', > description : 'Build tests') > > +# Currently, Xe uAPI is not stable: it may still change while the driver is > +# not merged upstream. > +# So, add an option to enable it, as distros shall not be shipping > +# binaries with Xe tests on it, as they will most certainly fail once > +# drivers get upstreamed. > +option('xe_driver', > + type : 'feature', > + description : 'Build tests for Xe driver (experimental)') > + > option('libdrm_drivers', > type : 'array', > value : ['auto'], > diff --git a/tests/meson.build b/tests/meson.build > index c15eb3a08cb2..38f080f7c26e 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -317,15 +317,18 @@ foreach prog : i915_progs > test_list += prog > endforeach > > -foreach prog : xe_progs > - test_executables += executable(prog, > - join_paths('xe', prog + '.c'), > - dependencies : test_deps, > - install_dir : libexecdir, > - install_rpath : libexecdir_rpathdir, > - install : true) > - test_list += prog > -endforeach > +if build_xe > + foreach prog : xe_progs > + test_executables += executable(prog, > + join_paths('xe', prog + '.c'), > + dependencies : test_deps, > + install_dir : libexecdir, > + install_rpath : libexecdir_rpathdir, > + install : true) > + test_list += prog > + endforeach > + build_info += 'Xe **experimental** tests enabled.' > +endif > > foreach prog : msm_progs > test_executables += executable(prog, join_paths('msm', prog + '.c'), > -- > 2.40.1 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/2] meson_options.txt: disable Xe driver tests by default 2023-05-09 10:42 [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds Mauro Carvalho Chehab 2023-05-09 10:42 ` [igt-dev] [PATCH i-g-t v2 1/2] meson: add an option to control " Mauro Carvalho Chehab @ 2023-05-09 10:42 ` Mauro Carvalho Chehab 2023-05-12 8:57 ` Kamil Konieczny 2023-05-12 10:05 ` [igt-dev] ✗ GitLab.Pipeline: warning for Add an option to protect Xe test builds (rev2) Patchwork ` (5 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Mauro Carvalho Chehab @ 2023-05-09 10:42 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> Change the build default for Xe driver tests to disabled, in order to prevent distros to ship them by accident. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- meson_options.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/meson_options.txt b/meson_options.txt index 7b5a818cb72f..12b5bb3c32d9 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -44,6 +44,7 @@ option('tests', # drivers get upstreamed. option('xe_driver', type : 'feature', + value : 'disabled', description : 'Build tests for Xe driver (experimental)') option('libdrm_drivers', -- 2.40.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/2] meson_options.txt: disable Xe driver tests by default 2023-05-09 10:42 ` [igt-dev] [PATCH i-g-t v2 2/2] meson_options.txt: disable Xe driver tests by default Mauro Carvalho Chehab @ 2023-05-12 8:57 ` Kamil Konieczny 0 siblings, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2023-05-12 8:57 UTC (permalink / raw) To: igt-dev On 2023-05-09 at 12:42:03 +0200, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > Change the build default for Xe driver tests to disabled, > in order to prevent distros to ship them by accident. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > meson_options.txt | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/meson_options.txt b/meson_options.txt > index 7b5a818cb72f..12b5bb3c32d9 100644 > --- a/meson_options.txt > +++ b/meson_options.txt > @@ -44,6 +44,7 @@ option('tests', > # drivers get upstreamed. > option('xe_driver', > type : 'feature', > + value : 'disabled', > description : 'Build tests for Xe driver (experimental)') > > option('libdrm_drivers', > -- > 2.40.1 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for Add an option to protect Xe test builds (rev2) 2023-05-09 10:42 [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds Mauro Carvalho Chehab 2023-05-09 10:42 ` [igt-dev] [PATCH i-g-t v2 1/2] meson: add an option to control " Mauro Carvalho Chehab 2023-05-09 10:42 ` [igt-dev] [PATCH i-g-t v2 2/2] meson_options.txt: disable Xe driver tests by default Mauro Carvalho Chehab @ 2023-05-12 10:05 ` Patchwork 2023-05-12 10:34 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork ` (4 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-05-12 10:05 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev == Series Details == Series: Add an option to protect Xe test builds (rev2) URL : https://patchwork.freedesktop.org/series/117511/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/879307 for the overview. containers:igt has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/41594515): Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=41594493 responseStatus=200 OK token=64_tPDiE section_end:1683885667:download_artifacts section_start:1683885667:step_script Executing "step_script" stage of the job script Using docker image sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176 for registry.freedesktop.org/wayland/ci-templates/buildah:2019-08-13.0 with digest registry.freedesktop.org/wayland/ci-templates/buildah@sha256:7dbcf22cd2c1c7d49db0dc7b4ab207c3d6a4a09bd81cc3b71a688d3727d8749f ... $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org $ podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY Login Succeeded! $ .gitlab-ci/pull-or-rebuild.sh igt Dockerfile igt STEP 1: FROM registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-f20fa6309000698751174416b61992fb4662963e Error: error creating build container: Error initializing source docker://registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-f20fa6309000698751174416b61992fb4662963e: Error reading manifest commit-f20fa6309000698751174416b61992fb4662963e in registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora: received unexpected HTTP status: 500 Internal Server Error section_end:1683885669:step_script section_start:1683885669:cleanup_file_variables Cleaning up project directory and file based variables section_end:1683885671:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/879307 ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev2) 2023-05-09 10:42 [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-05-12 10:05 ` [igt-dev] ✗ GitLab.Pipeline: warning for Add an option to protect Xe test builds (rev2) Patchwork @ 2023-05-12 10:34 ` Patchwork 2023-05-12 11:35 ` [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-05-12 10:34 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11099 bytes --] == Series Details == Series: Add an option to protect Xe test builds (rev2) URL : https://patchwork.freedesktop.org/series/117511/ State : failure == Summary == CI Bug Log - changes from IGT_7286 -> IGTPW_8947 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8947 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8947, 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_8947/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8947: ### IGT changes ### #### Possible regressions #### * igt@kms_addfb_basic@bad-pitch-0: - bat-adls-5: NOTRUN -> [DMESG-WARN][1] +38 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@kms_addfb_basic@bad-pitch-0.html Known issues ------------ Here are the changes found in IGTPW_8947 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adls-5: NOTRUN -> [SKIP][2] ([i915#7456]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-5: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-adls-5: NOTRUN -> [SKIP][6] ([i915#3282]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][7] ([i915#7077]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#5334] / [i915#7872]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - bat-adlm-1: [PASS][10] -> [INCOMPLETE][11] ([i915#4983] / [i915#7677]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adlm-1/igt@i915_selftest@live@hangcheck.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adlm-1/igt@i915_selftest@live@hangcheck.html - bat-adls-5: NOTRUN -> [DMESG-WARN][12] ([i915#5591]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@slpc: - bat-rpls-2: [PASS][13] -> [DMESG-WARN][14] ([i915#6367]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-2/igt@i915_selftest@live@slpc.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-rpls-2/igt@i915_selftest@live@slpc.html * igt@kms_chamelium_hpd@dp-hpd-fast: - bat-adls-5: NOTRUN -> [SKIP][15] ([i915#7828]) +8 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][16] ([fdo#109271]) +15 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-adls-5: NOTRUN -> [SKIP][17] ([i915#4103]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-5: NOTRUN -> [SKIP][18] ([fdo#109285]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#1845] / [i915#5354]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [PASS][20] -> [FAIL][21] ([i915#7932]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/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_8947/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html * igt@kms_psr@primary_page_flip: - bat-adls-5: NOTRUN -> [SKIP][22] ([i915#668]) +3 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#4579]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-adls-5: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#4579]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@kms_setmode@basic-clone-single-crtc.html - fi-kbl-soraka: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4579]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - bat-adls-5: NOTRUN -> [SKIP][26] ([fdo#109295] / [i915#3291]) +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - bat-adls-5: NOTRUN -> [SKIP][27] ([fdo#109295] / [i915#3301]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@prime_vgem@basic-userptr.html #### Possible fixes #### * igt@i915_module_load@load: - bat-adls-5: [ABORT][28] -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adls-5/igt@i915_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adls-5/igt@i915_module_load@load.html * igt@i915_selftest@live@requests: - {bat-mtlp-8}: [ABORT][30] ([i915#4983] / [i915#7920] / [i915#7953]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-mtlp-8/igt@i915_selftest@live@requests.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - bat-adlm-1: [DMESG-FAIL][32] ([i915#7904]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adlm-1/igt@i915_selftest@live@workarounds.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-adlm-1/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: [ABORT][34] -> [SKIP][35] ([i915#1072]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7677]: https://gitlab.freedesktop.org/drm/intel/issues/7677 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7904]: https://gitlab.freedesktop.org/drm/intel/issues/7904 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7286 -> IGTPW_8947 CI-20190529: 20190529 CI_DRM_13141: c201176285d7a79884421d1b907ec858c5aee657 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8947: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/index.html IGT_7286: a482779488f11c432d7ddcb1980691ab1603f356 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +++ 1 lines --- 816 lines == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8947/index.html [-- Attachment #2: Type: text/html, Size: 12906 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) 2023-05-09 10:42 [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds Mauro Carvalho Chehab ` (3 preceding siblings ...) 2023-05-12 10:34 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork @ 2023-05-12 11:35 ` Patchwork 2023-05-12 12:57 ` Kamil Konieczny 2023-05-12 13:20 ` Patchwork ` (2 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Patchwork @ 2023-05-12 11:35 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11385 bytes --] == Series Details == Series: Add an option to protect Xe test builds (rev3) URL : https://patchwork.freedesktop.org/series/117511/ State : failure == Summary == CI Bug Log - changes from IGT_7286 -> IGTPW_8949 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8949 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8949, 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_8949/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8949: ### IGT changes ### #### Possible regressions #### * igt@kms_addfb_basic@bad-pitch-0: - bat-adls-5: NOTRUN -> [DMESG-WARN][1] +37 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_addfb_basic@bad-pitch-0.html Known issues ------------ Here are the changes found in IGTPW_8949 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adls-5: NOTRUN -> [SKIP][2] ([i915#7456]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-5: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-adls-5: NOTRUN -> [SKIP][6] ([i915#3282]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][7] ([i915#7077]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#5334] / [i915#7872]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - bat-adls-5: NOTRUN -> [DMESG-WARN][10] ([i915#5591]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@slpc: - bat-rpls-2: [PASS][11] -> [DMESG-WARN][12] ([i915#6367]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-2/igt@i915_selftest@live@slpc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-2/igt@i915_selftest@live@slpc.html - bat-rpls-1: NOTRUN -> [DMESG-WARN][13] ([i915#6367] / [i915#7953]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: NOTRUN -> [ABORT][14] ([i915#6687] / [i915#7953] / [i915#7978]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@dp-hpd-fast: - bat-adls-5: NOTRUN -> [SKIP][15] ([i915#7828]) +8 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][16] ([fdo#109271]) +15 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-adls-5: NOTRUN -> [SKIP][17] ([i915#4103]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-5: NOTRUN -> [SKIP][18] ([fdo#109285]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#1845] / [i915#5354]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_psr@primary_page_flip: - bat-adls-5: NOTRUN -> [SKIP][20] ([i915#668]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#4579]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-adls-5: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#4579]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_setmode@basic-clone-single-crtc.html - fi-kbl-soraka: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4579]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - bat-adls-5: NOTRUN -> [SKIP][24] ([fdo#109295] / [i915#3291]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - bat-adls-5: NOTRUN -> [SKIP][25] ([fdo#109295] / [i915#3301]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-userptr.html #### Possible fixes #### * igt@i915_module_load@load: - bat-adls-5: [ABORT][26] -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adls-5/igt@i915_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_module_load@load.html * igt@i915_selftest@live@requests: - {bat-mtlp-8}: [ABORT][28] ([i915#4983] / [i915#7920] / [i915#7953]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-mtlp-8/igt@i915_selftest@live@requests.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][30] ([i915#4983] / [i915#7461] / [i915#7953] / [i915#8347] / [i915#8384]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-1/igt@i915_selftest@live@reset.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@workarounds: - bat-adlm-1: [DMESG-FAIL][32] ([i915#7904]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adlm-1/igt@i915_selftest@live@workarounds.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adlm-1/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: [ABORT][34] -> [SKIP][35] ([i915#1072]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7904]: https://gitlab.freedesktop.org/drm/intel/issues/7904 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7286 -> IGTPW_8949 CI-20190529: 20190529 CI_DRM_13141: c201176285d7a79884421d1b907ec858c5aee657 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8949: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html IGT_7286: a482779488f11c432d7ddcb1980691ab1603f356 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +++ 0 lines --- 817 lines == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html [-- Attachment #2: Type: text/html, Size: 13473 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) 2023-05-12 11:35 ` [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) Patchwork @ 2023-05-12 12:57 ` Kamil Konieczny 2023-05-12 13:30 ` Yedireswarapu, SaiX Nandan 0 siblings, 1 reply; 14+ messages in thread From: Kamil Konieczny @ 2023-05-12 12:57 UTC (permalink / raw) To: igt-dev; +Cc: SaiX Nandan Yedireswarapu Hi Sai, On 2023-05-12 at 11:35:07 -0000, Patchwork wrote: > == Series Details == > > Series: Add an option to protect Xe test builds (rev3) > URL : https://patchwork.freedesktop.org/series/117511/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7286 -> IGTPW_8949 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_8949 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8949, 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_8949/index.html > > Participating hosts (40 -> 40) > ------------------------------ > > Additional (1): fi-kbl-soraka > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_8949: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_addfb_basic@bad-pitch-0: > - bat-adls-5: NOTRUN -> [DMESG-WARN][1] +37 similar issues > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_addfb_basic@bad-pitch-0.html > Unrelated to change in meson options for Xe. Regards, Kamil > > Known issues > ------------ > > Here are the changes found in IGTPW_8949 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@debugfs_test@basic-hwmon: > - bat-adls-5: NOTRUN -> [SKIP][2] ([i915#7456]) > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@debugfs_test@basic-hwmon.html > > * igt@gem_huc_copy@huc-copy: > - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html > > * igt@gem_lmem_swapping@basic: > - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html > > * igt@gem_lmem_swapping@parallel-random-engines: > - bat-adls-5: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_lmem_swapping@parallel-random-engines.html > > * igt@gem_tiled_pread_basic: > - bat-adls-5: NOTRUN -> [SKIP][6] ([i915#3282]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_tiled_pread_basic.html > > * igt@i915_pm_backlight@basic-brightness@edp-1: > - bat-rplp-1: NOTRUN -> [ABORT][7] ([i915#7077]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html > > * igt@i915_selftest@live@gt_heartbeat: > - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#5334] / [i915#7872]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html > > * igt@i915_selftest@live@gt_pm: > - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html > > * igt@i915_selftest@live@hangcheck: > - bat-adls-5: NOTRUN -> [DMESG-WARN][10] ([i915#5591]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_selftest@live@hangcheck.html > > * igt@i915_selftest@live@slpc: > - bat-rpls-2: [PASS][11] -> [DMESG-WARN][12] ([i915#6367]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-2/igt@i915_selftest@live@slpc.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-2/igt@i915_selftest@live@slpc.html > - bat-rpls-1: NOTRUN -> [DMESG-WARN][13] ([i915#6367] / [i915#7953]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@slpc.html > > * igt@i915_suspend@basic-s3-without-i915: > - bat-rpls-1: NOTRUN -> [ABORT][14] ([i915#6687] / [i915#7953] / [i915#7978]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html > > * igt@kms_chamelium_hpd@dp-hpd-fast: > - bat-adls-5: NOTRUN -> [SKIP][15] ([i915#7828]) +8 similar issues > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_chamelium_hpd@dp-hpd-fast.html > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > - fi-kbl-soraka: NOTRUN -> [SKIP][16] ([fdo#109271]) +15 similar issues > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html > - bat-adls-5: NOTRUN -> [SKIP][17] ([i915#4103]) +1 similar issue > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html > > * igt@kms_force_connector_basic@force-load-detect: > - bat-adls-5: NOTRUN -> [SKIP][18] ([fdo#109285]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_force_connector_basic@force-load-detect.html > > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: > - bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#1845] / [i915#5354]) +2 similar issues > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html > > * igt@kms_psr@primary_page_flip: > - bat-adls-5: NOTRUN -> [SKIP][20] ([i915#668]) +3 similar issues > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_psr@primary_page_flip.html > > * igt@kms_setmode@basic-clone-single-crtc: > - bat-rplp-1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#4579]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html > - bat-adls-5: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#4579]) > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_setmode@basic-clone-single-crtc.html > - fi-kbl-soraka: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4579]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html > > * igt@prime_vgem@basic-read: > - bat-adls-5: NOTRUN -> [SKIP][24] ([fdo#109295] / [i915#3291]) +2 similar issues > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-read.html > > * igt@prime_vgem@basic-userptr: > - bat-adls-5: NOTRUN -> [SKIP][25] ([fdo#109295] / [i915#3301]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-userptr.html > > > #### Possible fixes #### > > * igt@i915_module_load@load: > - bat-adls-5: [ABORT][26] -> [PASS][27] > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adls-5/igt@i915_module_load@load.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_module_load@load.html > > * igt@i915_selftest@live@requests: > - {bat-mtlp-8}: [ABORT][28] ([i915#4983] / [i915#7920] / [i915#7953]) -> [PASS][29] > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-mtlp-8/igt@i915_selftest@live@requests.html > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-mtlp-8/igt@i915_selftest@live@requests.html > > * igt@i915_selftest@live@reset: > - bat-rpls-1: [ABORT][30] ([i915#4983] / [i915#7461] / [i915#7953] / [i915#8347] / [i915#8384]) -> [PASS][31] > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-1/igt@i915_selftest@live@reset.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@reset.html > > * igt@i915_selftest@live@workarounds: > - bat-adlm-1: [DMESG-FAIL][32] ([i915#7904]) -> [PASS][33] > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adlm-1/igt@i915_selftest@live@workarounds.html > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adlm-1/igt@i915_selftest@live@workarounds.html > > > #### Warnings #### > > * igt@kms_psr@primary_mmap_gtt: > - bat-rplp-1: [ABORT][34] -> [SKIP][35] ([i915#1072]) > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 > [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 > [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 > [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 > [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 > [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 > [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 > [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 > [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 > [i915#7904]: https://gitlab.freedesktop.org/drm/intel/issues/7904 > [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 > [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 > [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 > [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 > [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 > [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7286 -> IGTPW_8949 > > CI-20190529: 20190529 > CI_DRM_13141: c201176285d7a79884421d1b907ec858c5aee657 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8949: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html > IGT_7286: a482779488f11c432d7ddcb1980691ab1603f356 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > > Testlist changes > ---------------- > > +++ 0 lines > --- 817 lines > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) 2023-05-12 12:57 ` Kamil Konieczny @ 2023-05-12 13:30 ` Yedireswarapu, SaiX Nandan 0 siblings, 0 replies; 14+ messages in thread From: Yedireswarapu, SaiX Nandan @ 2023-05-12 13:30 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org Hi. Issue re-reported, https://patchwork.freedesktop.org/series/117511/#rev3 Thanks, Y Sai Nandan -----Original Message----- From: Kamil Konieczny <kamil.konieczny@linux.intel.com> Sent: Friday, May 12, 2023 6:27 PM To: igt-dev@lists.freedesktop.org Cc: Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com> Subject: Re: [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) Hi Sai, On 2023-05-12 at 11:35:07 -0000, Patchwork wrote: > == Series Details == > > Series: Add an option to protect Xe test builds (rev3) > URL : https://patchwork.freedesktop.org/series/117511/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7286 -> IGTPW_8949 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_8949 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8949, 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_8949/index.html > > Participating hosts (40 -> 40) > ------------------------------ > > Additional (1): fi-kbl-soraka > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_8949: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_addfb_basic@bad-pitch-0: > - bat-adls-5: NOTRUN -> [DMESG-WARN][1] +37 similar issues > [1]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms > _addfb_basic@bad-pitch-0.html > Unrelated to change in meson options for Xe. Regards, Kamil > > Known issues > ------------ > > Here are the changes found in IGTPW_8949 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@debugfs_test@basic-hwmon: > - bat-adls-5: NOTRUN -> [SKIP][2] ([i915#7456]) > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@deb > ugfs_test@basic-hwmon.html > > * igt@gem_huc_copy@huc-copy: > - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) > [3]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@ > gem_huc_copy@huc-copy.html > > * igt@gem_lmem_swapping@basic: > - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues > [4]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@ > gem_lmem_swapping@basic.html > > * igt@gem_lmem_swapping@parallel-random-engines: > - bat-adls-5: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues > [5]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem > _lmem_swapping@parallel-random-engines.html > > * igt@gem_tiled_pread_basic: > - bat-adls-5: NOTRUN -> [SKIP][6] ([i915#3282]) > [6]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem > _tiled_pread_basic.html > > * igt@i915_pm_backlight@basic-brightness@edp-1: > - bat-rplp-1: NOTRUN -> [ABORT][7] ([i915#7077]) > [7]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@i91 > 5_pm_backlight@basic-brightness@edp-1.html > > * igt@i915_selftest@live@gt_heartbeat: > - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#5334] / [i915#7872]) > [8]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@ > i915_selftest@live@gt_heartbeat.html > > * igt@i915_selftest@live@gt_pm: > - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) > [9]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@ > i915_selftest@live@gt_pm.html > > * igt@i915_selftest@live@hangcheck: > - bat-adls-5: NOTRUN -> [DMESG-WARN][10] ([i915#5591]) > [10]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i91 > 5_selftest@live@hangcheck.html > > * igt@i915_selftest@live@slpc: > - bat-rpls-2: [PASS][11] -> [DMESG-WARN][12] ([i915#6367]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-2/igt@i915_selftest@live@slpc.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-2/igt@i915_selftest@live@slpc.html > - bat-rpls-1: NOTRUN -> [DMESG-WARN][13] ([i915#6367] / [i915#7953]) > [13]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i91 > 5_selftest@live@slpc.html > > * igt@i915_suspend@basic-s3-without-i915: > - bat-rpls-1: NOTRUN -> [ABORT][14] ([i915#6687] / [i915#7953] / [i915#7978]) > [14]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i91 > 5_suspend@basic-s3-without-i915.html > > * igt@kms_chamelium_hpd@dp-hpd-fast: > - bat-adls-5: NOTRUN -> [SKIP][15] ([i915#7828]) +8 similar issues > [15]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms > _chamelium_hpd@dp-hpd-fast.html > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > - fi-kbl-soraka: NOTRUN -> [SKIP][16] ([fdo#109271]) +15 similar issues > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html > - bat-adls-5: NOTRUN -> [SKIP][17] ([i915#4103]) +1 similar issue > [17]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms > _cursor_legacy@basic-busy-flip-before-cursor-atomic.html > > * igt@kms_force_connector_basic@force-load-detect: > - bat-adls-5: NOTRUN -> [SKIP][18] ([fdo#109285]) > [18]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms > _force_connector_basic@force-load-detect.html > > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: > - bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#1845] / [i915#5354]) +2 similar issues > [19]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-dg2-11/igt@kms > _pipe_crc_basic@nonblocking-crc-frame-sequence.html > > * igt@kms_psr@primary_page_flip: > - bat-adls-5: NOTRUN -> [SKIP][20] ([i915#668]) +3 similar issues > [20]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms > _psr@primary_page_flip.html > > * igt@kms_setmode@basic-clone-single-crtc: > - bat-rplp-1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#4579]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html > - bat-adls-5: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#4579]) > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_setmode@basic-clone-single-crtc.html > - fi-kbl-soraka: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4579]) > [23]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@ > kms_setmode@basic-clone-single-crtc.html > > * igt@prime_vgem@basic-read: > - bat-adls-5: NOTRUN -> [SKIP][24] ([fdo#109295] / [i915#3291]) +2 similar issues > [24]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@pri > me_vgem@basic-read.html > > * igt@prime_vgem@basic-userptr: > - bat-adls-5: NOTRUN -> [SKIP][25] ([fdo#109295] / [i915#3301]) > [25]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@pri > me_vgem@basic-userptr.html > > > #### Possible fixes #### > > * igt@i915_module_load@load: > - bat-adls-5: [ABORT][26] -> [PASS][27] > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adls-5/igt@i915_module_load@load.html > [27]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i91 > 5_module_load@load.html > > * igt@i915_selftest@live@requests: > - {bat-mtlp-8}: [ABORT][28] ([i915#4983] / [i915#7920] / [i915#7953]) -> [PASS][29] > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-mtlp-8/igt@i915_selftest@live@requests.html > [29]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-mtlp-8/igt@i91 > 5_selftest@live@requests.html > > * igt@i915_selftest@live@reset: > - bat-rpls-1: [ABORT][30] ([i915#4983] / [i915#7461] / [i915#7953] / [i915#8347] / [i915#8384]) -> [PASS][31] > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-1/igt@i915_selftest@live@reset.html > [31]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i91 > 5_selftest@live@reset.html > > * igt@i915_selftest@live@workarounds: > - bat-adlm-1: [DMESG-FAIL][32] ([i915#7904]) -> [PASS][33] > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adlm-1/igt@i915_selftest@live@workarounds.html > [33]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adlm-1/igt@i91 > 5_selftest@live@workarounds.html > > > #### Warnings #### > > * igt@kms_psr@primary_mmap_gtt: > - bat-rplp-1: [ABORT][34] -> [SKIP][35] ([i915#1072]) > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html > [35]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms > _psr@primary_mmap_gtt.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 > [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 > [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 > [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 > [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 > [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 > [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 > [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 > [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 > [i915#7904]: https://gitlab.freedesktop.org/drm/intel/issues/7904 > [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 > [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 > [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 > [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 > [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 > [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7286 -> IGTPW_8949 > > CI-20190529: 20190529 > CI_DRM_13141: c201176285d7a79884421d1b907ec858c5aee657 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8949: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html > IGT_7286: a482779488f11c432d7ddcb1980691ab1603f356 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > > Testlist changes > ---------------- > > +++ 0 lines > --- 817 lines > > == Logs == > > For more details see: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) 2023-05-09 10:42 [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds Mauro Carvalho Chehab ` (4 preceding siblings ...) 2023-05-12 11:35 ` [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) Patchwork @ 2023-05-12 13:20 ` Patchwork 2023-05-12 13:23 ` Kamil Konieczny 2023-05-12 13:29 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-05-12 14:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 7 siblings, 1 reply; 14+ messages in thread From: Patchwork @ 2023-05-12 13:20 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11663 bytes --] == Series Details == Series: Add an option to protect Xe test builds (rev3) URL : https://patchwork.freedesktop.org/series/117511/ State : failure == Summary == CI Bug Log - changes from IGT_7286 -> IGTPW_8949 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8949 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8949, 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_8949/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8949: ### IGT changes ### #### Possible regressions #### * igt@gem_busy@busy@all-engines: - bat-adls-5: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_busy@busy@all-engines.html Known issues ------------ Here are the changes found in IGTPW_8949 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adls-5: NOTRUN -> [SKIP][2] ([i915#7456]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-5: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-adls-5: NOTRUN -> [SKIP][6] ([i915#3282]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][7] ([i915#7077]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#5334] / [i915#7872]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - bat-adls-5: NOTRUN -> [DMESG-WARN][10] ([i915#5591]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@slpc: - bat-rpls-2: [PASS][11] -> [DMESG-WARN][12] ([i915#6367]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-2/igt@i915_selftest@live@slpc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-2/igt@i915_selftest@live@slpc.html - bat-rpls-1: NOTRUN -> [DMESG-WARN][13] ([i915#6367] / [i915#7953]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: NOTRUN -> [ABORT][14] ([i915#6687] / [i915#7953] / [i915#7978]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@bad-pitch-0: - bat-adls-5: NOTRUN -> [DMESG-WARN][15] ([i915#8449]) +36 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_addfb_basic@bad-pitch-0.html * igt@kms_chamelium_hpd@dp-hpd-fast: - bat-adls-5: NOTRUN -> [SKIP][16] ([i915#7828]) +8 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][17] ([fdo#109271]) +15 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-adls-5: NOTRUN -> [SKIP][18] ([i915#4103]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-5: NOTRUN -> [SKIP][19] ([fdo#109285]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#1845] / [i915#5354]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_psr@primary_page_flip: - bat-adls-5: NOTRUN -> [SKIP][21] ([i915#668]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#4579]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-adls-5: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#4579]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_setmode@basic-clone-single-crtc.html - fi-kbl-soraka: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4579]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - bat-adls-5: NOTRUN -> [SKIP][25] ([fdo#109295] / [i915#3291]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - bat-adls-5: NOTRUN -> [SKIP][26] ([fdo#109295] / [i915#3301]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-userptr.html #### Possible fixes #### * igt@i915_module_load@load: - bat-adls-5: [ABORT][27] -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adls-5/igt@i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_module_load@load.html * igt@i915_selftest@live@requests: - {bat-mtlp-8}: [ABORT][29] ([i915#4983] / [i915#7920] / [i915#7953]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-mtlp-8/igt@i915_selftest@live@requests.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][31] ([i915#4983] / [i915#7461] / [i915#7953] / [i915#8347] / [i915#8384]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-1/igt@i915_selftest@live@reset.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@workarounds: - bat-adlm-1: [DMESG-FAIL][33] ([i915#7904]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adlm-1/igt@i915_selftest@live@workarounds.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adlm-1/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: [ABORT][35] -> [SKIP][36] ([i915#1072]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7904]: https://gitlab.freedesktop.org/drm/intel/issues/7904 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8449]: https://gitlab.freedesktop.org/drm/intel/issues/8449 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7286 -> IGTPW_8949 CI-20190529: 20190529 CI_DRM_13141: c201176285d7a79884421d1b907ec858c5aee657 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8949: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html IGT_7286: a482779488f11c432d7ddcb1980691ab1603f356 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +++ 0 lines --- 817 lines == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html [-- Attachment #2: Type: text/html, Size: 13777 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) 2023-05-12 13:20 ` Patchwork @ 2023-05-12 13:23 ` Kamil Konieczny 0 siblings, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2023-05-12 13:23 UTC (permalink / raw) To: igt-dev; +Cc: SaiX Nandan Yedireswarapu Hi Sai, On 2023-05-12 at 13:20:10 -0000, Patchwork wrote: > == Series Details == > > Series: Add an option to protect Xe test builds (rev3) > URL : https://patchwork.freedesktop.org/series/117511/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7286 -> IGTPW_8949 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_8949 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8949, 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_8949/index.html > > Participating hosts (40 -> 40) > ------------------------------ > > Additional (1): fi-kbl-soraka > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_8949: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_busy@busy@all-engines: > - bat-adls-5: NOTRUN -> [DMESG-WARN][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_busy@busy@all-engines.html > Another unrelated regression, Regards, Kamil > > Known issues > ------------ > > Here are the changes found in IGTPW_8949 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@debugfs_test@basic-hwmon: > - bat-adls-5: NOTRUN -> [SKIP][2] ([i915#7456]) > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@debugfs_test@basic-hwmon.html > > * igt@gem_huc_copy@huc-copy: > - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html > > * igt@gem_lmem_swapping@basic: > - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html > > * igt@gem_lmem_swapping@parallel-random-engines: > - bat-adls-5: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_lmem_swapping@parallel-random-engines.html > > * igt@gem_tiled_pread_basic: > - bat-adls-5: NOTRUN -> [SKIP][6] ([i915#3282]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_tiled_pread_basic.html > > * igt@i915_pm_backlight@basic-brightness@edp-1: > - bat-rplp-1: NOTRUN -> [ABORT][7] ([i915#7077]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html > > * igt@i915_selftest@live@gt_heartbeat: > - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#5334] / [i915#7872]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html > > * igt@i915_selftest@live@gt_pm: > - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html > > * igt@i915_selftest@live@hangcheck: > - bat-adls-5: NOTRUN -> [DMESG-WARN][10] ([i915#5591]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_selftest@live@hangcheck.html > > * igt@i915_selftest@live@slpc: > - bat-rpls-2: [PASS][11] -> [DMESG-WARN][12] ([i915#6367]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-2/igt@i915_selftest@live@slpc.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-2/igt@i915_selftest@live@slpc.html > - bat-rpls-1: NOTRUN -> [DMESG-WARN][13] ([i915#6367] / [i915#7953]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@slpc.html > > * igt@i915_suspend@basic-s3-without-i915: > - bat-rpls-1: NOTRUN -> [ABORT][14] ([i915#6687] / [i915#7953] / [i915#7978]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html > > * igt@kms_addfb_basic@bad-pitch-0: > - bat-adls-5: NOTRUN -> [DMESG-WARN][15] ([i915#8449]) +36 similar issues > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_addfb_basic@bad-pitch-0.html > > * igt@kms_chamelium_hpd@dp-hpd-fast: > - bat-adls-5: NOTRUN -> [SKIP][16] ([i915#7828]) +8 similar issues > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_chamelium_hpd@dp-hpd-fast.html > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > - fi-kbl-soraka: NOTRUN -> [SKIP][17] ([fdo#109271]) +15 similar issues > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html > - bat-adls-5: NOTRUN -> [SKIP][18] ([i915#4103]) +1 similar issue > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html > > * igt@kms_force_connector_basic@force-load-detect: > - bat-adls-5: NOTRUN -> [SKIP][19] ([fdo#109285]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_force_connector_basic@force-load-detect.html > > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: > - bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#1845] / [i915#5354]) +2 similar issues > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html > > * igt@kms_psr@primary_page_flip: > - bat-adls-5: NOTRUN -> [SKIP][21] ([i915#668]) +3 similar issues > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_psr@primary_page_flip.html > > * igt@kms_setmode@basic-clone-single-crtc: > - bat-rplp-1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#4579]) > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html > - bat-adls-5: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#4579]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_setmode@basic-clone-single-crtc.html > - fi-kbl-soraka: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4579]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html > > * igt@prime_vgem@basic-read: > - bat-adls-5: NOTRUN -> [SKIP][25] ([fdo#109295] / [i915#3291]) +2 similar issues > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-read.html > > * igt@prime_vgem@basic-userptr: > - bat-adls-5: NOTRUN -> [SKIP][26] ([fdo#109295] / [i915#3301]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-userptr.html > > > #### Possible fixes #### > > * igt@i915_module_load@load: > - bat-adls-5: [ABORT][27] -> [PASS][28] > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adls-5/igt@i915_module_load@load.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_module_load@load.html > > * igt@i915_selftest@live@requests: > - {bat-mtlp-8}: [ABORT][29] ([i915#4983] / [i915#7920] / [i915#7953]) -> [PASS][30] > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-mtlp-8/igt@i915_selftest@live@requests.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-mtlp-8/igt@i915_selftest@live@requests.html > > * igt@i915_selftest@live@reset: > - bat-rpls-1: [ABORT][31] ([i915#4983] / [i915#7461] / [i915#7953] / [i915#8347] / [i915#8384]) -> [PASS][32] > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-1/igt@i915_selftest@live@reset.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@reset.html > > * igt@i915_selftest@live@workarounds: > - bat-adlm-1: [DMESG-FAIL][33] ([i915#7904]) -> [PASS][34] > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adlm-1/igt@i915_selftest@live@workarounds.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adlm-1/igt@i915_selftest@live@workarounds.html > > > #### Warnings #### > > * igt@kms_psr@primary_mmap_gtt: > - bat-rplp-1: [ABORT][35] -> [SKIP][36] ([i915#1072]) > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 > [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 > [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 > [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 > [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 > [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 > [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 > [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 > [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 > [i915#7904]: https://gitlab.freedesktop.org/drm/intel/issues/7904 > [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 > [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 > [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 > [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 > [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 > [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 > [i915#8449]: https://gitlab.freedesktop.org/drm/intel/issues/8449 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7286 -> IGTPW_8949 > > CI-20190529: 20190529 > CI_DRM_13141: c201176285d7a79884421d1b907ec858c5aee657 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8949: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html > IGT_7286: a482779488f11c432d7ddcb1980691ab1603f356 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > > Testlist changes > ---------------- > > +++ 0 lines > --- 817 lines > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add an option to protect Xe test builds (rev3) 2023-05-09 10:42 [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds Mauro Carvalho Chehab ` (5 preceding siblings ...) 2023-05-12 13:20 ` Patchwork @ 2023-05-12 13:29 ` Patchwork 2023-05-12 14:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-05-12 13:29 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11280 bytes --] == Series Details == Series: Add an option to protect Xe test builds (rev3) URL : https://patchwork.freedesktop.org/series/117511/ State : success == Summary == CI Bug Log - changes from IGT_7286 -> IGTPW_8949 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8949 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adls-5: NOTRUN -> [SKIP][1] ([i915#7456]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@debugfs_test@basic-hwmon.html * igt@gem_busy@busy@all-engines: - bat-adls-5: NOTRUN -> [DMESG-WARN][2] ([i915#8450]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_busy@busy@all-engines.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-5: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-adls-5: NOTRUN -> [SKIP][6] ([i915#3282]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][7] ([i915#7077]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#5334] / [i915#7872]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - bat-adls-5: NOTRUN -> [DMESG-WARN][10] ([i915#5591]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@slpc: - bat-rpls-2: [PASS][11] -> [DMESG-WARN][12] ([i915#6367]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-2/igt@i915_selftest@live@slpc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-2/igt@i915_selftest@live@slpc.html - bat-rpls-1: NOTRUN -> [DMESG-WARN][13] ([i915#6367] / [i915#7953]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: NOTRUN -> [ABORT][14] ([i915#6687] / [i915#7953] / [i915#7978]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@bad-pitch-0: - bat-adls-5: NOTRUN -> [DMESG-WARN][15] ([i915#8449]) +36 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_addfb_basic@bad-pitch-0.html * igt@kms_chamelium_hpd@dp-hpd-fast: - bat-adls-5: NOTRUN -> [SKIP][16] ([i915#7828]) +8 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][17] ([fdo#109271]) +15 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-adls-5: NOTRUN -> [SKIP][18] ([i915#4103]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-5: NOTRUN -> [SKIP][19] ([fdo#109285]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#1845] / [i915#5354]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_psr@primary_page_flip: - bat-adls-5: NOTRUN -> [SKIP][21] ([i915#668]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#4579]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-adls-5: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#4579]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@kms_setmode@basic-clone-single-crtc.html - fi-kbl-soraka: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4579]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - bat-adls-5: NOTRUN -> [SKIP][25] ([fdo#109295] / [i915#3291]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - bat-adls-5: NOTRUN -> [SKIP][26] ([fdo#109295] / [i915#3301]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@prime_vgem@basic-userptr.html #### Possible fixes #### * igt@i915_module_load@load: - bat-adls-5: [ABORT][27] -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adls-5/igt@i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adls-5/igt@i915_module_load@load.html * igt@i915_selftest@live@requests: - {bat-mtlp-8}: [ABORT][29] ([i915#4983] / [i915#7920] / [i915#7953]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-mtlp-8/igt@i915_selftest@live@requests.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][31] ([i915#4983] / [i915#7461] / [i915#7953] / [i915#8347] / [i915#8384]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rpls-1/igt@i915_selftest@live@reset.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@workarounds: - bat-adlm-1: [DMESG-FAIL][33] ([i915#7904]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-adlm-1/igt@i915_selftest@live@workarounds.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-adlm-1/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: [ABORT][35] -> [SKIP][36] ([i915#1072]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7904]: https://gitlab.freedesktop.org/drm/intel/issues/7904 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8449]: https://gitlab.freedesktop.org/drm/intel/issues/8449 [i915#8450]: https://gitlab.freedesktop.org/drm/intel/issues/8450 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7286 -> IGTPW_8949 CI-20190529: 20190529 CI_DRM_13141: c201176285d7a79884421d1b907ec858c5aee657 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8949: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html IGT_7286: a482779488f11c432d7ddcb1980691ab1603f356 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +++ 0 lines --- 817 lines == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html [-- Attachment #2: Type: text/html, Size: 13382 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Add an option to protect Xe test builds (rev3) 2023-05-09 10:42 [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds Mauro Carvalho Chehab ` (6 preceding siblings ...) 2023-05-12 13:29 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-05-12 14:56 ` Patchwork 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-05-12 14:56 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 18474 bytes --] == Series Details == Series: Add an option to protect Xe test builds (rev3) URL : https://patchwork.freedesktop.org/series/117511/ State : success == Summary == CI Bug Log - changes from IGT_7286_full -> IGTPW_8949_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_8949_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][1] -> [FAIL][2] ([i915#2846]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-glk9/igt@gem_exec_fair@basic-deadline.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][3] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][4] -> [FAIL][5] ([i915#2842]) +1 similar issue [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][7] ([fdo#109271]) +78 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][8] -> [ABORT][9] ([i915#5566]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-glk6/igt@gen9_exec_parse@allowed-single.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk1/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][10] -> [SKIP][11] ([fdo#109271]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-apl6/igt@i915_pm_dc@dc9-dpms.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-apl7/igt@i915_pm_dc@dc9-dpms.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#3886]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][13] -> [FAIL][14] ([i915#2346]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#79]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-glk: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#4579]) +7 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#658]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@perf_pmu@module-unload: - shard-snb: [PASS][19] -> [ABORT][20] ([i915#4528]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-snb2/igt@perf_pmu@module-unload.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-snb4/igt@perf_pmu@module-unload.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - {shard-rkl}: [FAIL][21] ([i915#7742]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [ABORT][23] ([i915#7461] / [i915#8211]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-glk9/igt@gem_barrier_race@remote-request@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk1/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_eio@unwedge-stress: - {shard-dg1}: [FAIL][25] ([i915#5784]) -> [PASS][26] +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-dg1-14/igt@gem_eio@unwedge-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - {shard-rkl}: [FAIL][27] ([i915#2846]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][29] ([i915#2842]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - {shard-rkl}: [FAIL][31] ([i915#2842]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_mmap_offset@clear@smem0: - {shard-dg1}: [DMESG-WARN][33] ([i915#8304]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-dg1-13/igt@gem_mmap_offset@clear@smem0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-dg1-18/igt@gem_mmap_offset@clear@smem0.html * igt@i915_module_load@reload-with-fault-injection: - {shard-dg1}: [DMESG-WARN][35] ([i915#8420]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc6-dpms: - {shard-tglu}: [FAIL][37] ([i915#3989] / [i915#454]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - {shard-rkl}: [SKIP][39] ([i915#1937] / [i915#4579]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-rkl-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - {shard-dg1}: [FAIL][41] ([i915#3591]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-rkl}: [SKIP][43] ([i915#1397]) -> [PASS][44] +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-apl: [TIMEOUT][45] -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-apl2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-apl3/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_suspend@basic-s3-without-i915: - {shard-rkl}: [FAIL][47] ([fdo#103375]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][49] ([i915#2346]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-bo@pipe-b: - {shard-rkl}: [INCOMPLETE][51] ([i915#8011]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-rkl-7/igt@kms_cursor_legacy@single-bo@pipe-b.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-rkl-2/igt@kms_cursor_legacy@single-bo@pipe-b.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [FAIL][53] ([i915#4767]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][55] ([i915#2122]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2.html * igt@perf_pmu@busy-idle@vcs0: - {shard-dg1}: [FAIL][57] ([i915#4349]) -> [PASS][58] +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-dg1-15/igt@perf_pmu@busy-idle@vcs0.html #### Warnings #### * igt@kms_content_protection@mei_interface: - shard-apl: [SKIP][59] ([fdo#109271] / [i915#4579]) -> [SKIP][60] ([fdo#109271]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-apl7/igt@kms_content_protection@mei_interface.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-apl4/igt@kms_content_protection@mei_interface.html - shard-snb: [SKIP][61] ([fdo#109271] / [i915#4579]) -> [SKIP][62] ([fdo#109271]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7286/shard-snb5/igt@kms_content_protection@mei_interface.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/shard-snb5/igt@kms_content_protection@mei_interface.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#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#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [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#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [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#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#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [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#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [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#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [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#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#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8420]: https://gitlab.freedesktop.org/drm/intel/issues/8420 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7286 -> IGTPW_8949 CI-20190529: 20190529 CI_DRM_13141: c201176285d7a79884421d1b907ec858c5aee657 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8949: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html IGT_7286: a482779488f11c432d7ddcb1980691ab1603f356 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8949/index.html [-- Attachment #2: Type: text/html, Size: 17109 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2023-05-12 14:56 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-05-09 10:42 [igt-dev] [PATCH i-g-t v2 0/2] Add an option to protect Xe test builds Mauro Carvalho Chehab 2023-05-09 10:42 ` [igt-dev] [PATCH i-g-t v2 1/2] meson: add an option to control " Mauro Carvalho Chehab 2023-05-12 8:49 ` Kamil Konieczny 2023-05-09 10:42 ` [igt-dev] [PATCH i-g-t v2 2/2] meson_options.txt: disable Xe driver tests by default Mauro Carvalho Chehab 2023-05-12 8:57 ` Kamil Konieczny 2023-05-12 10:05 ` [igt-dev] ✗ GitLab.Pipeline: warning for Add an option to protect Xe test builds (rev2) Patchwork 2023-05-12 10:34 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork 2023-05-12 11:35 ` [igt-dev] ✗ Fi.CI.BAT: failure for Add an option to protect Xe test builds (rev3) Patchwork 2023-05-12 12:57 ` Kamil Konieczny 2023-05-12 13:30 ` Yedireswarapu, SaiX Nandan 2023-05-12 13:20 ` Patchwork 2023-05-12 13:23 ` Kamil Konieczny 2023-05-12 13:29 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-05-12 14:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox