* [igt-dev] [PATCH i-g-t 0/3] ./scripts/igt_doc.py: speedup check logic
@ 2023-04-12 12:35 Mauro Carvalho Chehab
2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 1/3] scripts/igt_doc.py: cleanup some pylint warnings Mauro Carvalho Chehab
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Mauro Carvalho Chehab @ 2023-04-12 12:35 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
The logic which checks for missing/obsolete documentation is too
slow. Currently, on my notebook it takes 12 seconds:
$ time ./scripts/igt_doc.py --check --config tests/xe/xe_*json
real 0m12.085s
user 0m10.468s
sys 0m1.457s
Implent it on a different way, in order to speedup the build process.
After the change, it now takes less than 500ms:
$ time ./scripts/igt_doc.py --check --config tests/xe/xe_*json
real 0m0.460s
user 0m0.357s
sys 0m0.102s
Mauro Carvalho Chehab (3):
scripts/igt_doc.py: cleanup some pylint warnings
scripts/igt_doc.py: don't depend on igt_runner anymore
scripts/test_list.py: use a compiled regex for check
docs/testplan/meson.build | 7 ++--
scripts/igt_doc.py | 11 +++----
scripts/test_list.py | 69 +++++++++++++++++++++++++++------------
3 files changed, 54 insertions(+), 33 deletions(-)
--
2.39.2
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 1/3] scripts/igt_doc.py: cleanup some pylint warnings 2023-04-12 12:35 [igt-dev] [PATCH i-g-t 0/3] ./scripts/igt_doc.py: speedup check logic Mauro Carvalho Chehab @ 2023-04-12 12:35 ` Mauro Carvalho Chehab 2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 2/3] scripts/igt_doc.py: don't depend on igt_runner anymore Mauro Carvalho Chehab ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Mauro Carvalho Chehab @ 2023-04-12 12:35 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> Ensure that pylint won't report any issues on igt_doc.py. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- scripts/igt_doc.py | 1 + scripts/test_list.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/igt_doc.py b/scripts/igt_doc.py index 547cb81bce02..8fa5af15033e 100755 --- a/scripts/igt_doc.py +++ b/scripts/igt_doc.py @@ -11,6 +11,7 @@ """Maintain test plan and test implementation documentation on IGT.""" import argparse +import sys from test_list import TestList diff --git a/scripts/test_list.py b/scripts/test_list.py index 6af1914822a3..d1b9a2794967 100755 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# pylint: disable=C0301,R0902,R0914,R0912,R0915,R1702,C0302 +# pylint: disable=C0301,R0902,R0914,R0912,R0913,R0915,R1702,C0302 # SPDX-License-Identifier: (GPL-2.0 OR MIT) ## Copyright (C) 2023 Intel Corporation ## @@ -394,7 +394,7 @@ class TestList: for subtest in self.doc[test]["subtest"].keys(): summary = test_name if self.doc[test]["subtest"][subtest]["Summary"] != '': - summary += '@' + self.doc[test]["subtest"][subtest]["Summary"] + summary += '@' + self.doc[test]["subtest"][subtest]["Summary"] if not summary: continue -- 2.39.2 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] scripts/igt_doc.py: don't depend on igt_runner anymore 2023-04-12 12:35 [igt-dev] [PATCH i-g-t 0/3] ./scripts/igt_doc.py: speedup check logic Mauro Carvalho Chehab 2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 1/3] scripts/igt_doc.py: cleanup some pylint warnings Mauro Carvalho Chehab @ 2023-04-12 12:35 ` Mauro Carvalho Chehab 2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: use a compiled regex for check Mauro Carvalho Chehab ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Mauro Carvalho Chehab @ 2023-04-12 12:35 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> There's no need to actually call IGT runner to get test lists. Remove such dependency, in order to speedup --check. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- docs/testplan/meson.build | 7 ++---- scripts/igt_doc.py | 10 +++----- scripts/test_list.py | 53 ++++++++++++++++++++++++++------------- 3 files changed, 41 insertions(+), 29 deletions(-) diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build index ea9f6eeb7038..3347f61876ef 100644 --- a/docs/testplan/meson.build +++ b/docs/testplan/meson.build @@ -11,11 +11,8 @@ xe_test_config = join_paths(source_root, 'tests', 'xe', 'xe_test_config.json') check_testlist = [] if build_tests doc_dependencies = test_executables - if jsonc.found() - # Check if documentation matches the actual tests - check_testlist = [ '--check-testlist', '--igt-build-path', build_root ] - doc_dependencies += runner - endif + # Check if documentation matches the actual tests + check_testlist = [ '--check-testlist', '--igt-build-path', build_root ] else doc_dependencies = [] endif diff --git a/scripts/igt_doc.py b/scripts/igt_doc.py index 8fa5af15033e..01df35f98ace 100755 --- a/scripts/igt_doc.py +++ b/scripts/igt_doc.py @@ -16,7 +16,6 @@ import sys from test_list import TestList IGT_BUILD_PATH = 'build' -IGT_RUNNER = 'runner/igt_runner' parser = argparse.ArgumentParser(description = "Print formatted kernel documentation to stdout.", formatter_class = argparse.ArgumentDefaultsHelpFormatter, @@ -36,24 +35,21 @@ parser.add_argument("--sort-field", parser.add_argument("--filter-field", help="modify --show-subtests to filter output based a regex given by FILTER_FIELD=~'regex'") parser.add_argument("--check-testlist", action="store_true", - help="Compare documentation against IGT runner testlist.") + help="Compare documentation against IGT built tests.") parser.add_argument("--include-plan", action="store_true", help="Include test plans, if any.") parser.add_argument("--igt-build-path", - help="Path where the IGT runner is sitting. Used by --check-testlist.", + help="Path to the IGT build directory. Used by --check-testlist.", default=IGT_BUILD_PATH) parser.add_argument("--gen-testlist", help="Generate documentation at the GEN_TESTLIST directory, using SORT_FIELD to split the tests. Requires --sort-field.") -parser.add_argument("--igt-runner", - help="Path where the IGT runner is sitting. Used by --check-testlist.", - default=IGT_RUNNER) parser.add_argument('--files', nargs='+', help="File name(s) to be processed") parse_args = parser.parse_args() tests = TestList(parse_args.config, parse_args.include_plan, parse_args.files, - parse_args.igt_build_path, parse_args.igt_runner) + parse_args.igt_build_path) RUN = 0 if parse_args.show_subtests: diff --git a/scripts/test_list.py b/scripts/test_list.py index d1b9a2794967..287351e717b3 100755 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -245,7 +245,7 @@ class TestList: """ def __init__(self, config_fname, include_plan = False, file_list = False, - igt_build_path = None, igt_runner = None): + igt_build_path = None): self.doc = {} self.test_number = 0 self.config = None @@ -254,7 +254,6 @@ class TestList: self.props = {} self.config_fname = config_fname self.igt_build_path = igt_build_path - self.igt_runner = igt_runner self.level_count = 0 self.field_list = {} self.title = None @@ -766,6 +765,38 @@ class TestList: return subtests + def __get_testlist(self, name): + match = re.match(r"(.*/)?(.*)\.c$", name) + if not match: + return [] + + basename = "igt@" + match.group(2) + + fname = os.path.join(self.igt_build_path, "tests", match.group(2)) + if not os.path.isfile(fname): + print(f"Error: file {fname} doesn't exist.") + sys.exit(1) + try: + result = subprocess.run([ fname, "--list-subtests" ], + check = True, + stdout = subprocess.PIPE, + universal_newlines=True) + subtests = result.stdout.splitlines() + + return [basename + "@" + i for i in subtests] + except subprocess.CalledProcessError: + # Handle it as a test using igt_simple_main + return [basename] + + def get_testlist(self): + + """ Return a list of tests as reported by --list-subtests """ + tests = [] + for name in self.filenames: + tests += self.__get_testlist(name) + + return sorted(tests) + # # Validation methods # @@ -773,28 +804,16 @@ class TestList: """Compare documented subtests with the IGT test list""" - if not self.igt_build_path or not self.igt_runner: - sys.exit("Need the IGT build path and igt_runner executable file name") + if not self.igt_build_path: + sys.exit("Need the IGT build path") doc_subtests = sorted(self.get_subtests()[""]) for i in range(0, len(doc_subtests)): # pylint: disable=C0200 doc_subtests[i] = re.sub(r'\<[^\>]+\>', r'\\d+', doc_subtests[i]) - test_prefix = os.path.commonprefix(doc_subtests) - # Get a list of tests from - try: - result = subprocess.run([ f"{self.igt_build_path}/{self.igt_runner}", - "-L", "-t", test_prefix, - f"{self.igt_build_path}/tests"], check = True, - stdout=subprocess.PIPE, universal_newlines=True) - except subprocess.CalledProcessError as sub_err: - print(sub_err.stderr) - print("Error:", sub_err) - sys.exit(1) - - run_subtests = sorted(result.stdout.splitlines()) + run_subtests = self.get_testlist() # Compare arrays -- 2.39.2 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: use a compiled regex for check 2023-04-12 12:35 [igt-dev] [PATCH i-g-t 0/3] ./scripts/igt_doc.py: speedup check logic Mauro Carvalho Chehab 2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 1/3] scripts/igt_doc.py: cleanup some pylint warnings Mauro Carvalho Chehab 2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 2/3] scripts/igt_doc.py: don't depend on igt_runner anymore Mauro Carvalho Chehab @ 2023-04-12 12:35 ` Mauro Carvalho Chehab 2023-04-12 13:24 ` [igt-dev] ✓ Fi.CI.BAT: success for ./scripts/igt_doc.py: speedup check logic Patchwork 2023-04-12 21:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Mauro Carvalho Chehab @ 2023-04-12 12:35 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> Speed up even further the logic for --check-testlist by pre-compiling the regex that will be used to validate the results. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- scripts/test_list.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/scripts/test_list.py b/scripts/test_list.py index 287351e717b3..acdd1cac4c20 100755 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -820,10 +820,18 @@ class TestList: run_missing = [] doc_uneeded = [] + test_regex = r"" + for doc_test in doc_subtests: + if test_regex != r"": + test_regex += r"|" + test_regex += r'^' + doc_test + r'$' + + test_regex = re.compile(test_regex) + for doc_test in doc_subtests: found = False for run_test in run_subtests: - if re.match(r'^' + doc_test + r'$', run_test): + if re.match(test_regex, run_test): found = True break if not found: @@ -832,7 +840,7 @@ class TestList: for run_test in run_subtests: found = False for doc_test in doc_subtests: - if re.match(r'^' + doc_test + r'$', run_test): + if re.match(test_regex, run_test): found = True break if not found: -- 2.39.2 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for ./scripts/igt_doc.py: speedup check logic 2023-04-12 12:35 [igt-dev] [PATCH i-g-t 0/3] ./scripts/igt_doc.py: speedup check logic Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: use a compiled regex for check Mauro Carvalho Chehab @ 2023-04-12 13:24 ` Patchwork 2023-04-12 21:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-04-12 13:24 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5242 bytes --] == Series Details == Series: ./scripts/igt_doc.py: speedup check logic URL : https://patchwork.freedesktop.org/series/116379/ State : success == Summary == CI Bug Log - changes from CI_DRM_12995 -> IGTPW_8789 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/index.html Participating hosts (37 -> 36) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8789 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gt_lrc: - bat-dg1-5: [PASS][1] -> [ABORT][2] ([i915#4983]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-dg1-5/igt@i915_selftest@live@gt_lrc.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/bat-dg1-5/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@requests: - bat-rpls-2: [PASS][3] -> [ABORT][4] ([i915#4983] / [i915#7913]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-rpls-2/igt@i915_selftest@live@requests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-rpls-1: [PASS][5] -> [DMESG-FAIL][6] ([i915#6367]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-rpls-1/igt@i915_selftest@live@slpc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - bat-rpls-1: [PASS][7] -> [DMESG-FAIL][8] ([i915#7102]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-rpls-1/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/bat-rpls-1/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s2idle-without-i915: - fi-apl-guc: [PASS][9] -> [DMESG-WARN][10] ([i915#1982]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/fi-apl-guc/igt@i915_suspend@basic-s2idle-without-i915.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/fi-apl-guc/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1: - bat-dg2-8: [PASS][11] -> [FAIL][12] ([i915#7932]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html #### Possible fixes #### * igt@i915_module_load@load: - fi-elk-e7500: [DMESG-WARN][13] ([i915#4391]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/fi-elk-e7500/igt@i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/fi-elk-e7500/igt@i915_module_load@load.html * igt@i915_module_load@reload: - fi-kbl-soraka: [DMESG-WARN][15] ([i915#1982]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/fi-kbl-soraka/igt@i915_module_load@reload.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/fi-kbl-soraka/igt@i915_module_load@reload.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: [DMESG-FAIL][17] ([i915#5334] / [i915#7872]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [FAIL][19] ([i915#7932]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7102]: https://gitlab.freedesktop.org/drm/intel/issues/7102 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7251 -> IGTPW_8789 CI-20190529: 20190529 CI_DRM_12995: 0c5be3027d7ac4a8b107bf1113867744aa3bb440 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8789: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/index.html IGT_7251: 55fa959aad79b3771350a801c1c2dbd4e5034102 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/index.html [-- Attachment #2: Type: text/html, Size: 6280 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for ./scripts/igt_doc.py: speedup check logic 2023-04-12 12:35 [igt-dev] [PATCH i-g-t 0/3] ./scripts/igt_doc.py: speedup check logic Mauro Carvalho Chehab ` (3 preceding siblings ...) 2023-04-12 13:24 ` [igt-dev] ✓ Fi.CI.BAT: success for ./scripts/igt_doc.py: speedup check logic Patchwork @ 2023-04-12 21:51 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-04-12 21:51 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 16388 bytes --] == Series Details == Series: ./scripts/igt_doc.py: speedup check logic URL : https://patchwork.freedesktop.org/series/116379/ State : success == Summary == CI Bug Log - changes from CI_DRM_12995_full -> IGTPW_8789_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8789_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs: - {shard-tglu}: [SKIP][1] ([i915#3689]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-tglu-3/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-tglu-2/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs.html Known issues ------------ Here are the changes found in IGTPW_8789_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][3] -> [FAIL][4] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-snb: NOTRUN -> [SKIP][5] ([fdo#109271]) +13 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-snb5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][6] -> [ABORT][7] ([i915#5566]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk8/igt@gen9_exec_parse@allowed-single.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][8] -> [SKIP][9] ([fdo#109271]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-apl1/igt@i915_pm_dc@dc9-dpms.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-hdmi-a-1: - shard-glk: [PASS][10] -> [DMESG-FAIL][11] ([i915#118]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk4/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-hdmi-a-1.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-glk1/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][12] -> [FAIL][13] ([i915#2346]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][14] -> [FAIL][15] ([i915#2346]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1: - shard-glk: [PASS][16] -> [FAIL][17] ([i915#79]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1: - shard-apl: [PASS][18] -> [ABORT][19] ([i915#180]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html #### Possible fixes #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][20] ([i915#2842]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html - {shard-tglu}: [FAIL][22] ([i915#2842]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - {shard-tglu}: [ABORT][24] ([i915#7975]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-tglu-8/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@i915_pm_rpm@modeset-lpsp: - {shard-rkl}: [SKIP][26] ([i915#1397]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [ABORT][28] ([i915#4528]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][30] ([i915#72]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@single-bo@pipe-b: - {shard-dg1}: [INCOMPLETE][32] ([i915#8011] / [i915#8347]) -> [PASS][33] +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-dg1-14/igt@kms_cursor_legacy@single-bo@pipe-b.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-dg1-15/igt@kms_cursor_legacy@single-bo@pipe-b.html * igt@kms_plane_scaling@i915-max-src-size@pipe-a-hdmi-a-1: - {shard-tglu}: [FAIL][34] ([i915#8292]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-tglu-2/igt@kms_plane_scaling@i915-max-src-size@pipe-a-hdmi-a-1.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/shard-tglu-5/igt@kms_plane_scaling@i915-max-src-size@pipe-a-hdmi-a-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [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#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [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#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7251 -> IGTPW_8789 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12995: 0c5be3027d7ac4a8b107bf1113867744aa3bb440 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8789: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/index.html IGT_7251: 55fa959aad79b3771350a801c1c2dbd4e5034102 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8789/index.html [-- Attachment #2: Type: text/html, Size: 10582 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-04-12 21:51 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-04-12 12:35 [igt-dev] [PATCH i-g-t 0/3] ./scripts/igt_doc.py: speedup check logic Mauro Carvalho Chehab 2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 1/3] scripts/igt_doc.py: cleanup some pylint warnings Mauro Carvalho Chehab 2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 2/3] scripts/igt_doc.py: don't depend on igt_runner anymore Mauro Carvalho Chehab 2023-04-12 12:35 ` [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: use a compiled regex for check Mauro Carvalho Chehab 2023-04-12 13:24 ` [igt-dev] ✓ Fi.CI.BAT: success for ./scripts/igt_doc.py: speedup check logic Patchwork 2023-04-12 21:51 ` [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