* [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests
@ 2023-08-17 13:33 Mauro Carvalho Chehab
2023-08-17 14:18 ` [igt-dev] ○ CI.xeBAT: info for README.md and docs: describe how to document tests (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Mauro Carvalho Chehab @ 2023-08-17 13:33 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 | 6 +-
docs/test_documentation.md | 179 +++++++++++++++++++++++++++++++++++++
2 files changed, 184 insertions(+), 1 deletion(-)
create mode 100644 docs/test_documentation.md
diff --git a/README.md b/README.md
index 66f2bc0fa1bd..efa525b041c0 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. By default, build
+will fail if one forgets to document or update the documentation.
+This is currently enabled for the Xe, i915 drivers and for KMS tests.
Running Tests
-------------
@@ -164,7 +168,7 @@ was used to generate them.
Imported i915_drm.h uapi headers from airlied's drm-next branch.
In some cases updating a single uapi file is needed as our history
-shows. So in this case, it should be done by:
+shows. In this case, it should be done by:
# From the kernel dir with a drm/drm-next commit checked out:
$ make INSTALL_HDR_PATH=<dest-dir> headers_install
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] 6+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for README.md and docs: describe how to document tests (rev2)
2023-08-17 13:33 [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests Mauro Carvalho Chehab
@ 2023-08-17 14:18 ` Patchwork
2023-08-17 14:27 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-08-17 14:18 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 365 bytes --]
== Series Details ==
Series: README.md and docs: describe how to document tests (rev2)
URL : https://patchwork.freedesktop.org/series/122564/
State : info
== Summary ==
Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[1]:
bat-pvc-2
Results: [IGTPW_9611](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9611/index.html)
[-- Attachment #2: Type: text/html, Size: 887 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for README.md and docs: describe how to document tests (rev2)
2023-08-17 13:33 [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests Mauro Carvalho Chehab
2023-08-17 14:18 ` [igt-dev] ○ CI.xeBAT: info for README.md and docs: describe how to document tests (rev2) Patchwork
@ 2023-08-17 14:27 ` Patchwork
2023-08-17 16:24 ` [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests Modem, Bhanuprakash
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-08-17 14:27 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8867 bytes --]
== Series Details ==
Series: README.md and docs: describe how to document tests (rev2)
URL : https://patchwork.freedesktop.org/series/122564/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13530 -> IGTPW_9611
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/index.html
Participating hosts (39 -> 39)
------------------------------
Additional (1): bat-rpls-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9611 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-rpls-2: NOTRUN -> [SKIP][2] ([i915#1849] / [i915#2582])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@fbdev@info.html
* igt@fbdev@read:
- bat-rpls-2: NOTRUN -> [SKIP][3] ([i915#2582]) +3 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@fbdev@read.html
* igt@gem_lmem_swapping@verify-random:
- bat-rpls-2: NOTRUN -> [SKIP][4] ([i915#4613]) +3 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html
- bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-rpls-2: NOTRUN -> [SKIP][6] ([i915#3282])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-rpls-2: NOTRUN -> [SKIP][7] ([i915#7561])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-2: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@i915_pm_rps@basic-api.html
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#6621])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][10] ([i915#4258] / [i915#7913])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-adlm-1: NOTRUN -> [INCOMPLETE][11] ([i915#7443])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-adlm-1/igt@i915_suspend@basic-s3-without-i915.html
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#6645])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_busy@basic:
- bat-rpls-2: NOTRUN -> [SKIP][13] ([i915#1845]) +16 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@kms_busy@basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-rpls-2: NOTRUN -> [SKIP][14] ([i915#3637]) +3 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-2: NOTRUN -> [SKIP][15] ([fdo#109285])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-rpls-2: NOTRUN -> [SKIP][16] ([i915#1849])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@sprite_plane_onoff:
- bat-rpls-2: NOTRUN -> [SKIP][17] ([i915#1072]) +3 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-2: NOTRUN -> [SKIP][18] ([i915#3555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-rpls-2: NOTRUN -> [SKIP][19] ([fdo#109295] / [i915#1845] / [i915#3708])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#3708] / [i915#4077]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-rpls-2: NOTRUN -> [SKIP][21] ([fdo#109295] / [i915#3708]) +2 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-rpls-2/igt@prime_vgem@basic-fence-read.html
- bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#3708]) +2 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- bat-mtlp-8: [ABORT][23] ([i915#7977] / [i915#8668]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_selftest@live@gt_lrc:
- bat-adlm-1: [INCOMPLETE][25] ([i915#4983]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/bat-adlm-1/igt@i915_selftest@live@gt_lrc.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-adlm-1/igt@i915_selftest@live@gt_lrc.html
#### Warnings ####
* igt@i915_module_load@load:
- bat-adlp-11: [DMESG-WARN][27] ([i915#4423]) -> [ABORT][28] ([i915#4423])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/bat-adlp-11/igt@i915_module_load@load.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/bat-adlp-11/igt@i915_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/486
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8879]: https://gitlab.freedesktop.org/drm/intel/issues/8879
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7442 -> IGTPW_9611
CI-20190529: 20190529
CI_DRM_13530: d97cc063202bec7acb2e45909f45ebdecb44ff41 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9611: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/index.html
IGT_7442: f6eea5a02525d62d10596408d1175c83d6f4038e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@gem_compute@compute-square
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/index.html
[-- Attachment #2: Type: text/html, Size: 10532 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests
2023-08-17 13:33 [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests Mauro Carvalho Chehab
2023-08-17 14:18 ` [igt-dev] ○ CI.xeBAT: info for README.md and docs: describe how to document tests (rev2) Patchwork
2023-08-17 14:27 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-08-17 16:24 ` Modem, Bhanuprakash
2023-08-17 18:20 ` Kamil Konieczny
2023-08-18 5:32 ` [igt-dev] ✓ Fi.CI.IGT: success for README.md and docs: describe how to document tests (rev2) Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Modem, Bhanuprakash @ 2023-08-17 16:24 UTC (permalink / raw)
To: Mauro Carvalho Chehab, igt-dev
Hi Mauro,
On Thu-17-08-2023 07:03 pm, 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.
Revision history is missing.
>
> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
> README.md | 6 +-
> docs/test_documentation.md | 179 +++++++++++++++++++++++++++++++++++++
> 2 files changed, 184 insertions(+), 1 deletion(-)
> create mode 100644 docs/test_documentation.md
>
> diff --git a/README.md b/README.md
> index 66f2bc0fa1bd..efa525b041c0 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. By default, build
> +will fail if one forgets to document or update the documentation.
> +This is currently enabled for the Xe, i915 drivers and for KMS tests.
I think it would be better to have a link (to test_documentation.md) to
know more about the documentation.
Otherwise, LGTM.
Acked-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
>
> Running Tests
> -------------
> @@ -164,7 +168,7 @@ was used to generate them.
> Imported i915_drm.h uapi headers from airlied's drm-next branch.
>
> In some cases updating a single uapi file is needed as our history
> -shows. So in this case, it should be done by:
> +shows. In this case, it should be done by:
>
> # From the kernel dir with a drm/drm-next commit checked out:
> $ make INSTALL_HDR_PATH=<dest-dir> headers_install
> 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
> + */
> +```
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests
2023-08-17 13:33 [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests Mauro Carvalho Chehab
` (2 preceding siblings ...)
2023-08-17 16:24 ` [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests Modem, Bhanuprakash
@ 2023-08-17 18:20 ` Kamil Konieczny
2023-08-18 5:32 ` [igt-dev] ✓ Fi.CI.IGT: success for README.md and docs: describe how to document tests (rev2) Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Kamil Konieczny @ 2023-08-17 18:20 UTC (permalink / raw)
To: igt-dev
Hi Mauro,
On 2023-08-17 at 15:33:07 +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 | 6 +-
> docs/test_documentation.md | 179 +++++++++++++++++++++++++++++++++++++
> 2 files changed, 184 insertions(+), 1 deletion(-)
> create mode 100644 docs/test_documentation.md
>
> diff --git a/README.md b/README.md
> index 66f2bc0fa1bd..efa525b041c0 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. By default, build
> +will fail if one forgets to document or update the documentation.
> +This is currently enabled for the Xe, i915 drivers and for KMS tests.
>
> Running Tests
> -------------
> @@ -164,7 +168,7 @@ was used to generate them.
> Imported i915_drm.h uapi headers from airlied's drm-next branch.
>
> In some cases updating a single uapi file is needed as our history
> -shows. So in this case, it should be done by:
> +shows. In this case, it should be done by:
>
> # From the kernel dir with a drm/drm-next commit checked out:
> $ make INSTALL_HDR_PATH=<dest-dir> headers_install
> 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
----------------------------------------------------------- ^^^^
s/. So//
> + 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,
--------------------------------------------------------------------- ^^^
s/So,/After time passes/
> + 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
------------------------------------------------------------------- ^^
use plural, s/is/are/
> +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
-------------------------- ^^^^^^
s/So, it/It/
> +descriptions if needed.
> +
> +Also, the build system can optionally enforce a check at build time to
^^^^^
Change place:
The build system can also 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.
------- ^
no "," before "and: s/, and/and/
> +
> +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
-- ^^^^^^^
s/So, the above/The above/
with that fixed
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Regards,
Kamil
> +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] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for README.md and docs: describe how to document tests (rev2)
2023-08-17 13:33 [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests Mauro Carvalho Chehab
` (3 preceding siblings ...)
2023-08-17 18:20 ` Kamil Konieczny
@ 2023-08-18 5:32 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-08-18 5:32 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 69093 bytes --]
== Series Details ==
Series: README.md and docs: describe how to document tests (rev2)
URL : https://patchwork.freedesktop.org/series/122564/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13530_full -> IGTPW_9611_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_9611_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-1/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#6230])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-17/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-3/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +5 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-5/igt@drm_fdinfo@isolation@rcs0.html
* igt@fbdev@unaligned-read:
- shard-mtlp: [PASS][7] -> [DMESG-WARN][8] ([i915#1982])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-6/igt@fbdev@unaligned-read.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-8/igt@fbdev@unaligned-read.html
* igt@feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#4854])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@feature_discovery@chamelium.html
* igt@feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#658])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-2/igt@feature_discovery@psr2.html
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#658])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-16/igt@feature_discovery@psr2.html
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#658])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-9/igt@feature_discovery@psr2.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-mtlp: [PASS][13] -> [FAIL][14] ([i915#6121])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@vecs1:
- shard-dg2: [PASS][15] -> [FAIL][16] ([fdo#103375]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3@vecs1.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3@vecs1.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][19] -> [ABORT][20] ([i915#7975] / [i915#8213] / [i915#8398])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-tglu-4/igt@gem_eio@hibernate.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-10/igt@gem_eio@hibernate.html
- shard-dg2: NOTRUN -> [ABORT][21] ([i915#7975] / [i915#8213])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-6/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg1-19/igt@gem_eio@unwedge-stress.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-19/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_capture@pi@vecs0:
- shard-mtlp: [PASS][24] -> [FAIL][25] ([i915#4475] / [i915#7765])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-4/igt@gem_exec_capture@pi@vecs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-8/igt@gem_exec_capture@pi@vecs0.html
* igt@gem_exec_endless@dispatch@vcs1:
- shard-tglu: NOTRUN -> [TIMEOUT][26] ([i915#3778])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-3/igt@gem_exec_endless@dispatch@vcs1.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [PASS][28] -> [FAIL][29] ([i915#2842])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fence@parallel@vcs0:
- shard-mtlp: [PASS][32] -> [DMESG-FAIL][33] ([i915#9121])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-1/igt@gem_exec_fence@parallel@vcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html
* igt@gem_exec_fence@parallel@vecs0:
- shard-mtlp: [PASS][34] -> [FAIL][35] ([i915#8957]) +2 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-1/igt@gem_exec_fence@parallel@vecs0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-1/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3711])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][38] ([fdo#112283])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +9 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +3 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-5/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_schedule@preempt-engines@ccs0:
- shard-mtlp: [PASS][41] -> [FAIL][42] ([i915#9119]) +4 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-7/igt@gem_exec_schedule@preempt-engines@ccs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [PASS][43] -> [ABORT][44] ([i915#7975] / [i915#8213])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][45] ([i915#7975] / [i915#8213])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +2 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-10/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-2/igt@gem_lmem_swapping@smem-oom.html
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-1/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) +6 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#8289])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@bad-size:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-19/igt@gem_mmap@bad-size.html
* igt@gem_mmap@big-bo:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) +2 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-6/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +6 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
* igt@gem_pread@bench:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) +1 similar issue
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-17/igt@gem_pread@bench.html
* igt@gem_pwrite_snooped:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-2/igt@gem_pwrite_snooped.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4270])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_spin_batch@user-each:
- shard-mtlp: [PASS][59] -> [DMESG-FAIL][60] ([i915#8962] / [i915#9121]) +3 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-6/igt@gem_spin_batch@user-each.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@gem_spin_batch@user-each.html
* igt@gem_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-14/igt@gem_tiled_blits@basic.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-2/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@vma-merge:
- shard-apl: NOTRUN -> [FAIL][64] ([i915#3318])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-apl2/igt@gem_userptr_blits@vma-merge.html
- shard-rkl: NOTRUN -> [FAIL][65] ([i915#3318])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@gem_userptr_blits@vma-merge.html
- shard-mtlp: NOTRUN -> [FAIL][66] ([i915#3318])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-7/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][67] ([fdo#109289]) +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#2856]) +2 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@gen9_exec_parse@secure-batches.html
* igt@i915_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#7707])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@i915_hwmon@hwmon-read.html
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-mtlp: [PASS][70] -> [FAIL][71] ([i915#8691])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#1937])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
- shard-dg1: [PASS][73] -> [SKIP][74] ([i915#1937])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-16/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-mtlp: [PASS][75] -> [SKIP][76] ([i915#8403])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-5/igt@i915_pm_rc6_residency@rc6-accuracy.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][77] -> [SKIP][78] ([i915#1397])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-10/igt@i915_pm_rpm@dpms-lpsp.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-6/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#1397]) +1 similar issue
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][80] -> [SKIP][81] ([i915#1397]) +4 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg1: [PASS][82] -> [SKIP][83] ([i915#1397])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#8925])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-snb: NOTRUN -> [DMESG-WARN][85] ([i915#8841]) +6 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-snb1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4212])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/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][87] ([i915#4215] / [i915#5190])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1:
- shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#2521])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#8502]) +3 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#8502]) +7 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][92] ([i915#8247]) +3 similar issues
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][93] ([i915#8247]) +1 similar issue
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][94] ([i915#8247]) +1 similar issue
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-snb5/igt@kms_async_flips@crc@pipe-b-vga-1.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][95] ([i915#8247]) +3 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#5286])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5286])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][98] ([fdo#111615] / [i915#5286])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][99] ([i915#3743])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][100] ([fdo#111614] / [i915#3638])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#3638])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-14/igt@kms_big_fb@linear-64bpp-rotate-270.html
- shard-tglu: NOTRUN -> [SKIP][102] ([fdo#111614])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-9/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][103] ([fdo#111614]) +2 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271]) +7 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-glk9/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-mtlp: [PASS][105] -> [FAIL][106] ([i915#3743])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#5190]) +5 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/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][108] ([fdo#110723]) +1 similar issue
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4538]) +1 similar issue
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-18/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
- shard-tglu: NOTRUN -> [SKIP][110] ([fdo#111615]) +1 similar issue
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +5 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#111615]) +3 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-8/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][113] ([i915#2705])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3886] / [i915#6095])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/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-rotation-180-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#3734] / [i915#5354] / [i915#6095])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-18/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html
- shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#3689] / [i915#5354]) +16 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-10/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#5354] / [i915#6095])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#3689] / [i915#3886] / [i915#5354]) +6 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-3/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][122] ([i915#5354]) +6 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-2/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +1 similar issue
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-17/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc.html
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +2 similar issues
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-5/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][125] ([i915#6095]) +2 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-3/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4087] / [i915#7213]) +3 similar issues
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#7828]) +1 similar issue
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-5/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][128] ([fdo#111827]) +1 similar issue
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#7828]) +8 similar issues
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#7828])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#7118]) +1 similar issue
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#3299])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][133] ([i915#7173])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@mei_interface:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7118])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-2/igt@kms_content_protection@mei_interface.html
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#7116])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-16/igt@kms_content_protection@mei_interface.html
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#6944] / [i915#7116] / [i915#7118])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-4/igt@kms_content_protection@mei_interface.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3359])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#3359])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3359])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#3555])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-32x32.html
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#3555])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x32.html
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#3555])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][143] ([fdo#109274] / [i915#5354]) +2 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-snb: NOTRUN -> [SKIP][144] ([fdo#109271] / [fdo#111767])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][145] ([fdo#111825]) +6 similar issues
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-19/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][146] ([fdo#109274]) +1 similar issue
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][147] ([fdo#109274] / [fdo#111767] / [i915#5354])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#4103] / [i915#4213])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#3555]) +5 similar issues
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#8812])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#3840])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#3840])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-17/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][154] ([fdo#111825]) +2 similar issues
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html
- shard-tglu: NOTRUN -> [SKIP][155] ([fdo#109274] / [i915#3637])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][156] -> [FAIL][157] ([i915#79])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#8381])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-dg2: NOTRUN -> [SKIP][159] ([fdo#109274]) +2 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3637])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#2672]) +2 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-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][162] ([i915#8810])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [PASS][163] -> [FAIL][164] ([i915#6880]) +3 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#8708])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][166] ([fdo#109280]) +4 similar issues
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3458]) +11 similar issues
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3023]) +1 similar issue
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/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-dg2: NOTRUN -> [SKIP][169] ([i915#5354]) +36 similar issues
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
- shard-rkl: NOTRUN -> [SKIP][170] ([fdo#111825] / [i915#1825]) +5 similar issues
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#1825]) +2 similar issues
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#8708]) +18 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8228])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_hdr@invalid-hdr.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8228])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-18/igt@kms_hdr@invalid-hdr.html
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#8228])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8228])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4816])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/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][178] ([fdo#109289])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-5/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
- shard-rkl: NOTRUN -> [SKIP][179] ([fdo#109289])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-1/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][180] ([fdo#109289])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
- shard-mtlp: [PASS][181] -> [FAIL][182] ([i915#1623])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8806])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-apl: NOTRUN -> [SKIP][184] ([fdo#109271]) +5 similar issues
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-apl3/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#6953])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#5176]) +7 similar issues
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1:
- shard-snb: NOTRUN -> [SKIP][187] ([fdo#109271]) +91 similar issues
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-snb4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#5176]) +7 similar issues
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#5235]) +19 similar issues
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#5235]) +3 similar issues
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#5235]) +15 similar issues
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-apl: NOTRUN -> [SKIP][192] ([fdo#109271] / [i915#658])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111068] / [i915#658])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2920]) +1 similar issue
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#658]) +3 similar issues
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#1072]) +5 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-10/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr@sprite_mmap_gtt:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#1072])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-1/igt@kms_psr@sprite_mmap_gtt.html
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#1072])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-17/igt@kms_psr@sprite_mmap_gtt.html
- shard-tglu: NOTRUN -> [SKIP][199] ([fdo#110189]) +1 similar issue
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-8/igt@kms_psr@sprite_mmap_gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#5461] / [i915#658])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#5461] / [i915#658])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#5461] / [i915#658])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#5461] / [i915#658])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][204] ([fdo#111615] / [i915#5289])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][205] ([fdo#111615] / [i915#5289])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][206] ([fdo#111615] / [i915#5289])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#4235])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_cmdline:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#8661])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@kms_selftest@drm_cmdline.html
* igt@kms_selftest@drm_plane:
- shard-snb: NOTRUN -> [SKIP][209] ([fdo#109271] / [i915#8661])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-snb7/igt@kms_selftest@drm_plane.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][210] ([i915#5465]) +1 similar issue
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][211] -> [FAIL][212] ([IGT#2])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-12/igt@kms_sysfs_edid_timing.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#4070] / [i915#6768])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-2/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg2: [PASS][214] -> [FAIL][215] ([i915#5234])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-1/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [PASS][216] -> [SKIP][217] ([i915#8537]) +2 similar issues
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-3/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3708] / [i915#4077])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3708])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@prime_vgem@fence-write-hang.html
* igt@v3d/v3d_create_bo@create-bo-4096:
- shard-rkl: NOTRUN -> [SKIP][220] ([fdo#109315])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-1/igt@v3d/v3d_create_bo@create-bo-4096.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#2575]) +11 similar issues
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#2575]) +1 similar issue
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-2/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_perfmon@create-perfmon-0:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#7711]) +8 similar issues
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-11/igt@vc4/vc4_perfmon@create-perfmon-0.html
* igt@vc4/vc4_purgeable_bo@free-purged-bo:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#7711])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-3/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#7711]) +1 similar issue
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-7/igt@vc4/vc4_wait_bo@bad-pad.html
#### Possible fixes ####
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [FAIL][226] ([i915#2410]) -> [PASS][227] +3 similar issues
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][228] ([i915#5784]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg1-19/igt@gem_eio@reset-stress.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-14/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-tglu: [FAIL][230] ([i915#2842]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-tglu-6/igt@gem_exec_fair@basic-flow@rcs0.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-8/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [FAIL][232] ([i915#2842]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-glk: [FAIL][234] ([i915#2842]) -> [PASS][235] +2 similar issues
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-glk6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][236] ([i915#5493]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_softpin@allocator-evict@bcs0:
- shard-glk: [INCOMPLETE][238] -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-glk7/igt@gem_softpin@allocator-evict@bcs0.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-glk5/igt@gem_softpin@allocator-evict@bcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [DMESG-WARN][240] ([i915#7061] / [i915#8617]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][242] ([i915#1397]) -> [PASS][243] +1 similar issue
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][244] ([i915#5138]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [FAIL][246] ([i915#2346]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic:
- shard-mtlp: [FAIL][248] ([i915#2346]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: [ABORT][250] ([i915#180]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-mtlp: [FAIL][252] ([i915#8332]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-mtlp-8/igt@sysfs_heartbeat_interval@precise@vecs0.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-mtlp-8/igt@sysfs_heartbeat_interval@precise@vecs0.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-tglu: [WARN][254] ([i915#2681]) -> [FAIL][255] ([i915#2681] / [i915#3591])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@kms_content_protection@mei_interface:
- shard-dg2: [SKIP][256] ([i915#7118] / [i915#7162]) -> [SKIP][257] ([i915#7118])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-11/igt@kms_content_protection@mei_interface.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-6/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][258] ([i915#7118]) -> [SKIP][259] ([i915#7118] / [i915#7162])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-1/igt@kms_content_protection@type1.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@kms_content_protection@type1.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][260] ([fdo#110189] / [i915#3955]) -> [SKIP][261] ([i915#3955])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][262] ([i915#4816]) -> [SKIP][263] ([i915#4070] / [i915#4816])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-vga-1:
- shard-snb: [DMESG-FAIL][264] ([fdo#103375]) -> [DMESG-WARN][265] ([i915#8841]) +1 similar issue
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-snb7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-vga-1.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-snb5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-vga-1.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][266] ([i915#1072] / [i915#4078]) -> [SKIP][267] ([i915#1072]) +1 similar issue
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg1-16/igt@kms_psr@cursor_plane_move.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-17/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@primary_page_flip:
- shard-dg1: [SKIP][268] ([i915#1072]) -> [SKIP][269] ([i915#1072] / [i915#4078])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg1-17/igt@kms_psr@primary_page_flip.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg1-16/igt@kms_psr@primary_page_flip.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][270] ([i915#7331]) -> [INCOMPLETE][271] ([i915#5493])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13530/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/shard-dg2-12/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#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#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[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#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711
[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#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#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#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#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#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[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#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[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#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765
[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#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332
[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#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617
[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#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#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#8957]: https://gitlab.freedesktop.org/drm/intel/issues/8957
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[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_9611
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13530: d97cc063202bec7acb2e45909f45ebdecb44ff41 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9611: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/index.html
IGT_7442: f6eea5a02525d62d10596408d1175c83d6f4038e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9611/index.html
[-- Attachment #2: Type: text/html, Size: 85277 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-08-18 5:32 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-17 13:33 [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests Mauro Carvalho Chehab
2023-08-17 14:18 ` [igt-dev] ○ CI.xeBAT: info for README.md and docs: describe how to document tests (rev2) Patchwork
2023-08-17 14:27 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-08-17 16:24 ` [igt-dev] [PATCH i-g-t v2] README.md and docs: describe how to document tests Modem, Bhanuprakash
2023-08-17 18:20 ` Kamil Konieczny
2023-08-18 5:32 ` [igt-dev] ✓ Fi.CI.IGT: success for README.md and docs: describe how to document tests (rev2) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox