* [igt-dev] [PATCH i-g-t] README.md and docs: describe how to document tests
@ 2023-08-17 8:43 Mauro Carvalho Chehab
2023-08-17 9:28 ` Kamil Konieczny
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Mauro Carvalho Chehab @ 2023-08-17 8:43 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
Add some documentation describing how to document tests,
with both the legacy way and via testplan.
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
README.md | 4 +
docs/test_documentation.md | 179 +++++++++++++++++++++++++++++++++++++
2 files changed, 183 insertions(+)
create mode 100644 docs/test_documentation.md
diff --git a/README.md b/README.md
index 66f2bc0fa1bd..a88783bf4e52 100644
--- a/README.md
+++ b/README.md
@@ -49,6 +49,10 @@ Documentation is built using
$ ninja -C build igt-gpu-tools-doc
+Please notice that some drivers and test sets may require that all
+tests to be properly documented via testplan. So, by default, build
+will fail of one forgets to document or update the documentation.
+This is currently enabled for the Xe, i915 drivers, and for KMS tests.
Running Tests
-------------
diff --git a/docs/test_documentation.md b/docs/test_documentation.md
new file mode 100644
index 000000000000..f21bf69def16
--- /dev/null
+++ b/docs/test_documentation.md
@@ -0,0 +1,179 @@
+IGT Test documentation
+======================
+
+Legacy way
+----------
+
+IGT has been providing a way to document tests in runtime by using tree macros:
+
+ - IGT_TEST_DESCRIPTION(test_file_description)
+ - igt_describe(subtest_description) and igt_describe_f(format, args...)
+
+This is limited, as:
+ - Each test/subtest has just one “field”: description. So, it doesn't
+ allow specifying what features are tested and/or special requirements;
+ - It is meant to produce a very concise documentation;
+ - Integration with external platforms to group tests per category
+ is not possible, as there's no way to tell what category each test
+ belongs;
+ - Format is not easily expansible;
+ - The build system doesn’t verify if all tests are documented. So,
+ documentation tends to be outdated or forgotten, as new patches
+ modify the test set.
+
+Documentation via structured comments (testplan)
+------------------------------------------------
+
+With the addition of Xe driver, a new way to document tests was added.
+It is based on special comment-like annotation inside the C code.
+
+It was written to be flexible, so the valid fields to be used by is
+described on a JSON configuration file. That makes easy to add/modify
+the fields as needed. It is also easy to use the documentation to
+integrate with external reporting tools.
+
+As an additional benefit, the documentation tags will be generating a
+Restructured Text file. So, it is possible to add enriched test
+descriptions if needed.
+
+Also, the build system can optionally enforce a check at build time to
+verify if the documentation is in place.
+
+testplan configuration file
+---------------------------
+
+The configuration file contains the fields to be used for documenting
+tests, and the test names. It may also mark a property as mandatory.
+
+A typical example is:
+
+```
+{
+ "description": "JSON example file",
+ "name": "Tests for XYZ Driver",
+ "files": [ "test.c" ],
+ "fields": {
+ "Feature": {
+ "_properties_": {
+ "description": "Feature to be tested"
+ }
+ },
+ "Description" : {
+ "_properties_": {
+ "mandatory": true,
+ "description": "Provides a description for the test/subtest."
+ }
+ }
+ }
+}
+```
+
+Documenting tests via testplan
+------------------------------
+
+A typical documentation markup at the test source code looks like:
+```
+/**
+ * TEST: Check if new IGT test documentation logic functionality is working
+ * Mega-feature: IGT test documentation
+ * Category: Software build block
+ * Sub-category: documentation
+ * Functionality: test documentation
+ * Issue: none
+ * Description: Complete description of this test
+ *
+ * SUBTEST: foo
+ * Description: do foo things.
+ * Foo description continuing on another line
+ *
+ * SUBTEST: bar
+ * Description:
+ * Do bar things.
+ * Bar description continuing on another line
+ */
+```
+
+It is also possible to add variables to the documentation with:
+
+```
+/**
+ * SUBTEST: test-%s-binds-with-%ld-size-%s
+ * Description: Test arg[3] arg[1] binds with arg[2] size
+ *
+ * SUBTEST: test-%s-%ld-size
+ * Description: Test arg[1] with %arg[2] size
+ *
+ * arg[1]:
+ *
+ * @large: large
+ * something
+ * @small: small
+ * something
+ *
+ * arg[2]: buffer size
+ *
+ * arg[3]:
+ *
+ * @misaligned-binds: misaligned
+ * @userptr-binds: user pointer
+ */
+ ```
+
+The first "%s" will be replaced by the values of arg[1] for the subtest
+name. At the description, arg[1] will be replaced by the string after
+the field description. The same applies to the subsequent wildcards.
+
+So, the above will produce the following output (using the example
+configuration file described at the past session:
+
+```
+``igt@test@test-large-<buffer size>-size``
+
+:Description: Test large something with <buffer size> size
+
+
+``igt@test@test-large-binds-with-<buffer size>-size-misaligned-binds``
+
+:Description: Test misaligned large something binds with <buffer size> size
+
+
+``igt@test@test-small-binds-with-<buffer size>-size-misaligned-binds``
+
+:Description: Test misaligned small something binds with <buffer size> size
+
+
+``igt@test@test-small-<buffer size>-size``
+
+:Description: Test small something with <buffer size> size
+
+
+``igt@test@test-large-binds-with-<buffer size>-size-userptr-binds``
+
+:Description: Test user pointer large something binds with <buffer size> size
+
+
+``igt@test@test-small-binds-with-<buffer size>-size-userptr-binds``
+
+:Description: Test user pointer small something binds with <buffer size> size
+```
+
+Wildcard replacement can also be used to maintain an argument with the
+same name at the replaced description. That makes easy to document
+numeric arguments with a fixed testset, like:
+
+```
+/**
+ * SUBTEST: unbind-all-%d-vmas
+ * Description: unbind all with %arg[1] VMAs
+ *
+ * arg[1].values: 2, 8
+ * arg[1].values: 16, 32
+ */
+
+/**
+ * SUBTEST: unbind-all-%d-vmas
+ * Description: unbind all with %arg[1] VMAs
+ *
+ * arg[1].values: 64, 128
+ */
+```
--
2.41.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [igt-dev] [PATCH i-g-t] README.md and docs: describe how to document tests 2023-08-17 8:43 [igt-dev] [PATCH i-g-t] README.md and docs: describe how to document tests Mauro Carvalho Chehab @ 2023-08-17 9:28 ` Kamil Konieczny 2023-08-17 10:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2023-08-17 9:28 UTC (permalink / raw) To: igt-dev Hi Mauro, +cc Petri On 2023-08-17 at 10:43:22 +0200, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > Add some documentation describing how to document tests, > with both the legacy way and via testplan. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> > --- > README.md | 4 + > docs/test_documentation.md | 179 +++++++++++++++++++++++++++++++++++++ > 2 files changed, 183 insertions(+) > create mode 100644 docs/test_documentation.md > > diff --git a/README.md b/README.md > index 66f2bc0fa1bd..a88783bf4e52 100644 > --- a/README.md > +++ b/README.md > @@ -49,6 +49,10 @@ Documentation is built using > > $ ninja -C build igt-gpu-tools-doc > > +Please notice that some drivers and test sets may require that all > +tests to be properly documented via testplan. So, by default, build ------------------------------------------------ ^^^^^^^^^^^^^^^ s/So, by default,/By default/ Please also replace /So, // at other places. > +will fail of one forgets to document or update the documentation. ------------ ^ s/of/if/ > +This is currently enabled for the Xe, i915 drivers, and for KMS tests. ---------------------------------------------------- ^ s/, and/ and/ Regards, Kamil > > Running Tests > ------------- > diff --git a/docs/test_documentation.md b/docs/test_documentation.md > new file mode 100644 > index 000000000000..f21bf69def16 > --- /dev/null > +++ b/docs/test_documentation.md > @@ -0,0 +1,179 @@ > +IGT Test documentation > +====================== > + > +Legacy way > +---------- > + > +IGT has been providing a way to document tests in runtime by using tree macros: > + > + - IGT_TEST_DESCRIPTION(test_file_description) > + - igt_describe(subtest_description) and igt_describe_f(format, args...) > + > +This is limited, as: > + - Each test/subtest has just one “field”: description. So, it doesn't > + allow specifying what features are tested and/or special requirements; > + - It is meant to produce a very concise documentation; > + - Integration with external platforms to group tests per category > + is not possible, as there's no way to tell what category each test > + belongs; > + - Format is not easily expansible; > + - The build system doesn’t verify if all tests are documented. So, > + documentation tends to be outdated or forgotten, as new patches > + modify the test set. > + > +Documentation via structured comments (testplan) > +------------------------------------------------ > + > +With the addition of Xe driver, a new way to document tests was added. > +It is based on special comment-like annotation inside the C code. > + > +It was written to be flexible, so the valid fields to be used by is > +described on a JSON configuration file. That makes easy to add/modify > +the fields as needed. It is also easy to use the documentation to > +integrate with external reporting tools. > + > +As an additional benefit, the documentation tags will be generating a > +Restructured Text file. So, it is possible to add enriched test > +descriptions if needed. > + > +Also, the build system can optionally enforce a check at build time to > +verify if the documentation is in place. > + > +testplan configuration file > +--------------------------- > + > +The configuration file contains the fields to be used for documenting > +tests, and the test names. It may also mark a property as mandatory. > + > +A typical example is: > + > +``` > +{ > + "description": "JSON example file", > + "name": "Tests for XYZ Driver", > + "files": [ "test.c" ], > + "fields": { > + "Feature": { > + "_properties_": { > + "description": "Feature to be tested" > + } > + }, > + "Description" : { > + "_properties_": { > + "mandatory": true, > + "description": "Provides a description for the test/subtest." > + } > + } > + } > +} > +``` > + > +Documenting tests via testplan > +------------------------------ > + > +A typical documentation markup at the test source code looks like: > +``` > +/** > + * TEST: Check if new IGT test documentation logic functionality is working > + * Mega-feature: IGT test documentation > + * Category: Software build block > + * Sub-category: documentation > + * Functionality: test documentation > + * Issue: none > + * Description: Complete description of this test > + * > + * SUBTEST: foo > + * Description: do foo things. > + * Foo description continuing on another line > + * > + * SUBTEST: bar > + * Description: > + * Do bar things. > + * Bar description continuing on another line > + */ > +``` > + > +It is also possible to add variables to the documentation with: > + > +``` > +/** > + * SUBTEST: test-%s-binds-with-%ld-size-%s > + * Description: Test arg[3] arg[1] binds with arg[2] size > + * > + * SUBTEST: test-%s-%ld-size > + * Description: Test arg[1] with %arg[2] size > + * > + * arg[1]: > + * > + * @large: large > + * something > + * @small: small > + * something > + * > + * arg[2]: buffer size > + * > + * arg[3]: > + * > + * @misaligned-binds: misaligned > + * @userptr-binds: user pointer > + */ > + ``` > + > +The first "%s" will be replaced by the values of arg[1] for the subtest > +name. At the description, arg[1] will be replaced by the string after > +the field description. The same applies to the subsequent wildcards. > + > +So, the above will produce the following output (using the example > +configuration file described at the past session: > + > +``` > +``igt@test@test-large-<buffer size>-size`` > + > +:Description: Test large something with <buffer size> size > + > + > +``igt@test@test-large-binds-with-<buffer size>-size-misaligned-binds`` > + > +:Description: Test misaligned large something binds with <buffer size> size > + > + > +``igt@test@test-small-binds-with-<buffer size>-size-misaligned-binds`` > + > +:Description: Test misaligned small something binds with <buffer size> size > + > + > +``igt@test@test-small-<buffer size>-size`` > + > +:Description: Test small something with <buffer size> size > + > + > +``igt@test@test-large-binds-with-<buffer size>-size-userptr-binds`` > + > +:Description: Test user pointer large something binds with <buffer size> size > + > + > +``igt@test@test-small-binds-with-<buffer size>-size-userptr-binds`` > + > +:Description: Test user pointer small something binds with <buffer size> size > +``` > + > +Wildcard replacement can also be used to maintain an argument with the > +same name at the replaced description. That makes easy to document > +numeric arguments with a fixed testset, like: > + > +``` > +/** > + * SUBTEST: unbind-all-%d-vmas > + * Description: unbind all with %arg[1] VMAs > + * > + * arg[1].values: 2, 8 > + * arg[1].values: 16, 32 > + */ > + > +/** > + * SUBTEST: unbind-all-%d-vmas > + * Description: unbind all with %arg[1] VMAs > + * > + * arg[1].values: 64, 128 > + */ > +``` > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for README.md and docs: describe how to document tests 2023-08-17 8:43 [igt-dev] [PATCH i-g-t] README.md and docs: describe how to document tests Mauro Carvalho Chehab 2023-08-17 9:28 ` Kamil Konieczny @ 2023-08-17 10:23 ` Patchwork 2023-08-17 10:23 ` [igt-dev] ○ CI.xeBAT: info " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-08-17 10:23 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5351 bytes --] == Series Details == Series: README.md and docs: describe how to document tests URL : https://patchwork.freedesktop.org/series/122564/ State : success == Summary == CI Bug Log - changes from IGT_7442 -> IGTPW_9608 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/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_9608 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][3] ([i915#5334] / [i915#7872]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][4] ([i915#1886] / [i915#7913]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271]) +8 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1: - fi-ivb-3770: NOTRUN -> [DMESG-WARN][6] ([i915#8841]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/fi-ivb-3770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: NOTRUN -> [SKIP][7] ([i915#1072]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [ABORT][8] ([i915#8260] / [i915#8668]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [DMESG-FAIL][9] ([i915#5334]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html #### Warnings #### * igt@gem_exec_suspend@basic-s3@smem: - fi-ivb-3770: [ABORT][11] ([i915#8841]) -> [DMESG-WARN][12] ([i915#8841]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/fi-ivb-3770/igt@gem_exec_suspend@basic-s3@smem.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/fi-ivb-3770/igt@gem_exec_suspend@basic-s3@smem.html * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: [ABORT][13] ([i915#8442] / [i915#8668] / [i915#8712]) -> [SKIP][14] ([i915#1072]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7442 -> IGTPW_9608 CI-20190529: 20190529 CI_DRM_13528: a7c0be10a6b6a23017681cc609c1353711dc70e7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9608: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/index.html IGT_7442: f6eea5a02525d62d10596408d1175c83d6f4038e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/index.html [-- Attachment #2: Type: text/html, Size: 6547 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for README.md and docs: describe how to document tests 2023-08-17 8:43 [igt-dev] [PATCH i-g-t] README.md and docs: describe how to document tests Mauro Carvalho Chehab 2023-08-17 9:28 ` Kamil Konieczny 2023-08-17 10:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-08-17 10:23 ` Patchwork 2023-08-17 12:36 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-08-17 10:23 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 338 bytes --] == Series Details == Series: README.md and docs: describe how to document tests URL : https://patchwork.freedesktop.org/series/122564/ State : info == Summary == Participating hosts: bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[0]: Results: [IGTPW_9608](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/index.html) [-- Attachment #2: Type: text/html, Size: 848 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for README.md and docs: describe how to document tests 2023-08-17 8:43 [igt-dev] [PATCH i-g-t] README.md and docs: describe how to document tests Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-08-17 10:23 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-08-17 12:36 ` Patchwork 2023-08-17 23:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-08-22 13:06 ` [igt-dev] ✗ CI.xeBAT: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-08-17 12:36 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5422 bytes --] == Series Details == Series: README.md and docs: describe how to document tests URL : https://patchwork.freedesktop.org/series/122564/ State : success == Summary == CI Bug Log - changes from XEIGT_7442_BAT -> XEIGTPW_9608_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 3) ------------------------------ Additional (1): bat-atsm-2 Known issues ------------ Here are the changes found in XEIGTPW_9608_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@invalid-set-prop-any: - bat-atsm-2: NOTRUN -> [SKIP][1] ([i915#6077]) +24 similar issues [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - bat-atsm-2: NOTRUN -> [SKIP][2] ([Intel XE#274]) +5 similar issues [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset: - bat-atsm-2: NOTRUN -> [SKIP][3] ([Intel XE#275]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_force_connector_basic@force-connector-state: - bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#277]) +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-adlp-7: [PASS][5] -> [FAIL][6] ([Intel XE#400]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7442/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-atsm-2: NOTRUN -> [SKIP][7] ([i915#1836]) +6 similar issues [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_prop_blob@basic: - bat-atsm-2: NOTRUN -> [SKIP][8] ([Intel XE#273]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_prop_blob@basic.html * igt@kms_psr@cursor_plane_move: - bat-atsm-2: NOTRUN -> [SKIP][9] ([i915#1072]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_psr@cursor_plane_move.html * igt@xe_compute@compute-square: - bat-atsm-2: NOTRUN -> [SKIP][10] ([Intel XE#252]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@xe_compute@compute-square.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm: - bat-atsm-2: NOTRUN -> [SKIP][11] ([Intel XE#288]) +17 similar issues [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html * igt@xe_huc_copy@huc_copy: - bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#255]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@dmabuf: - bat-atsm-2: NOTRUN -> [SKIP][13] ([Intel XE#483]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@xe_live_ktest@dmabuf.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][14] ([Intel XE#480]) -> [PASS][15] +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7442/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/252 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/273 [Intel XE#274]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/274 [Intel XE#275]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/275 [Intel XE#277]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/277 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/483 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 Build changes ------------- * IGT: IGT_7442 -> IGTPW_9608 IGTPW_9608: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/index.html IGT_7442: f6eea5a02525d62d10596408d1175c83d6f4038e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-325-c605cfb9a29a5425541053b45efddbe9751cbad3: c605cfb9a29a5425541053b45efddbe9751cbad3 [-- Attachment #2: Type: text/html, Size: 6206 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for README.md and docs: describe how to document tests 2023-08-17 8:43 [igt-dev] [PATCH i-g-t] README.md and docs: describe how to document tests Mauro Carvalho Chehab ` (3 preceding siblings ...) 2023-08-17 12:36 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork @ 2023-08-17 23:50 ` Patchwork 2023-08-22 13:06 ` [igt-dev] ✗ CI.xeBAT: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-08-17 23:50 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 82589 bytes --] == Series Details == Series: README.md and docs: describe how to document tests URL : https://patchwork.freedesktop.org/series/122564/ State : failure == Summary == CI Bug Log - changes from IGT_7442_full -> IGTPW_9608_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9608_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9608_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9608_full: ### IGT changes ### #### Possible regressions #### * igt@kms_hdr@static-toggle@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_hdr@static-toggle@pipe-a-dp-4.html * igt@kms_psr@psr2_sprite_render: - shard-mtlp: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-2/igt@kms_psr@psr2_sprite_render.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@kms_psr@psr2_sprite_render.html Known issues ------------ Here are the changes found in IGTPW_9608_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-19/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-3/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +11 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-3/igt@drm_fdinfo@isolation@rcs0.html * igt@feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#1839]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@feature_discovery@display-2x.html * igt@feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#658]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@feature_discovery@psr2.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#658]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-16/igt@feature_discovery@psr2.html - shard-tglu: NOTRUN -> [SKIP][13] ([i915#658]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-9/igt@feature_discovery@psr2.html * igt@gem_create@hog-create@smem0: - shard-mtlp: [PASS][14] -> [FAIL][15] ([i915#5892]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-2/igt@gem_create@hog-create@smem0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-2/igt@gem_create@hog-create@smem0.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#1099]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-snb2/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#4812]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4036]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_capture@pi@rcs0: - shard-mtlp: [PASS][21] -> [FAIL][22] ([i915#4475]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-6/igt@gem_exec_capture@pi@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-8/igt@gem_exec_capture@pi@rcs0.html * igt@gem_exec_capture@pi@vcs1: - shard-mtlp: [PASS][23] -> [FAIL][24] ([i915#4475] / [i915#7765]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-6/igt@gem_exec_capture@pi@vcs1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-8/igt@gem_exec_capture@pi@vcs1.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#3539]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][26] -> [FAIL][27] ([i915#2842]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html - shard-glk: [PASS][28] -> [FAIL][29] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-glk5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4473] / [i915#4771]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-3/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][33] ([fdo#112283]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +6 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-12/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +6 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [PASS][36] -> [FAIL][37] ([i915#9119]) +4 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-7/igt@gem_exec_schedule@preempt-engines@ccs0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [PASS][38] -> [DMESG-FAIL][39] ([i915#8962] / [i915#9121]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-7/igt@gem_exec_schedule@preempt-engines@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][41] ([i915#7975] / [i915#8213]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][42] ([i915#7975] / [i915#8213]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4860]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-2/igt@gem_lmem_swapping@smem-oom.html - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@gem_lmem_swapping@smem-oom.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +3 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#8289]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@gem_media_fill@media-fill.html * igt@gem_mmap@bad-size: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-16/igt@gem_mmap@bad-size.html * igt@gem_mmap@big-bo: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@basic-read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +8 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@gem_mmap_gtt@basic-read-write-distinct.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +7 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@gem_mmap_wc@read-write.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3282]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@gem_pread@bench.html - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3282]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-19/igt@gem_pread@bench.html * igt@gem_pxp@display-protected-crc: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4270]) +3 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4270]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428]) +5 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-19/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4079]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4879]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3297]) +3 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][67] ([i915#3318]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-12/igt@gem_userptr_blits@vma-merge.html - shard-rkl: NOTRUN -> [FAIL][68] ([i915#3318]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-1/igt@gem_userptr_blits@vma-merge.html - shard-tglu: NOTRUN -> [FAIL][69] ([i915#3318]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-7/igt@gem_userptr_blits@vma-merge.html - shard-mtlp: NOTRUN -> [FAIL][70] ([i915#3318]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][71] ([fdo#109289]) +4 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-12/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-rkl: NOTRUN -> [SKIP][72] ([fdo#109289]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#2856]) +2 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [PASS][75] -> [FAIL][76] ([i915#7069]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#7707]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-2/igt@i915_hwmon@hwmon-read.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [PASS][78] -> [FAIL][79] ([i915#8691]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_backlight@basic-brightness: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5354] / [i915#7561]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#1937]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [PASS][82] -> [SKIP][83] ([i915#1937]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html - shard-dg1: [PASS][84] -> [SKIP][85] ([i915#1937]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-14/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#1902]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [PASS][87] -> [SKIP][88] ([i915#8403]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-4/igt@i915_pm_rc6_residency@rc6-accuracy.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: NOTRUN -> [WARN][89] ([i915#2681]) +3 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [PASS][90] -> [SKIP][91] ([i915#1397]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-dg1-17/igt@i915_pm_rpm@dpms-non-lpsp.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][92] -> [SKIP][93] ([i915#1397]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#6621]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][95] ([i915#8346]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-2/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#8925]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4212]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4215] / [i915#5190]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4212]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#8709]) +11 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#8502]) +7 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#1769]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][103] -> [FAIL][104] ([i915#5138]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5286]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-tglu: NOTRUN -> [SKIP][107] ([fdo#111615] / [i915#5286]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: [PASS][108] -> [FAIL][109] ([i915#3743]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [FAIL][110] ([i915#3743]) +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][111] ([fdo#111614]) +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-12/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][112] ([fdo#111614] / [i915#3638]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3638]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-18/igt@kms_big_fb@linear-64bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111614]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-8/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111614]) +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#5190]) +7 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][117] ([fdo#110723]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-18/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-tglu: NOTRUN -> [SKIP][119] ([fdo#111615]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +3 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111615]) +8 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#2705]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3886] / [i915#6095]) +2 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#5354]) +11 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#3734] / [i915#5354] / [i915#6095]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-19/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][128] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3689] / [i915#3886] / [i915#5354]) +4 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-6/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5354]) +6 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc.html - shard-dg1: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-16/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc.html - shard-tglu: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +4 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-4/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6095]) +16 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7213] / [i915#9010]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#4087] / [i915#7213]) +2 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7213]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4087]) +3 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#111827]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7828]) +10 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html - shard-tglu: NOTRUN -> [SKIP][143] ([i915#7828]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#7828]) +5 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_content_protection@content_type_change: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7118]) +1 similar issue [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3299]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6944]) +2 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#7118]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@kms_content_protection@mei_interface.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#7116]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-18/igt@kms_content_protection@mei_interface.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#7116] / [i915#7118]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-5/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-dg2: NOTRUN -> [TIMEOUT][151] ([i915#7173]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-12/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3359]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3359]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3359]) +1 similar issue [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-12/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8814]) +1 similar issue [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555]) +6 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#3555]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-32x32.html - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x32.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#3555]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3546]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][162] ([fdo#109274] / [i915#5354]) +2 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][163] ([fdo#111825]) +6 similar issues [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-14/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][164] ([fdo#109274]) +1 similar issue [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#4103] / [i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#8812]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-16/igt@kms_dsc@dsc-with-bpc-formats.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-4/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-12/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274]) +2 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][172] ([fdo#111825]) +2 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html - shard-tglu: NOTRUN -> [SKIP][173] ([fdo#109274] / [i915#3637]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8381]) +1 similar issue [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-snb: NOTRUN -> [SKIP][175] ([fdo#109271] / [fdo#111767]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-snb5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][176] ([i915#5090] / [i915#8841]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3637]) +3 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][178] -> [FAIL][179] ([i915#79]) +1 similar issue [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#2672]) +2 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#2672]) +2 similar issues [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8810]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#8708]) +1 similar issue [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-dg2: [PASS][184] -> [FAIL][185] ([i915#6880]) +1 similar issue [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8708]) +10 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3458]) +13 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8708]) +3 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][189] ([fdo#109280]) +5 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3023]) +1 similar issue [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][191] ([fdo#111825] / [i915#1825]) +5 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#5354]) +38 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#1825]) +23 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@kms_hdr@invalid-hdr.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-17/igt@kms_hdr@invalid-hdr.html - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) +1 similar issue [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#4816]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglu: NOTRUN -> [SKIP][199] ([fdo#109289]) +1 similar issue [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-9/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-mtlp: NOTRUN -> [SKIP][200] ([fdo#109289]) +1 similar issue [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [PASS][201] -> [ABORT][202] ([i915#180]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8821]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8806]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#6953]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][206] ([i915#8292]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#5176]) +7 similar issues [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#5176]) +11 similar issues [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#5176]) +9 similar issues [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#5176]) +7 similar issues [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#5235]) +5 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#5235]) +7 similar issues [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#5235]) +7 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][214] ([fdo#109271]) +72 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-snb5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#5235]) +11 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#6524] / [i915#6805]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#658]) +3 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][218] ([fdo#111068] / [i915#658]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html - shard-tglu: NOTRUN -> [SKIP][219] ([fdo#111068] / [i915#658]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-9/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr@primary_render: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#1072]) +1 similar issue [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@kms_psr@primary_render.html * igt@kms_psr@sprite_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#1072]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@kms_psr@sprite_mmap_gtt.html - shard-dg1: NOTRUN -> [SKIP][222] ([i915#1072]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-18/igt@kms_psr@sprite_mmap_gtt.html - shard-tglu: NOTRUN -> [SKIP][223] ([fdo#110189]) +2 similar issues [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-6/igt@kms_psr@sprite_mmap_gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#5461] / [i915#658]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#5461] / [i915#658]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#5461] / [i915#658]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#4235] / [i915#5190]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][228] ([fdo#111615] / [i915#5289]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][229] ([fdo#111615] / [i915#5289]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][230] ([fdo#111615] / [i915#5289]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#4235]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_cmdline: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8661]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@kms_selftest@drm_cmdline.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8823]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#8623]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][235] ([fdo#109309]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#4070] / [i915#6768]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-7/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html * igt@kms_vblank@pipe-a-wait-busy-hang: - shard-mtlp: [PASS][237] -> [DMESG-WARN][238] ([i915#2017]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-5/igt@kms_vblank@pipe-a-wait-busy-hang.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@kms_vblank@pipe-a-wait-busy-hang.html * igt@perf@mi-rpc: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2434]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-2/igt@perf@mi-rpc.html * igt@perf_pmu@busy-idle@vcs0: - shard-mtlp: [PASS][240] -> [FAIL][241] ([i915#4349]) +3 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-8/igt@perf_pmu@busy-idle@vcs0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8850]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: [PASS][243] -> [SKIP][244] ([i915#8537]) +2 similar issues [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-3/igt@perf_pmu@rc6@runtime-pm-long-gt1.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][245] ([fdo#109291]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@prime_udl.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3708] / [i915#4077]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3708]) +1 similar issue [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3708] / [i915#4077]) +1 similar issue [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@prime_vgem@coherency-gtt.html * igt@runner@aborted: - shard-snb: NOTRUN -> ([FAIL][249], [FAIL][250]) ([i915#7812] / [i915#8848]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-snb7/igt@runner@aborted.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-snb4/igt@runner@aborted.html * igt@v3d/v3d_create_bo@create-bo-4096: - shard-rkl: NOTRUN -> [SKIP][251] ([fdo#109315]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@v3d/v3d_create_bo@create-bo-4096.html - shard-tglu: NOTRUN -> [SKIP][252] ([fdo#109315] / [i915#2575]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-9/igt@v3d/v3d_create_bo@create-bo-4096.html * igt@v3d/v3d_submit_cl@valid-multisync-submission: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#2575]) +6 similar issues [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-2/igt@v3d/v3d_submit_cl@valid-multisync-submission.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#2575]) +4 similar issues [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@v3d/v3d_submit_cl@valid-submission.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#7711]) +6 similar issues [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-6/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#2575]) +1 similar issue [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-8/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#7711]) +4 similar issues [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_wait_bo@bad-pad: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#7711]) +1 similar issue [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@vc4/vc4_wait_bo@bad-pad.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][259] ([i915#7742]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][261] ([i915#6268]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [FAIL][263] ([i915#2410]) -> [PASS][264] +2 similar issues [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-8/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][265] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-tglu-10/igt@gem_eio@hibernate.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-7/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-apl: [CRASH][267] -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-apl2/igt@gem_eio@in-flight-suspend.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-apl3/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_capture@pi@vecs0: - shard-mtlp: [FAIL][269] ([i915#4475] / [i915#7765]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-6/igt@gem_exec_capture@pi@vecs0.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-8/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_endless@dispatch@vcs1: - shard-mtlp: [TIMEOUT][271] ([i915#3778]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-2/igt@gem_exec_endless@dispatch@vcs1.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@gem_exec_endless@dispatch@vcs1.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][273] ([i915#2842]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [FAIL][275] ([i915#2842]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [FAIL][277] ([i915#2842]) -> [PASS][278] +2 similar issues [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-glk6/igt@gem_exec_fair@basic-pace@rcs0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [FAIL][279] ([i915#3989] / [i915#454]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-tglu-6/igt@i915_pm_dc@dc6-dpms.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][281] ([i915#1397]) -> [PASS][282] +3 similar issues [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg1: [SKIP][283] ([i915#1397]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-17/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_selftest@live@requests: - shard-mtlp: [ABORT][285] ([i915#7982]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-3/igt@i915_selftest@live@requests.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@i915_selftest@live@requests.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [FAIL][287] ([i915#3743]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][289] ([i915#3743]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][291] ([i915#2346]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic: - shard-mtlp: [FAIL][293] ([i915#2346]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [DMESG-WARN][295] ([i915#2017]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_flip@blocking-absolute-wf_vblank@a-vga1: - shard-snb: [ABORT][297] ([i915#8865]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-snb7/igt@kms_flip@blocking-absolute-wf_vblank@a-vga1.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-snb5/igt@kms_flip@blocking-absolute-wf_vblank@a-vga1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [FAIL][299] ([i915#6880]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [ABORT][301] ([i915#8552]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@ccs0.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][303] ([i915#1731]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@vecs0.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [FAIL][305] ([i915#8332]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-6/igt@sysfs_heartbeat_interval@precise@vecs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [ABORT][307] ([i915#8521] / [i915#8865]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-4/igt@sysfs_preempt_timeout@timeout@vecs0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-6/igt@sysfs_preempt_timeout@timeout@vecs0.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][309] ([i915#4936] / [i915#5493]) -> [TIMEOUT][310] ([i915#5493]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [FAIL][311] ([i915#2346]) -> [DMESG-FAIL][312] ([i915#2017] / [i915#5954]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][313] ([i915#3955]) -> [SKIP][314] ([fdo#110189] / [i915#3955]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-suspend@b-vga1: - shard-snb: [INCOMPLETE][315] ([i915#4839]) -> [DMESG-WARN][316] ([i915#8841]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-snb7/igt@kms_flip@flip-vs-suspend@b-vga1.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-snb5/igt@kms_flip@flip-vs-suspend@b-vga1.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][317] ([i915#1072] / [i915#4078]) -> [SKIP][318] ([i915#1072]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7442/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/shard-dg1-19/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [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#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [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#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [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#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [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#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [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#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7442 -> IGTPW_9608 CI-20190529: 20190529 CI_DRM_13528: a7c0be10a6b6a23017681cc609c1353711dc70e7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9608: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/index.html IGT_7442: f6eea5a02525d62d10596408d1175c83d6f4038e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/index.html [-- Attachment #2: Type: text/html, Size: 100735 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for README.md and docs: describe how to document tests 2023-08-17 8:43 [igt-dev] [PATCH i-g-t] README.md and docs: describe how to document tests Mauro Carvalho Chehab ` (4 preceding siblings ...) 2023-08-17 23:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-08-22 13:06 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-08-22 13:06 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5422 bytes --] == Series Details == Series: README.md and docs: describe how to document tests URL : https://patchwork.freedesktop.org/series/122564/ State : failure == Summary == CI Bug Log - changes from XEIGT_7442_BAT -> XEIGTPW_9608_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 3) ------------------------------ Additional (1): bat-atsm-2 Known issues ------------ Here are the changes found in XEIGTPW_9608_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@invalid-set-prop-any: - bat-atsm-2: NOTRUN -> [SKIP][1] ([i915#6077]) +24 similar issues [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - bat-atsm-2: NOTRUN -> [SKIP][2] ([Intel XE#274]) +5 similar issues [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset: - bat-atsm-2: NOTRUN -> [SKIP][3] ([Intel XE#275]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_force_connector_basic@force-connector-state: - bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#277]) +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-adlp-7: [PASS][5] -> [FAIL][6] ([Intel XE#400]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7442/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-atsm-2: NOTRUN -> [SKIP][7] ([i915#1836]) +6 similar issues [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_prop_blob@basic: - bat-atsm-2: NOTRUN -> [SKIP][8] ([Intel XE#273]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_prop_blob@basic.html * igt@kms_psr@cursor_plane_move: - bat-atsm-2: NOTRUN -> [SKIP][9] ([i915#1072]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@kms_psr@cursor_plane_move.html * igt@xe_compute@compute-square: - bat-atsm-2: NOTRUN -> [SKIP][10] ([Intel XE#252]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@xe_compute@compute-square.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm: - bat-atsm-2: NOTRUN -> [SKIP][11] ([Intel XE#288]) +17 similar issues [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html * igt@xe_huc_copy@huc_copy: - bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#255]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@dmabuf: - bat-atsm-2: NOTRUN -> [SKIP][13] ([Intel XE#483]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-atsm-2/igt@xe_live_ktest@dmabuf.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][14] ([Intel XE#480]) -> [PASS][15] +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7442/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9608/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/252 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/273 [Intel XE#274]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/274 [Intel XE#275]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/275 [Intel XE#277]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/277 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/483 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 Build changes ------------- * IGT: IGT_7442 -> IGTPW_9608 IGTPW_9608: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9608/index.html IGT_7442: f6eea5a02525d62d10596408d1175c83d6f4038e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-325-c605cfb9a29a5425541053b45efddbe9751cbad3: c605cfb9a29a5425541053b45efddbe9751cbad3 [-- Attachment #2: Type: text/html, Size: 6206 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-08-22 13:06 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-17 8:43 [igt-dev] [PATCH i-g-t] README.md and docs: describe how to document tests Mauro Carvalho Chehab 2023-08-17 9:28 ` Kamil Konieczny 2023-08-17 10:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-08-17 10:23 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-08-17 12:36 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 2023-08-17 23:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-08-22 13:06 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox