* [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats
@ 2020-03-09 2:02 Kunal Joshi
2020-03-09 9:22 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Kunal Joshi @ 2020-03-09 2:02 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, petri.latvala
Currently, only hard coded pixel formats are validated which are not
generic across platforms which leads to SKIPS.
Added support to validate only those pixel formats which are supported by
platform. Covering both RGB and YUV pixel formats.
v2: added support for RGB pixel formats (Swati)
v3: simplified constraint and made it more readable (Petri)
v4: -used igt_format_str instead of macro to print fourcc code (Ville)
-dropped patch#1 because of above change
v5: -Removed connector_dynamic_subtest_end macro and modified
connector_dynamic_subtest to allow scoping depending on
requirement (Petri)
-Changed test names to make it more revealing (Arek)
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_chamelium.c | 121 +++++++++++++++++++-------------------------------
1 file changed, 45 insertions(+), 76 deletions(-)
diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c
index 5c4a189..3072f90 100644
--- a/tests/kms_chamelium.c
+++ b/tests/kms_chamelium.c
@@ -2612,6 +2612,13 @@ static const struct edid *get_edid(enum test_edid edid)
if (chamelium_port_get_type(port) == \
DRM_MODE_CONNECTOR_ ## type__)
+#define connector_dynamic_subtest(name__, type__) \
+ igt_subtest_with_dynamic(name__) \
+ for_each_port(p, port) \
+ if (chamelium_port_get_type(port) == \
+ DRM_MODE_CONNECTOR_ ## type__)
+
+
static data_t data;
IGT_TEST_DESCRIPTION("Tests requiring a Chamelium board");
@@ -2817,54 +2824,30 @@ igt_main
CHAMELIUM_CHECK_CRC, 3);
igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-argb8888", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_ARGB8888,
- CHAMELIUM_CHECK_CRC, 1);
+ connector_dynamic_subtest("hdmi-crc-nonplanar-formats", HDMIA) {
+ int k;
+ igt_output_t *output;
+ igt_plane_t *primary;
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-abgr8888", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_ABGR8888,
- CHAMELIUM_CHECK_CRC, 1);
-
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-xrgb8888", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_XRGB8888,
- CHAMELIUM_CHECK_CRC, 1);
-
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-xbgr8888", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_XBGR8888,
- CHAMELIUM_CHECK_CRC, 1);
-
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-rgb888", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_RGB888,
- CHAMELIUM_CHECK_CRC, 1);
-
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-bgr888", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_BGR888,
- CHAMELIUM_CHECK_CRC, 1);
+ output = prepare_output(&data, port, TEST_EDID_BASE);
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ igt_assert(primary);
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-rgb565", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_RGB565,
- CHAMELIUM_CHECK_CRC, 1);
+ for (k = 0; k < primary->format_mod_count; k++) {
+ if (!igt_fb_supported_format(primary->formats[k]))
+ continue;
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-bgr565", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_BGR565,
- CHAMELIUM_CHECK_CRC, 1);
+ if (igt_format_is_yuv(primary->formats[k]))
+ continue;
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-argb1555", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_ARGB1555,
- CHAMELIUM_CHECK_CRC, 1);
+ if (primary->modifiers[k] != LOCAL_DRM_FORMAT_MOD_NONE)
+ continue;
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-crc-xrgb1555", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_XRGB1555,
- CHAMELIUM_CHECK_CRC, 1);
+ igt_dynamic_f("%s", igt_format_str(primary->formats[k]))
+ test_display_one_mode(&data, port, primary->formats[k],
+ CHAMELIUM_CHECK_CRC, 1);
+ }
+ }
igt_describe(test_display_planes_random_desc);
connector_subtest("hdmi-crc-planes-random", HDMIA)
@@ -2872,44 +2855,30 @@ igt_main
CHAMELIUM_CHECK_CRC);
igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-cmp-nv12", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_NV12,
- CHAMELIUM_CHECK_CHECKERBOARD, 1);
+ connector_dynamic_subtest("hdmi-cmp-planar-formats", HDMIA) {
+ int k;
+ igt_output_t *output;
+ igt_plane_t *primary;
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-cmp-nv16", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_NV16,
- CHAMELIUM_CHECK_CHECKERBOARD, 1);
+ output = prepare_output(&data, port, TEST_EDID_BASE);
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ igt_assert(primary);
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-cmp-nv21", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_NV21,
- CHAMELIUM_CHECK_CHECKERBOARD, 1);
-
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-cmp-nv61", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_NV61,
- CHAMELIUM_CHECK_CHECKERBOARD, 1);
-
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-cmp-yu12", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_YUV420,
- CHAMELIUM_CHECK_CHECKERBOARD, 1);
+ for (k = 0; k < primary->format_mod_count; k++) {
+ if (!igt_fb_supported_format(primary->formats[k]))
+ continue;
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-cmp-yu16", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_YUV422,
- CHAMELIUM_CHECK_CHECKERBOARD, 1);
+ if (!igt_format_is_yuv(primary->formats[k]))
+ continue;
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-cmp-yv12", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_YVU420,
- CHAMELIUM_CHECK_CHECKERBOARD, 1);
+ if (primary->modifiers[k] != LOCAL_DRM_FORMAT_MOD_NONE)
+ continue;
- igt_describe(test_display_one_mode_desc);
- connector_subtest("hdmi-cmp-yv16", HDMIA)
- test_display_one_mode(&data, port, DRM_FORMAT_YVU422,
- CHAMELIUM_CHECK_CHECKERBOARD, 1);
+ igt_dynamic_f("%s", igt_format_str(primary->formats[k]))
+ test_display_one_mode(&data, port, primary->formats[k],
+ CHAMELIUM_CHECK_CHECKERBOARD, 1);
+ }
+ }
igt_describe(test_display_planes_random_desc);
connector_subtest("hdmi-cmp-planes-random", HDMIA)
--
2.7.4
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2)
2020-03-09 2:02 [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats Kunal Joshi
@ 2020-03-09 9:22 ` Patchwork
2020-03-09 12:26 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2020-03-09 9:22 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
== Series Details ==
Series: tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2)
URL : https://patchwork.freedesktop.org/series/74368/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_8093 -> IGTPW_4278
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_4278 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_4278, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_4278:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_parallel@contexts:
- fi-skl-6770hq: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-skl-6770hq/igt@gem_exec_parallel@contexts.html
* igt@i915_selftest@live@gt_contexts:
- fi-byt-j1900: [PASS][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/fi-byt-j1900/igt@i915_selftest@live@gt_contexts.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-byt-j1900/igt@i915_selftest@live@gt_contexts.html
* igt@i915_selftest@live@late_gt_pm:
- fi-bwr-2160: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-bwr-2160/igt@i915_selftest@live@late_gt_pm.html
Known issues
------------
Here are the changes found in IGTPW_4278 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@mmap:
- fi-kbl-7500u: [PASS][5] -> [SKIP][6] ([fdo#109271])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/fi-kbl-7500u/igt@fbdev@mmap.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-kbl-7500u/igt@fbdev@mmap.html
* igt@i915_selftest@live@gem_contexts:
- fi-cml-s: [PASS][7] -> [DMESG-FAIL][8] ([i915#877])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/fi-cml-s/igt@i915_selftest@live@gem_contexts.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-cml-s/igt@i915_selftest@live@gem_contexts.html
* igt@kms_chamelium@dp-hpd-fast:
- fi-icl-u2: [PASS][9] -> [DMESG-WARN][10] ([i915#289])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/fi-icl-u2/igt@kms_chamelium@dp-hpd-fast.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-icl-u2/igt@kms_chamelium@dp-hpd-fast.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#289]: https://gitlab.freedesktop.org/drm/intel/issues/289
[i915#877]: https://gitlab.freedesktop.org/drm/intel/issues/877
Participating hosts (41 -> 32)
------------------------------
Additional (4): fi-skl-6770hq fi-bsw-nick fi-bwr-2160 fi-snb-2600
Missing (13): fi-tgl-dsi fi-hsw-4200u fi-hsw-peppy fi-byt-squawks fi-bsw-cyan fi-ilk-650 fi-gdg-551 fi-ivb-3770 fi-elk-e7500 fi-skl-lmem fi-blb-e6850 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5499 -> IGTPW_4278
CI-20190529: 20190529
CI_DRM_8093: 0d201b03b62aacbd13fd104a371bd45ee2060277 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4278: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
IGT_5499: 2e23cf6f63fc6ba1d9543f8327698d6f21813cec @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@kms_chamelium@hdmi-cmp-planar-formats
+igt@kms_chamelium@hdmi-crc-nonplanar-formats
-igt@kms_chamelium@hdmi-cmp-nv12
-igt@kms_chamelium@hdmi-cmp-nv16
-igt@kms_chamelium@hdmi-cmp-nv21
-igt@kms_chamelium@hdmi-cmp-nv61
-igt@kms_chamelium@hdmi-cmp-yu12
-igt@kms_chamelium@hdmi-cmp-yu16
-igt@kms_chamelium@hdmi-cmp-yv12
-igt@kms_chamelium@hdmi-cmp-yv16
-igt@kms_chamelium@hdmi-crc-abgr8888
-igt@kms_chamelium@hdmi-crc-argb1555
-igt@kms_chamelium@hdmi-crc-argb8888
-igt@kms_chamelium@hdmi-crc-bgr565
-igt@kms_chamelium@hdmi-crc-bgr888
-igt@kms_chamelium@hdmi-crc-rgb565
-igt@kms_chamelium@hdmi-crc-rgb888
-igt@kms_chamelium@hdmi-crc-xbgr8888
-igt@kms_chamelium@hdmi-crc-xrgb1555
-igt@kms_chamelium@hdmi-crc-xrgb8888
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2)
2020-03-09 2:02 [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats Kunal Joshi
2020-03-09 9:22 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2) Patchwork
@ 2020-03-09 12:26 ` Patchwork
2020-03-09 15:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-03-09 16:35 ` [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats Arkadiusz Hiler
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2020-03-09 12:26 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
== Series Details ==
Series: tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2)
URL : https://patchwork.freedesktop.org/series/74368/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_8093 -> IGTPW_4278
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
Known issues
------------
Here are the changes found in IGTPW_4278 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@mmap:
- fi-kbl-7500u: [PASS][1] -> [SKIP][2] ([fdo#109271])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/fi-kbl-7500u/igt@fbdev@mmap.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-kbl-7500u/igt@fbdev@mmap.html
* igt@i915_selftest@live@gem_contexts:
- fi-cml-s: [PASS][3] -> [DMESG-FAIL][4] ([i915#877])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/fi-cml-s/igt@i915_selftest@live@gem_contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-cml-s/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@gt_contexts:
- fi-byt-j1900: [PASS][5] -> [DMESG-FAIL][6] ([i915#666])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/fi-byt-j1900/igt@i915_selftest@live@gt_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-byt-j1900/igt@i915_selftest@live@gt_contexts.html
* igt@kms_chamelium@dp-hpd-fast:
- fi-icl-u2: [PASS][7] -> [DMESG-WARN][8] ([i915#289])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/fi-icl-u2/igt@kms_chamelium@dp-hpd-fast.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/fi-icl-u2/igt@kms_chamelium@dp-hpd-fast.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#289]: https://gitlab.freedesktop.org/drm/intel/issues/289
[i915#666]: https://gitlab.freedesktop.org/drm/intel/issues/666
[i915#877]: https://gitlab.freedesktop.org/drm/intel/issues/877
Participating hosts (41 -> 32)
------------------------------
Additional (4): fi-skl-6770hq fi-bsw-nick fi-bwr-2160 fi-snb-2600
Missing (13): fi-tgl-dsi fi-hsw-4200u fi-hsw-peppy fi-byt-squawks fi-bsw-cyan fi-ilk-650 fi-gdg-551 fi-ivb-3770 fi-elk-e7500 fi-skl-lmem fi-blb-e6850 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5499 -> IGTPW_4278
CI-20190529: 20190529
CI_DRM_8093: 0d201b03b62aacbd13fd104a371bd45ee2060277 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4278: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
IGT_5499: 2e23cf6f63fc6ba1d9543f8327698d6f21813cec @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@kms_chamelium@hdmi-cmp-planar-formats
+igt@kms_chamelium@hdmi-crc-nonplanar-formats
-igt@kms_chamelium@hdmi-cmp-nv12
-igt@kms_chamelium@hdmi-cmp-nv16
-igt@kms_chamelium@hdmi-cmp-nv21
-igt@kms_chamelium@hdmi-cmp-nv61
-igt@kms_chamelium@hdmi-cmp-yu12
-igt@kms_chamelium@hdmi-cmp-yu16
-igt@kms_chamelium@hdmi-cmp-yv12
-igt@kms_chamelium@hdmi-cmp-yv16
-igt@kms_chamelium@hdmi-crc-abgr8888
-igt@kms_chamelium@hdmi-crc-argb1555
-igt@kms_chamelium@hdmi-crc-argb8888
-igt@kms_chamelium@hdmi-crc-bgr565
-igt@kms_chamelium@hdmi-crc-bgr888
-igt@kms_chamelium@hdmi-crc-rgb565
-igt@kms_chamelium@hdmi-crc-rgb888
-igt@kms_chamelium@hdmi-crc-xbgr8888
-igt@kms_chamelium@hdmi-crc-xrgb1555
-igt@kms_chamelium@hdmi-crc-xrgb8888
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2)
2020-03-09 2:02 [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats Kunal Joshi
2020-03-09 9:22 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2) Patchwork
2020-03-09 12:26 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2020-03-09 15:13 ` Patchwork
2020-03-09 16:34 ` Arkadiusz Hiler
2020-03-09 16:35 ` [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats Arkadiusz Hiler
3 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2020-03-09 15:13 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
== Series Details ==
Series: tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2)
URL : https://patchwork.freedesktop.org/series/74368/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_8093_full -> IGTPW_4278_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_4278_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_4278_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_4278_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_chamelium@hdmi-crc-nonplanar-formats} (NEW):
- shard-tglb: NOTRUN -> [SKIP][1] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-tglb7/igt@kms_chamelium@hdmi-crc-nonplanar-formats.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
- shard-kbl: [PASS][2] -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt}:
- shard-hsw: NOTRUN -> [DMESG-WARN][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html
New tests
---------
New tests have been introduced between CI_DRM_8093_full and IGTPW_4278_full:
### New IGT tests (2) ###
* igt@kms_chamelium@hdmi-cmp-planar-formats:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_chamelium@hdmi-crc-nonplanar-formats:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_4278_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_busy@busy-vcs1:
- shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#112080]) +15 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb4/igt@gem_busy@busy-vcs1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb5/igt@gem_busy@busy-vcs1.html
* igt@gem_ctx_shared@exec-single-timeline-bsd:
- shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#110841])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb6/igt@gem_ctx_shared@exec-single-timeline-bsd.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html
* igt@gem_exec_schedule@implicit-write-read-bsd2:
- shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#109276] / [i915#677])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb4/igt@gem_exec_schedule@implicit-write-read-bsd2.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd2.html
* igt@gem_exec_schedule@pi-distinct-iova-bsd:
- shard-iclb: [PASS][11] -> [SKIP][12] ([i915#677]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb3/igt@gem_exec_schedule@pi-distinct-iova-bsd.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb4/igt@gem_exec_schedule@pi-distinct-iova-bsd.html
* igt@gem_exec_schedule@preempt-other-chain-bsd:
- shard-iclb: [PASS][13] -> [SKIP][14] ([fdo#112146]) +6 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd.html
* igt@gem_exec_schedule@preempt-queue-bsd1:
- shard-iclb: [PASS][15] -> [SKIP][16] ([fdo#109276]) +18 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd1.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-glk: [PASS][17] -> [FAIL][18] ([i915#644])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-glk8/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [PASS][19] -> [DMESG-WARN][20] ([i915#716])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-glk4/igt@gen9_exec_parse@allowed-all.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-glk9/igt@gen9_exec_parse@allowed-all.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-iclb: [PASS][21] -> [FAIL][22] ([i915#370])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb5/igt@i915_pm_rps@min-max-config-loaded.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb4/igt@i915_pm_rps@min-max-config-loaded.html
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing:
- shard-snb: [PASS][23] -> [SKIP][24] ([fdo#109271]) +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-snb2/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-snb6/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-apl: [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-glk: [PASS][27] -> [FAIL][28] ([i915#407])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-glk2/igt@kms_flip@2x-modeset-vs-vblank-race.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-glk1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +2 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_psr2_su@frontbuffer:
- shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109642] / [fdo#111068])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb8/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-iclb: [PASS][33] -> [SKIP][34] ([fdo#109441]) +2 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb5/igt@kms_psr@psr2_cursor_plane_onoff.html
#### Possible fixes ####
* igt@gem_ctx_isolation@vcs1-dirty-create:
- shard-iclb: [SKIP][35] ([fdo#112080]) -> [PASS][36] +8 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb1/igt@gem_ctx_isolation@vcs1-dirty-create.html
* igt@gem_ctx_persistence@close-replace-race:
- shard-kbl: [INCOMPLETE][37] ([fdo#103665]) -> [PASS][38] +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl1/igt@gem_ctx_persistence@close-replace-race.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-kbl1/igt@gem_ctx_persistence@close-replace-race.html
* igt@gem_exec_balancer@smoke:
- shard-iclb: [SKIP][39] ([fdo#110854]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb7/igt@gem_exec_balancer@smoke.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb4/igt@gem_exec_balancer@smoke.html
* igt@gem_exec_schedule@implicit-read-write-bsd1:
- shard-iclb: [SKIP][41] ([fdo#109276] / [i915#677]) -> [PASS][42] +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd1.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb1/igt@gem_exec_schedule@implicit-read-write-bsd1.html
* igt@gem_exec_schedule@pi-common-bsd:
- shard-iclb: [SKIP][43] ([i915#677]) -> [PASS][44] +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb4/igt@gem_exec_schedule@pi-common-bsd.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb7/igt@gem_exec_schedule@pi-common-bsd.html
* igt@gem_exec_schedule@reorder-wide-bsd:
- shard-iclb: [SKIP][45] ([fdo#112146]) -> [PASS][46] +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb8/igt@gem_exec_schedule@reorder-wide-bsd.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-apl: [FAIL][47] ([i915#644]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-apl2/igt@gem_ppgtt@flink-and-close-vma-leak.html
- shard-tglb: [FAIL][49] ([i915#644]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-tglb7/igt@gem_ppgtt@flink-and-close-vma-leak.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-tglb6/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@i915_pm_rpm@fences:
- shard-tglb: [SKIP][51] ([i915#1316]) -> [PASS][52] +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-tglb7/igt@i915_pm_rpm@fences.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-tglb8/igt@i915_pm_rpm@fences.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-iclb: [SKIP][53] ([i915#1316]) -> [PASS][54] +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb4/igt@i915_pm_rpm@system-suspend-execbuf.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb6/igt@i915_pm_rpm@system-suspend-execbuf.html
- shard-hsw: [SKIP][55] ([fdo#109271]) -> [PASS][56] +1 similar issue
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-hsw4/igt@i915_pm_rpm@system-suspend-execbuf.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-hsw4/igt@i915_pm_rpm@system-suspend-execbuf.html
- shard-glk: [SKIP][57] ([fdo#109271]) -> [PASS][58] +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-glk4/igt@i915_pm_rpm@system-suspend-execbuf.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-glk8/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@reset:
- shard-iclb: [FAIL][59] ([i915#413]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb4/igt@i915_pm_rps@reset.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb8/igt@i915_pm_rps@reset.html
* igt@kms_cursor_crc@pipe-a-cursor-suspend:
- shard-kbl: [DMESG-WARN][61] ([i915#180]) -> [PASS][62] +4 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-hsw: [FAIL][63] ([i915#96]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-hsw1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_flip@absolute-wf_vblank:
- shard-kbl: [DMESG-WARN][65] ([i915#1297]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl2/igt@kms_flip@absolute-wf_vblank.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-kbl6/igt@kms_flip@absolute-wf_vblank.html
- shard-apl: [DMESG-WARN][67] ([i915#1297]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-apl8/igt@kms_flip@absolute-wf_vblank.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-apl4/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-apl: [FAIL][69] ([i915#407]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-apl3/igt@kms_flip@modeset-vs-vblank-race.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-apl3/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-kbl: [FAIL][71] ([i915#34]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl3/igt@kms_flip@plain-flip-fb-recreate.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-kbl3/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
- shard-apl: [DMESG-WARN][73] ([i915#180]) -> [PASS][74] +4 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
* igt@kms_plane_lowres@pipe-a-tiling-y:
- shard-glk: [FAIL][75] ([i915#899]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-glk8/igt@kms_plane_lowres@pipe-a-tiling-y.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-glk1/igt@kms_plane_lowres@pipe-a-tiling-y.html
* igt@kms_psr@psr2_no_drrs:
- shard-iclb: [SKIP][77] ([fdo#109441]) -> [PASS][78] +2 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb5/igt@kms_psr@psr2_no_drrs.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
* igt@prime_busy@hang-bsd2:
- shard-iclb: [SKIP][79] ([fdo#109276]) -> [PASS][80] +17 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-iclb3/igt@prime_busy@hang-bsd2.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-iclb1/igt@prime_busy@hang-bsd2.html
#### Warnings ####
* igt@gem_ctx_persistence@close-replace-race:
- shard-apl: [TIMEOUT][81] ([i915#1340]) -> [INCOMPLETE][82] ([fdo#103927] / [i915#1402])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html
- shard-glk: [INCOMPLETE][83] ([i915#58] / [k.org#198133]) -> [INCOMPLETE][84] ([i915#1402] / [i915#58] / [k.org#198133])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-glk5/igt@gem_ctx_persistence@close-replace-race.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html
* igt@gem_linear_blits@normal:
- shard-apl: [TIMEOUT][85] ([fdo#111732]) -> [TIMEOUT][86] ([fdo#111732] / [i915#1322])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-apl4/igt@gem_linear_blits@normal.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-apl6/igt@gem_linear_blits@normal.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-kbl: [INCOMPLETE][87] ([fdo#103665] / [i915#879]) -> [INCOMPLETE][88] ([i915#879])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl3/igt@i915_module_load@reload-with-fault-injection.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-kbl4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_dc@dc6-psr:
- shard-tglb: [SKIP][89] ([i915#468]) -> [FAIL][90] ([i915#454])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-tglb2/igt@i915_pm_dc@dc6-psr.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-tglb7/igt@i915_pm_dc@dc6-psr.html
* igt@runner@aborted:
- shard-kbl: ([FAIL][91], [FAIL][92]) ([i915#1389] / [i915#92]) -> [FAIL][93] ([i915#92])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl3/igt@runner@aborted.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl1/igt@runner@aborted.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-kbl4/igt@runner@aborted.html
- shard-apl: [FAIL][94] ([fdo#103927]) -> ([FAIL][95], [FAIL][96]) ([fdo#103927] / [i915#1402])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-apl2/igt@runner@aborted.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-apl2/igt@runner@aborted.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-apl1/igt@runner@aborted.html
- shard-glk: [FAIL][97] ([k.org#202321]) -> ([FAIL][98], [FAIL][99]) ([i915#1402] / [k.org#202321])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-glk5/igt@runner@aborted.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-glk3/igt@runner@aborted.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-glk9/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
[fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111732]: https://bugs.freedesktop.org/show_bug.cgi?id=111732
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297
[i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
[i915#1322]: https://gitlab.freedesktop.org/drm/intel/issues/1322
[i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340
[i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389
[i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#34]: https://gitlab.freedesktop.org/drm/intel/issues/34
[i915#370]: https://gitlab.freedesktop.org/drm/intel/issues/370
[i915#407]: https://gitlab.freedesktop.org/drm/intel/issues/407
[i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
[i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
[i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
[i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#879]: https://gitlab.freedesktop.org/drm/intel/issues/879
[i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899
[i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
[i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
[k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
[k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5499 -> IGTPW_4278
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_8093: 0d201b03b62aacbd13fd104a371bd45ee2060277 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4278: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
IGT_5499: 2e23cf6f63fc6ba1d9543f8327698d6f21813cec @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2)
2020-03-09 15:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-03-09 16:34 ` Arkadiusz Hiler
0 siblings, 0 replies; 6+ messages in thread
From: Arkadiusz Hiler @ 2020-03-09 16:34 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Lakshmi
On Mon, Mar 09, 2020 at 03:13:47PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2)
> URL : https://patchwork.freedesktop.org/series/74368/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_8093_full -> IGTPW_4278_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_4278_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_4278_full, please notify your bug team to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/index.html
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_4278_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * {igt@kms_chamelium@hdmi-crc-nonplanar-formats} (NEW):
> - shard-tglb: NOTRUN -> [SKIP][1] +1 similar issue
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-tglb7/igt@kms_chamelium@hdmi-crc-nonplanar-formats.html
This needs some filtering adjustments - new testnames and new skips on
chamelium-less hosts.
> * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
> - shard-kbl: [PASS][2] -> [INCOMPLETE][3]
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8093/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4278/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
Unrelated to chamelium test changes = noise.
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats
2020-03-09 2:02 [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats Kunal Joshi
` (2 preceding siblings ...)
2020-03-09 15:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-03-09 16:35 ` Arkadiusz Hiler
3 siblings, 0 replies; 6+ messages in thread
From: Arkadiusz Hiler @ 2020-03-09 16:35 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev, petri.latvala
On Mon, Mar 09, 2020 at 07:32:27AM +0530, Kunal Joshi wrote:
> Currently, only hard coded pixel formats are validated which are not
> generic across platforms which leads to SKIPS.
> Added support to validate only those pixel formats which are supported by
> platform. Covering both RGB and YUV pixel formats.
>
> v2: added support for RGB pixel formats (Swati)
> v3: simplified constraint and made it more readable (Petri)
> v4: -used igt_format_str instead of macro to print fourcc code (Ville)
> -dropped patch#1 because of above change
> v5: -Removed connector_dynamic_subtest_end macro and modified
> connector_dynamic_subtest to allow scoping depending on
> requirement (Petri)
> -Changed test names to make it more revealing (Arek)
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-03-09 16:35 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-09 2:02 [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats Kunal Joshi
2020-03-09 9:22 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_chamelium: Add support to validate RGB/YUV pixel formats (rev2) Patchwork
2020-03-09 12:26 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2020-03-09 15:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-03-09 16:34 ` Arkadiusz Hiler
2020-03-09 16:35 ` [igt-dev] [PATCH i-g-t v5] tests/kms_chamelium: Add support to validate RGB/YUV pixel formats Arkadiusz Hiler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox