* [igt-dev] [PATCH i-g-t v4 0/2] lib/igt_device_scan: add filer card=all
@ 2022-11-10 12:38 Kamil Konieczny
2022-11-10 12:38 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/igt_device_scan: refactor filter adding Kamil Konieczny
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Kamil Konieczny @ 2022-11-10 12:38 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala
Allow to select all (up to 64) discrete cards with the help of
card=all or card=*, for example:
./gem_basic --device=pci:vendor=intel,device=discrete,card=all
v2: correct misspelled word at patch 1/2 (Zbigniew), increase
max number of filters from 16 to 64, stop filter splat at
patch 2/2 (Petri)
v3: correct doc (patch 2/2)
v4: correct filter matching, reorganize loop (patch 2/2),
tested on machine with two discrete cards
Cc: Petri Latvala <petri.latvala@intel.com>
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Kamil Konieczny (2):
lib/igt_device_scan: refactor filter adding
lib/igt_device_scan: add card=all filter selector
lib/igt_device_scan.c | 46 +++++++++++++++++++++++++++++++++++++++++--
1 file changed, 44 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t v4 1/2] lib/igt_device_scan: refactor filter adding 2022-11-10 12:38 [igt-dev] [PATCH i-g-t v4 0/2] lib/igt_device_scan: add filer card=all Kamil Konieczny @ 2022-11-10 12:38 ` Kamil Konieczny 2022-11-10 12:38 ` [igt-dev] [PATCH i-g-t v4 2/2] lib/igt_device_scan: add card=all filter selector Kamil Konieczny ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2022-11-10 12:38 UTC (permalink / raw) To: igt-dev Refactor filter adding loop. v2: fix misspelled word (Zbigniew) Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/igt_device_scan.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c index 15be3844..6f5b90e6 100644 --- a/lib/igt_device_scan.c +++ b/lib/igt_device_scan.c @@ -1775,13 +1775,15 @@ int igt_device_filter_add(const char *filters) while ((filter = strsep(&dup, ";"))) { bool is_valid = is_filter_valid(filter); + struct device_filter *df; igt_warn_on(!is_valid); - if (is_valid) { - struct device_filter *df = malloc(sizeof(*df)); - strncpy(df->filter, filter, sizeof(df->filter)-1); - igt_list_add_tail(&df->link, &device_filters); - count++; - } + if (!is_valid) + continue; + + df = malloc(sizeof(*df)); + strncpy(df->filter, filter, sizeof(df->filter)-1); + igt_list_add_tail(&df->link, &device_filters); + count++; } free(dup_orig); -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v4 2/2] lib/igt_device_scan: add card=all filter selector 2022-11-10 12:38 [igt-dev] [PATCH i-g-t v4 0/2] lib/igt_device_scan: add filer card=all Kamil Konieczny 2022-11-10 12:38 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/igt_device_scan: refactor filter adding Kamil Konieczny @ 2022-11-10 12:38 ` Kamil Konieczny 2022-11-10 15:52 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_device_scan: add filer card=all (rev4) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2022-11-10 12:38 UTC (permalink / raw) To: igt-dev; +Cc: Petri Latvala Allow to select all discrete cards on system with the help of card=all or card=* filter, for example: pci:vendor=intel,device=discrete,card=all or pci:vendor=intel,device=discrete,card=* This will add max of 64 cards filters with card=0..63 but will stop adding at card index not present on system. If no card will match only one filter for card=0 will be added. v2: increase number of filters from 16 to 64, add stopper for non-matching card to avoid filter splat (Petri) v3: improve documentation v4: corrected filter used in matching, rearrange loop code Cc: Petri Latvala <petri.latvala@intel.com> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/igt_device_scan.c | 48 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 44 insertions(+), 4 deletions(-) diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c index 6f5b90e6..ed128d24 100644 --- a/lib/igt_device_scan.c +++ b/lib/igt_device_scan.c @@ -120,6 +120,15 @@ * * It selects the second one. * + * |[<!-- language="plain" --> + * pci:vendor=8086,device=1234,card=all + * pci:vendor=8086,device=1234,card=* + * ]| + * + * This will add 0..N card selectors, where 0 <= N <= 63. At least one + * filter will be added with card=0 and all incrementally matched ones + * up to max numbered 63 (max total 64). + * * We may use device codename or pseudo-codename (integrated/discrete) * instead of pci device id: * @@ -1753,6 +1762,8 @@ static bool is_filter_valid(const char *fstr) return true; } +#define MAX_PCI_CARDS 64 + /** * igt_device_filter_add * @filters: filter(s) to be stored in filter array @@ -1776,14 +1787,43 @@ int igt_device_filter_add(const char *filters) while ((filter = strsep(&dup, ";"))) { bool is_valid = is_filter_valid(filter); struct device_filter *df; + char *multi; + igt_warn_on(!is_valid); if (!is_valid) continue; - df = malloc(sizeof(*df)); - strncpy(df->filter, filter, sizeof(df->filter)-1); - igt_list_add_tail(&df->link, &device_filters); - count++; + if (!strncmp(filter, "sriov:", 6)) { + multi = NULL; + } else { + multi = strstr(filter, "card=all"); + if (!multi) + multi = strstr(filter, "card=*"); + } + + if (!multi) { + df = malloc(sizeof(*df)); + strncpy(df->filter, filter, sizeof(df->filter)-1); + igt_list_add_tail(&df->link, &device_filters); + count++; + } else { + multi[5] = 0; + for (int i = 0; i < MAX_PCI_CARDS; ++i) { + df = malloc(sizeof(*df)); + snprintf(df->filter, sizeof(df->filter)-1, "%s%d", filter, i); + if (i) { /* add at least card=0 */ + struct igt_device_card card; + + if (!igt_device_card_match(df->filter, &card)) { + free(df); + break; + } + } + + igt_list_add_tail(&df->link, &device_filters); + count++; + } + } } free(dup_orig); -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_device_scan: add filer card=all (rev4) 2022-11-10 12:38 [igt-dev] [PATCH i-g-t v4 0/2] lib/igt_device_scan: add filer card=all Kamil Konieczny 2022-11-10 12:38 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/igt_device_scan: refactor filter adding Kamil Konieczny 2022-11-10 12:38 ` [igt-dev] [PATCH i-g-t v4 2/2] lib/igt_device_scan: add card=all filter selector Kamil Konieczny @ 2022-11-10 15:52 ` Patchwork 2022-11-10 17:05 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-10 22:33 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-11-10 15:52 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9033 bytes --] == Series Details == Series: lib/igt_device_scan: add filer card=all (rev4) URL : https://patchwork.freedesktop.org/series/109824/ State : success == Summary == CI Bug Log - changes from CI_DRM_12364 -> IGTPW_8081 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/index.html Participating hosts (39 -> 38) ------------------------------ Additional (3): fi-hsw-4770 fi-rkl-11600 fi-tgl-dsi Missing (4): fi-ctg-p8600 fi-ivb-3770 fi-bdw-samus fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_8081 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-rkl-11600: NOTRUN -> [SKIP][2] ([i915#4613]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#3282]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#3012]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html - fi-hsw-4770: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#3012]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@gt_lrc: - fi-rkl-guc: [PASS][6] -> [INCOMPLETE][7] ([i915#4983]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@migrate: - bat-adlp-4: [PASS][8] -> [INCOMPLETE][9] ([i915#7308] / [i915#7348]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/bat-adlp-4/igt@i915_selftest@live@migrate.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/bat-adlp-4/igt@i915_selftest@live@migrate.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: NOTRUN -> [INCOMPLETE][10] ([i915#4817]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][11] ([fdo#109271]) +9 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_chamelium@dp-crc-fast: - fi-hsw-4770: NOTRUN -> [SKIP][12] ([fdo#109271] / [fdo#111827]) +8 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-hsw-4770/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-rkl-11600: NOTRUN -> [SKIP][13] ([fdo#111827]) +7 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - fi-rkl-11600: NOTRUN -> [SKIP][14] ([i915#4103]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][15] ([fdo#109285] / [i915#4098]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@sprite_plane_onoff: - fi-rkl-11600: NOTRUN -> [SKIP][16] ([i915#1072]) +3 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@kms_psr@sprite_plane_onoff.html - fi-hsw-4770: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#1072]) +3 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#4098]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][19] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - fi-rkl-11600: NOTRUN -> [SKIP][20] ([fdo#109295] / [i915#3301] / [i915#3708]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/fi-rkl-11600/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - bat-adlp-4: NOTRUN -> [FAIL][21] ([i915#4312]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/bat-adlp-4/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - {bat-rpls-2}: [DMESG-WARN][22] ([i915#6434]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/bat-rpls-2/igt@gem_exec_suspend@basic-s0@smem.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/bat-rpls-2/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@migrate: - {bat-adlp-6}: [INCOMPLETE][24] ([i915#7348]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/bat-adlp-6/igt@i915_selftest@live@migrate.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/bat-adlp-6/igt@i915_selftest@live@migrate.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5278]: https://gitlab.freedesktop.org/drm/intel/issues/5278 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6949]: https://gitlab.freedesktop.org/drm/intel/issues/6949 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7029]: https://gitlab.freedesktop.org/drm/intel/issues/7029 [i915#7058]: https://gitlab.freedesktop.org/drm/intel/issues/7058 [i915#7308]: https://gitlab.freedesktop.org/drm/intel/issues/7308 [i915#7348]: https://gitlab.freedesktop.org/drm/intel/issues/7348 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7050 -> IGTPW_8081 CI-20190529: 20190529 CI_DRM_12364: e8bcb44a50317c067823a983fa2badde97e41fdd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8081: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/index.html IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@kms_color@ctm-multiplane -igt@kms_color@degamma-multiplane -igt@kms_color@gamma-multiplane -igt@kms_color_chamelium@ctm-multiplane -igt@kms_color_chamelium@degamma-multiplane -igt@kms_color_chamelium@gamma-multiplane == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/index.html [-- Attachment #2: Type: text/html, Size: 10088 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_device_scan: add filer card=all (rev4) 2022-11-10 12:38 [igt-dev] [PATCH i-g-t v4 0/2] lib/igt_device_scan: add filer card=all Kamil Konieczny ` (2 preceding siblings ...) 2022-11-10 15:52 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_device_scan: add filer card=all (rev4) Patchwork @ 2022-11-10 17:05 ` Patchwork 2022-11-10 19:36 ` Kamil Konieczny 2022-11-10 22:33 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 1 reply; 7+ messages in thread From: Patchwork @ 2022-11-10 17:05 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 43073 bytes --] == Series Details == Series: lib/igt_device_scan: add filer card=all (rev4) URL : https://patchwork.freedesktop.org/series/109824/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12364_full -> IGTPW_8081_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8081_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8081_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_8081/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8081_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@unwedge-stress: - shard-iclb: [PASS][1] -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@gem_eio@unwedge-stress.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@gem_eio@unwedge-stress.html * igt@kms_atomic_transition@modeset-transition@1x-outputs: - shard-tglb: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb1/igt@kms_atomic_transition@modeset-transition@1x-outputs.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb8/igt@kms_atomic_transition@modeset-transition@1x-outputs.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-glk: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk6/igt@kms_rotation_crc@sprite-rotation-270.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk8/igt@kms_rotation_crc@sprite-rotation-270.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_invalid_mode@int-max-clock: - {shard-rkl}: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-2/igt@kms_invalid_mode@int-max-clock.html Known issues ------------ Here are the changes found in IGTPW_8081_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@psr2: - shard-iclb: [PASS][8] -> [SKIP][9] ([i915#658]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@feature_discovery@psr2.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@feature_discovery@psr2.html * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][10] ([i915#4991]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb5/igt@gem_create@create-massive.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][11] ([i915#280]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb8/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-bb-first: - shard-iclb: [PASS][12] -> [SKIP][13] ([i915#4525]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@gem_exec_balancer@parallel-bb-first.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: NOTRUN -> [SKIP][14] ([i915#4525]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][17] -> [FAIL][18] ([i915#2842]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk8/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][19] ([i915#2842]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_schedule@preempt-user: - shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271]) +22 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb2/igt@gem_exec_schedule@preempt-user.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][22] ([i915#2658]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_userptr_blits@readonly-unsync: - shard-iclb: NOTRUN -> [SKIP][23] ([i915#3297]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb8/igt@gem_userptr_blits@readonly-unsync.html - shard-tglb: NOTRUN -> [SKIP][24] ([i915#3297]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb6/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][25] -> [DMESG-WARN][26] ([i915#5566] / [i915#716]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk1/igt@gen9_exec_parse@allowed-single.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk5/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][27] ([i915#6412]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@i915_module_load@resize-bar.html - shard-tglb: NOTRUN -> [SKIP][28] ([i915#6412]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb2/igt@i915_module_load@resize-bar.html * igt@i915_pm_rps@engine-order: - shard-apl: [PASS][29] -> [FAIL][30] ([i915#6537]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl7/igt@i915_pm_rps@engine-order.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl3/igt@i915_pm_rps@engine-order.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][31] ([i915#5286]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][32] ([i915#5286]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-glk: [PASS][33] -> [DMESG-FAIL][34] ([i915#118] / [i915#5138]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk9/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3886]) +2 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#109278]) +2 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3689] / [i915#6095]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3689] / [i915#3886]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk2/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#109278] / [i915#3886]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][41] ([i915#3689]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_chamelium@dp-hpd-fast: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#109284] / [fdo#111827]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@kms_chamelium@dp-hpd-fast.html - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk3/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html - shard-snb: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium@vga-hpd-fast: - shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +5 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@kms_chamelium@vga-hpd-fast.html * igt@kms_content_protection@atomic@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][47] ([i915#7173]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl3/igt@kms_content_protection@atomic@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1: - shard-iclb: [PASS][48] -> [DMESG-WARN][49] ([i915#4391]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb6/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#109274] / [fdo#111825]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109274]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][52] -> [FAIL][53] ([i915#79]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-iclb: [PASS][54] -> [DMESG-WARN][55] ([i915#2867]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb1/igt@kms_flip@flip-vs-suspend@b-edp1.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][56] -> [DMESG-WARN][57] ([i915#180]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl3/igt@kms_flip@flip-vs-suspend@c-dp1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1: - shard-glk: [PASS][58] -> [FAIL][59] ([i915#2122]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][60] ([i915#2587] / [i915#2672]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][61] ([i915#3555]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][62] ([i915#2672]) +6 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109280]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109280] / [fdo#111825]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271]) +77 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271]) +10 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_plane_lowres@tiling-yf: - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#112054] / [i915#5288]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][68] ([i915#3536]) +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#7037]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb8/igt@kms_psr2_su@page_flip-nv12.html - shard-glk: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk7/igt@kms_psr2_su@page_flip-nv12.html - shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109642] / [fdo#111068] / [i915#658]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-apl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [PASS][73] -> [SKIP][74] ([fdo#109441]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html #### Possible fixes #### * igt@api_intel_bb@object-reloc-keep-cache: - {shard-rkl}: [SKIP][75] ([i915#3281]) -> [PASS][76] +7 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@fbdev@info: - {shard-rkl}: [SKIP][77] ([i915#2582]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@fbdev@info.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-4/igt@fbdev@info.html * igt@gem_exec_balancer@parallel: - shard-iclb: [SKIP][79] ([i915#4525]) -> [PASS][80] +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb8/igt@gem_exec_balancer@parallel.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [FAIL][81] ([i915#2842]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][83] ([i915#2842]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][85] ([i915#2190]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb6/igt@gem_huc_copy@huc-copy.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@gem_huc_copy@huc-copy.html * igt@gem_partial_pwrite_pread@reads-display: - {shard-rkl}: [SKIP][87] ([i915#3282]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@gem_partial_pwrite_pread@reads-display.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-display.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [DMESG-WARN][89] ([i915#5566] / [i915#716]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@gen9_exec_parse@allowed-single.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - {shard-rkl}: [SKIP][91] ([i915#2527]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@gen9_exec_parse@basic-rejected.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@gen9_exec_parse@basic-rejected.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - {shard-rkl}: [SKIP][93] ([i915#4098]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc5-psr: - {shard-rkl}: [SKIP][95] ([i915#658]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@i915_pm_dc@dc5-psr.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][97] ([i915#3989] / [i915#454]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb3/igt@i915_pm_dc@dc6-psr.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@cursor: - {shard-rkl}: [SKIP][99] ([i915#1849]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@i915_pm_rpm@cursor.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@i915_pm_rpm@cursor.html * igt@i915_pm_rps@waitboost: - {shard-rkl}: [FAIL][101] ([i915#7142]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@i915_pm_rps@waitboost.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-2/igt@i915_pm_rps@waitboost.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [SKIP][103] ([fdo#109271]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-snb5/igt@i915_selftest@perf@engine_cs.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb7/igt@i915_selftest@perf@engine_cs.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [DMESG-WARN][105] ([i915#180]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: - shard-apl: [FAIL][107] ([i915#2521]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-iclb: [FAIL][109] ([i915#2521]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - {shard-rkl}: [SKIP][111] ([i915#1845] / [i915#4098]) -> [PASS][112] +17 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-glk: [DMESG-FAIL][113] ([i915#118] / [i915#5138]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: - shard-apl: [FAIL][115] ([i915#79]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html * igt@kms_frontbuffer_tracking@fbc-badstride: - {shard-rkl}: [SKIP][117] ([i915#1849] / [i915#4098]) -> [PASS][118] +10 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-badstride.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-badstride.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - {shard-rkl}: [SKIP][119] ([i915#1849] / [i915#3558]) -> [PASS][120] +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][121] ([i915#5235]) -> [PASS][122] +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@cursor_mmap_cpu: - {shard-rkl}: [SKIP][123] ([i915#1072]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@kms_psr@cursor_mmap_cpu.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][125] ([fdo#109441]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - {shard-rkl}: [SKIP][127] ([i915#5461]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-iclb: [SKIP][129] ([i915#5519]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - {shard-rkl}: [SKIP][131] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][133] ([i915#1722]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@perf@polling-small-buf.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@perf@polling-small-buf.html * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [FAIL][135] ([i915#5234]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html * igt@sysfs_timeslice_duration@timeout@vcs1: - {shard-dg1}: [FAIL][137] ([i915#1755]) -> [PASS][138] +3 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-dg1-19/igt@sysfs_timeslice_duration@timeout@vcs1.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-dg1-15/igt@sysfs_timeslice_duration@timeout@vcs1.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][139] ([i915#6117]) -> [SKIP][140] ([i915#4525]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pread@exhaustion: - shard-tglb: [INCOMPLETE][141] ([i915#7248]) -> [WARN][142] ([i915#2658]) +1 similar issue [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb5/igt@gem_pread@exhaustion.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: [INCOMPLETE][143] ([i915#7248]) -> [WARN][144] ([i915#2658]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk1/igt@gem_pwrite@basic-exhaustion.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk9/igt@gem_pwrite@basic-exhaustion.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][145] ([fdo#109271]) -> [FAIL][146] ([i915#4275]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@i915_pm_dc@dc9-dpms.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-iclb: [WARN][147] ([i915#2684]) -> [FAIL][148] ([i915#2684]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-iclb: [SKIP][149] ([i915#2920]) -> [SKIP][150] ([i915#658]) +1 similar issue [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][151] ([i915#658]) -> [SKIP][152] ([i915#2920]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-iclb: [SKIP][153] ([fdo#111068] / [i915#658]) -> [SKIP][154] ([i915#2920]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][155], [FAIL][156], [FAIL][157], [FAIL][158]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162]) ([i915#180] / [i915#3002] / [i915#4312]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl7/igt@runner@aborted.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@runner@aborted.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl8/igt@runner@aborted.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@runner@aborted.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@runner@aborted.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@runner@aborted.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl3/igt@runner@aborted.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl6/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#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [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#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7142]: https://gitlab.freedesktop.org/drm/intel/issues/7142 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7050 -> IGTPW_8081 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12364: e8bcb44a50317c067823a983fa2badde97e41fdd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8081: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/index.html IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ 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_8081/index.html [-- Attachment #2: Type: text/html, Size: 46025 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_device_scan: add filer card=all (rev4) 2022-11-10 17:05 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-10 19:36 ` Kamil Konieczny 0 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2022-11-10 19:36 UTC (permalink / raw) To: igt-dev; +Cc: Lakshminarayana Vudum Hi Lakshmi, On 2022-11-10 at 17:05:29 -0000, Patchwork wrote: > == Series Details == > > Series: lib/igt_device_scan: add filer card=all (rev4) > URL : https://patchwork.freedesktop.org/series/109824/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_12364_full -> IGTPW_8081_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_8081_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8081_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_8081/index.html > > Participating hosts (11 -> 8) > ------------------------------ > > Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_8081_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_eio@unwedge-stress: > - shard-iclb: [PASS][1] -> [TIMEOUT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@gem_eio@unwedge-stress.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@gem_eio@unwedge-stress.html > > * igt@kms_atomic_transition@modeset-transition@1x-outputs: > - shard-tglb: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb1/igt@kms_atomic_transition@modeset-transition@1x-outputs.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb8/igt@kms_atomic_transition@modeset-transition@1x-outputs.html > > * igt@kms_rotation_crc@sprite-rotation-270: > - shard-glk: [PASS][5] -> [FAIL][6] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk6/igt@kms_rotation_crc@sprite-rotation-270.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk8/igt@kms_rotation_crc@sprite-rotation-270.html > These are unrelated to my change in parsing --device= option. Regards, Kamil > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@kms_invalid_mode@int-max-clock: > - {shard-rkl}: NOTRUN -> [SKIP][7] > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-2/igt@kms_invalid_mode@int-max-clock.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_8081_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@feature_discovery@psr2: > - shard-iclb: [PASS][8] -> [SKIP][9] ([i915#658]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@feature_discovery@psr2.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@feature_discovery@psr2.html > > * igt@gem_create@create-massive: > - shard-snb: NOTRUN -> [DMESG-WARN][10] ([i915#4991]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb5/igt@gem_create@create-massive.html > > * igt@gem_ctx_sseu@invalid-args: > - shard-tglb: NOTRUN -> [SKIP][11] ([i915#280]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb8/igt@gem_ctx_sseu@invalid-args.html > > * igt@gem_exec_balancer@parallel-bb-first: > - shard-iclb: [PASS][12] -> [SKIP][13] ([i915#4525]) +1 similar issue > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@gem_exec_balancer@parallel-bb-first.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html > > * igt@gem_exec_balancer@parallel-contexts: > - shard-iclb: NOTRUN -> [SKIP][14] ([i915#4525]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@gem_exec_balancer@parallel-contexts.html > > * igt@gem_exec_fair@basic-pace-solo@rcs0: > - shard-apl: [PASS][15] -> [FAIL][16] ([i915#2842]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html > > * igt@gem_exec_fair@basic-pace@vcs0: > - shard-glk: [PASS][17] -> [FAIL][18] ([i915#2842]) +2 similar issues > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk8/igt@gem_exec_fair@basic-pace@vcs0.html > > * igt@gem_exec_fair@basic-pace@vcs1: > - shard-iclb: NOTRUN -> [FAIL][19] ([i915#2842]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html > > * igt@gem_exec_schedule@preempt-user: > - shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271]) +22 similar issues > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb2/igt@gem_exec_schedule@preempt-user.html > > * igt@gem_lmem_swapping@heavy-verify-multi-ccs: > - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613]) +1 similar issue > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html > > * igt@gem_pwrite@basic-exhaustion: > - shard-apl: NOTRUN -> [WARN][22] ([i915#2658]) > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@gem_pwrite@basic-exhaustion.html > > * igt@gem_userptr_blits@readonly-unsync: > - shard-iclb: NOTRUN -> [SKIP][23] ([i915#3297]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb8/igt@gem_userptr_blits@readonly-unsync.html > - shard-tglb: NOTRUN -> [SKIP][24] ([i915#3297]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb6/igt@gem_userptr_blits@readonly-unsync.html > > * igt@gen9_exec_parse@allowed-single: > - shard-glk: [PASS][25] -> [DMESG-WARN][26] ([i915#5566] / [i915#716]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk1/igt@gen9_exec_parse@allowed-single.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk5/igt@gen9_exec_parse@allowed-single.html > > * igt@i915_module_load@resize-bar: > - shard-iclb: NOTRUN -> [SKIP][27] ([i915#6412]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@i915_module_load@resize-bar.html > - shard-tglb: NOTRUN -> [SKIP][28] ([i915#6412]) > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb2/igt@i915_module_load@resize-bar.html > > * igt@i915_pm_rps@engine-order: > - shard-apl: [PASS][29] -> [FAIL][30] ([i915#6537]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl7/igt@i915_pm_rps@engine-order.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl3/igt@i915_pm_rps@engine-order.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: > - shard-tglb: NOTRUN -> [SKIP][31] ([i915#5286]) > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html > - shard-iclb: NOTRUN -> [SKIP][32] ([i915#5286]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: > - shard-glk: [PASS][33] -> [DMESG-FAIL][34] ([i915#118] / [i915#5138]) > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk9/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html > > * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: > - shard-apl: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3886]) +2 similar issues > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: > - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#109278]) +2 similar issues > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html > - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3689] / [i915#6095]) > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: > - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3689] / [i915#3886]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html > - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk2/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html > - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#109278] / [i915#3886]) > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: > - shard-tglb: NOTRUN -> [SKIP][41] ([i915#3689]) +1 similar issue > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html > > * igt@kms_chamelium@dp-hpd-fast: > - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#109284] / [fdo#111827]) +1 similar issue > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@kms_chamelium@dp-hpd-fast.html > - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +1 similar issue > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk3/igt@kms_chamelium@dp-hpd-fast.html > > * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: > - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +1 similar issue > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html > - shard-snb: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +1 similar issue > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html > > * igt@kms_chamelium@vga-hpd-fast: > - shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +5 similar issues > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@kms_chamelium@vga-hpd-fast.html > > * igt@kms_content_protection@atomic@pipe-a-dp-1: > - shard-apl: NOTRUN -> [TIMEOUT][47] ([i915#7173]) > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl3/igt@kms_content_protection@atomic@pipe-a-dp-1.html > > * igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1: > - shard-iclb: [PASS][48] -> [DMESG-WARN][49] ([i915#4391]) > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb6/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1.html > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1.html > > * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: > - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#109274] / [fdo#111825]) > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html > - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109274]) > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html > > * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: > - shard-apl: [PASS][52] -> [FAIL][53] ([i915#79]) > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html > > * igt@kms_flip@flip-vs-suspend@b-edp1: > - shard-iclb: [PASS][54] -> [DMESG-WARN][55] ([i915#2867]) +1 similar issue > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb1/igt@kms_flip@flip-vs-suspend@b-edp1.html > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@kms_flip@flip-vs-suspend@b-edp1.html > > * igt@kms_flip@flip-vs-suspend@c-dp1: > - shard-apl: [PASS][56] -> [DMESG-WARN][57] ([i915#180]) +1 similar issue > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl3/igt@kms_flip@flip-vs-suspend@c-dp1.html > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html > > * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1: > - shard-glk: [PASS][58] -> [FAIL][59] ([i915#2122]) > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html > > * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: > - shard-iclb: NOTRUN -> [SKIP][60] ([i915#2587] / [i915#2672]) +1 similar issue > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> [SKIP][61] ([i915#3555]) > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> [SKIP][62] ([i915#2672]) +6 similar issues > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: > - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109280]) > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html > - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109280] / [fdo#111825]) > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: > - shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271]) +77 similar issues > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: > - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271]) +10 similar issues > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html > > * igt@kms_plane_lowres@tiling-yf: > - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#112054] / [i915#5288]) > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb3/igt@kms_plane_lowres@tiling-yf.html > > * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: > - shard-iclb: NOTRUN -> [SKIP][68] ([i915#3536]) +2 similar issues > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html > > * igt@kms_psr2_su@page_flip-nv12: > - shard-tglb: NOTRUN -> [SKIP][69] ([i915#7037]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb8/igt@kms_psr2_su@page_flip-nv12.html > - shard-glk: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#658]) > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk7/igt@kms_psr2_su@page_flip-nv12.html > - shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109642] / [fdo#111068] / [i915#658]) > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_psr2_su@page_flip-nv12.html > > * igt@kms_psr2_su@page_flip-xrgb8888: > - shard-apl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) +2 similar issues > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl6/igt@kms_psr2_su@page_flip-xrgb8888.html > > * igt@kms_psr@psr2_sprite_blt: > - shard-iclb: [PASS][73] -> [SKIP][74] ([fdo#109441]) +1 similar issue > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html > > > #### Possible fixes #### > > * igt@api_intel_bb@object-reloc-keep-cache: > - {shard-rkl}: [SKIP][75] ([i915#3281]) -> [PASS][76] +7 similar issues > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html > > * igt@fbdev@info: > - {shard-rkl}: [SKIP][77] ([i915#2582]) -> [PASS][78] > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@fbdev@info.html > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-4/igt@fbdev@info.html > > * igt@gem_exec_balancer@parallel: > - shard-iclb: [SKIP][79] ([i915#4525]) -> [PASS][80] +1 similar issue > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb8/igt@gem_exec_balancer@parallel.html > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@gem_exec_balancer@parallel.html > > * igt@gem_exec_fair@basic-flow@rcs0: > - shard-tglb: [FAIL][81] ([i915#2842]) -> [PASS][82] > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html > > * igt@gem_exec_fair@basic-none-solo@rcs0: > - shard-apl: [FAIL][83] ([i915#2842]) -> [PASS][84] > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html > > * igt@gem_huc_copy@huc-copy: > - shard-tglb: [SKIP][85] ([i915#2190]) -> [PASS][86] > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb6/igt@gem_huc_copy@huc-copy.html > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@gem_huc_copy@huc-copy.html > > * igt@gem_partial_pwrite_pread@reads-display: > - {shard-rkl}: [SKIP][87] ([i915#3282]) -> [PASS][88] > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@gem_partial_pwrite_pread@reads-display.html > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-display.html > > * igt@gen9_exec_parse@allowed-single: > - shard-apl: [DMESG-WARN][89] ([i915#5566] / [i915#716]) -> [PASS][90] > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@gen9_exec_parse@allowed-single.html > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl6/igt@gen9_exec_parse@allowed-single.html > > * igt@gen9_exec_parse@basic-rejected: > - {shard-rkl}: [SKIP][91] ([i915#2527]) -> [PASS][92] > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@gen9_exec_parse@basic-rejected.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@gen9_exec_parse@basic-rejected.html > > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > - {shard-rkl}: [SKIP][93] ([i915#4098]) -> [PASS][94] > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > * igt@i915_pm_dc@dc5-psr: > - {shard-rkl}: [SKIP][95] ([i915#658]) -> [PASS][96] > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@i915_pm_dc@dc5-psr.html > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html > > * igt@i915_pm_dc@dc6-psr: > - shard-iclb: [FAIL][97] ([i915#3989] / [i915#454]) -> [PASS][98] > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb3/igt@i915_pm_dc@dc6-psr.html > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@i915_pm_dc@dc6-psr.html > > * igt@i915_pm_rpm@cursor: > - {shard-rkl}: [SKIP][99] ([i915#1849]) -> [PASS][100] > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@i915_pm_rpm@cursor.html > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@i915_pm_rpm@cursor.html > > * igt@i915_pm_rps@waitboost: > - {shard-rkl}: [FAIL][101] ([i915#7142]) -> [PASS][102] > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@i915_pm_rps@waitboost.html > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-2/igt@i915_pm_rps@waitboost.html > > * igt@i915_selftest@perf@engine_cs: > - shard-snb: [SKIP][103] ([fdo#109271]) -> [PASS][104] > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-snb5/igt@i915_selftest@perf@engine_cs.html > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb7/igt@i915_selftest@perf@engine_cs.html > > * igt@i915_suspend@fence-restore-tiled2untiled: > - shard-apl: [DMESG-WARN][105] ([i915#180]) -> [PASS][106] > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: > - shard-apl: [FAIL][107] ([i915#2521]) -> [PASS][108] > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: > - shard-iclb: [FAIL][109] ([i915#2521]) -> [PASS][110] > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html > > * igt@kms_big_fb@x-tiled-32bpp-rotate-0: > - {shard-rkl}: [SKIP][111] ([i915#1845] / [i915#4098]) -> [PASS][112] +17 similar issues > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: > - shard-glk: [DMESG-FAIL][113] ([i915#118] / [i915#5138]) -> [PASS][114] > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html > > * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: > - shard-apl: [FAIL][115] ([i915#79]) -> [PASS][116] > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html > > * igt@kms_frontbuffer_tracking@fbc-badstride: > - {shard-rkl}: [SKIP][117] ([i915#1849] / [i915#4098]) -> [PASS][118] +10 similar issues > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-badstride.html > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-badstride.html > > * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: > - {shard-rkl}: [SKIP][119] ([i915#1849] / [i915#3558]) -> [PASS][120] +1 similar issue > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1: > - shard-iclb: [SKIP][121] ([i915#5235]) -> [PASS][122] +2 similar issues > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html > > * igt@kms_psr@cursor_mmap_cpu: > - {shard-rkl}: [SKIP][123] ([i915#1072]) -> [PASS][124] > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@kms_psr@cursor_mmap_cpu.html > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html > > * igt@kms_psr@psr2_primary_mmap_cpu: > - shard-iclb: [SKIP][125] ([fdo#109441]) -> [PASS][126] > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html > > * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > - {shard-rkl}: [SKIP][127] ([i915#5461]) -> [PASS][128] > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html > - shard-iclb: [SKIP][129] ([i915#5519]) -> [PASS][130] > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html > > * igt@kms_universal_plane@cursor-fb-leak-pipe-a: > - {shard-rkl}: [SKIP][131] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][132] > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html > > * igt@perf@polling-small-buf: > - {shard-rkl}: [FAIL][133] ([i915#1722]) -> [PASS][134] > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@perf@polling-small-buf.html > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@perf@polling-small-buf.html > > * igt@perf_pmu@all-busy-idle-check-all: > - {shard-dg1}: [FAIL][135] ([i915#5234]) -> [PASS][136] > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html > > * igt@sysfs_timeslice_duration@timeout@vcs1: > - {shard-dg1}: [FAIL][137] ([i915#1755]) -> [PASS][138] +3 similar issues > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-dg1-19/igt@sysfs_timeslice_duration@timeout@vcs1.html > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-dg1-15/igt@sysfs_timeslice_duration@timeout@vcs1.html > > > #### Warnings #### > > * igt@gem_exec_balancer@parallel-ordering: > - shard-iclb: [FAIL][139] ([i915#6117]) -> [SKIP][140] ([i915#4525]) > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html > > * igt@gem_pread@exhaustion: > - shard-tglb: [INCOMPLETE][141] ([i915#7248]) -> [WARN][142] ([i915#2658]) +1 similar issue > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb5/igt@gem_pread@exhaustion.html > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb2/igt@gem_pread@exhaustion.html > > * igt@gem_pwrite@basic-exhaustion: > - shard-glk: [INCOMPLETE][143] ([i915#7248]) -> [WARN][144] ([i915#2658]) > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk1/igt@gem_pwrite@basic-exhaustion.html > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk9/igt@gem_pwrite@basic-exhaustion.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-apl: [SKIP][145] ([fdo#109271]) -> [FAIL][146] ([i915#4275]) > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@i915_pm_dc@dc9-dpms.html > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_rc6_residency@rc6-idle@bcs0: > - shard-iclb: [WARN][147] ([i915#2684]) -> [FAIL][148] ([i915#2684]) > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html > > * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: > - shard-iclb: [SKIP][149] ([i915#2920]) -> [SKIP][150] ([i915#658]) +1 similar issue > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html > > * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: > - shard-iclb: [SKIP][151] ([i915#658]) -> [SKIP][152] ([i915#2920]) > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html > > * igt@kms_psr2_sf@plane-move-sf-dmg-area: > - shard-iclb: [SKIP][153] ([fdo#111068] / [i915#658]) -> [SKIP][154] ([i915#2920]) > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html > > * igt@runner@aborted: > - shard-apl: ([FAIL][155], [FAIL][156], [FAIL][157], [FAIL][158]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162]) ([i915#180] / [i915#3002] / [i915#4312]) > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl7/igt@runner@aborted.html > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@runner@aborted.html > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl8/igt@runner@aborted.html > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@runner@aborted.html > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@runner@aborted.html > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@runner@aborted.html > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl3/igt@runner@aborted.html > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl6/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#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 > [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 > [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 > [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 > [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 > [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 > [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 > [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 > [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 > [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 > [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 > [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 > [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 > [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 > [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 > [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 > [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 > [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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 > [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 > [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 > [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 > [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 > [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 > [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 > [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 > [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 > [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 > [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [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#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 > [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 > [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 > [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 > [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 > [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 > [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 > [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 > [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 > [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 > [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 > [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 > [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 > [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 > [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 > [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 > [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 > [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7142]: https://gitlab.freedesktop.org/drm/intel/issues/7142 > [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 > [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 > [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 > [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7050 -> IGTPW_8081 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_12364: e8bcb44a50317c067823a983fa2badde97e41fdd @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8081: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/index.html > IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ 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_8081/index.html ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_device_scan: add filer card=all (rev4) 2022-11-10 12:38 [igt-dev] [PATCH i-g-t v4 0/2] lib/igt_device_scan: add filer card=all Kamil Konieczny ` (3 preceding siblings ...) 2022-11-10 17:05 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-10 22:33 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-11-10 22:33 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 42983 bytes --] == Series Details == Series: lib/igt_device_scan: add filer card=all (rev4) URL : https://patchwork.freedesktop.org/series/109824/ State : success == Summary == CI Bug Log - changes from CI_DRM_12364_full -> IGTPW_8081_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8081_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_invalid_mode@int-max-clock: - {shard-rkl}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-2/igt@kms_invalid_mode@int-max-clock.html Known issues ------------ Here are the changes found in IGTPW_8081_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@psr2: - shard-iclb: [PASS][2] -> [SKIP][3] ([i915#658]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@feature_discovery@psr2.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@feature_discovery@psr2.html * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][4] ([i915#4991]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb5/igt@gem_create@create-massive.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][5] ([i915#280]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb8/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@unwedge-stress: - shard-iclb: [PASS][6] -> [TIMEOUT][7] ([i915#3063]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@gem_eio@unwedge-stress.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-bb-first: - shard-iclb: [PASS][8] -> [SKIP][9] ([i915#4525]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@gem_exec_balancer@parallel-bb-first.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: NOTRUN -> [SKIP][10] ([i915#4525]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2842]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk8/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][15] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_schedule@preempt-user: - shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271]) +22 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb2/igt@gem_exec_schedule@preempt-user.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-apl: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#4613]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][18] ([i915#2658]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_userptr_blits@readonly-unsync: - shard-iclb: NOTRUN -> [SKIP][19] ([i915#3297]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb8/igt@gem_userptr_blits@readonly-unsync.html - shard-tglb: NOTRUN -> [SKIP][20] ([i915#3297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb6/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][21] -> [DMESG-WARN][22] ([i915#5566] / [i915#716]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk1/igt@gen9_exec_parse@allowed-single.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk5/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][23] ([i915#6412]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@i915_module_load@resize-bar.html - shard-tglb: NOTRUN -> [SKIP][24] ([i915#6412]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb2/igt@i915_module_load@resize-bar.html * igt@i915_pm_rps@engine-order: - shard-apl: [PASS][25] -> [FAIL][26] ([i915#6537]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl7/igt@i915_pm_rps@engine-order.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl3/igt@i915_pm_rps@engine-order.html * igt@kms_atomic_transition@modeset-transition@1x-outputs: - shard-tglb: [PASS][27] -> [INCOMPLETE][28] ([i915#7512]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb1/igt@kms_atomic_transition@modeset-transition@1x-outputs.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb8/igt@kms_atomic_transition@modeset-transition@1x-outputs.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][29] ([i915#5286]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][30] ([i915#5286]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-glk: [PASS][31] -> [DMESG-FAIL][32] ([i915#118] / [i915#5138]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk9/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3886]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109278]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html - shard-tglb: NOTRUN -> [SKIP][35] ([i915#3689] / [i915#6095]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk2/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][38] ([fdo#109278] / [i915#3886]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#3689]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_chamelium@dp-hpd-fast: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#109284] / [fdo#111827]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@kms_chamelium@dp-hpd-fast.html - shard-glk: NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk3/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109284] / [fdo#111827]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html - shard-snb: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium@vga-hpd-fast: - shard-apl: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +5 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@kms_chamelium@vga-hpd-fast.html * igt@kms_content_protection@atomic@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][45] ([i915#7173]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl3/igt@kms_content_protection@atomic@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1: - shard-iclb: [PASS][46] -> [DMESG-WARN][47] ([i915#4391]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb6/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-tglb: NOTRUN -> [SKIP][48] ([fdo#109274] / [fdo#111825]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109274]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][50] -> [FAIL][51] ([i915#79]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-iclb: [PASS][52] -> [DMESG-WARN][53] ([i915#2867]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb1/igt@kms_flip@flip-vs-suspend@b-edp1.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][54] -> [DMESG-WARN][55] ([i915#180]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl3/igt@kms_flip@flip-vs-suspend@c-dp1.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1: - shard-glk: [PASS][56] -> [FAIL][57] ([i915#2122]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][58] ([i915#2587] / [i915#2672]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][59] ([i915#3555]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][60] ([i915#2672]) +6 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109280]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html - shard-tglb: NOTRUN -> [SKIP][62] ([fdo#109280] / [fdo#111825]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-apl: NOTRUN -> [SKIP][63] ([fdo#109271]) +77 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271]) +10 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_plane_lowres@tiling-yf: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#112054] / [i915#5288]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#3536]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglb: NOTRUN -> [SKIP][67] ([i915#7037]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb8/igt@kms_psr2_su@page_flip-nv12.html - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk7/igt@kms_psr2_su@page_flip-nv12.html - shard-iclb: NOTRUN -> [SKIP][69] ([fdo#109642] / [fdo#111068] / [i915#658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-apl: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#658]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [PASS][71] -> [SKIP][72] ([fdo#109441]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-glk: [PASS][73] -> [FAIL][74] ([i915#5852]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk6/igt@kms_rotation_crc@sprite-rotation-270.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk8/igt@kms_rotation_crc@sprite-rotation-270.html #### Possible fixes #### * igt@api_intel_bb@object-reloc-keep-cache: - {shard-rkl}: [SKIP][75] ([i915#3281]) -> [PASS][76] +7 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@fbdev@info: - {shard-rkl}: [SKIP][77] ([i915#2582]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@fbdev@info.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-4/igt@fbdev@info.html * igt@gem_exec_balancer@parallel: - shard-iclb: [SKIP][79] ([i915#4525]) -> [PASS][80] +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb8/igt@gem_exec_balancer@parallel.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [FAIL][81] ([i915#2842]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][83] ([i915#2842]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][85] ([i915#2190]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb6/igt@gem_huc_copy@huc-copy.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb5/igt@gem_huc_copy@huc-copy.html * igt@gem_partial_pwrite_pread@reads-display: - {shard-rkl}: [SKIP][87] ([i915#3282]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@gem_partial_pwrite_pread@reads-display.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-display.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [DMESG-WARN][89] ([i915#5566] / [i915#716]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@gen9_exec_parse@allowed-single.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - {shard-rkl}: [SKIP][91] ([i915#2527]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@gen9_exec_parse@basic-rejected.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@gen9_exec_parse@basic-rejected.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - {shard-rkl}: [SKIP][93] ([i915#4098]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc5-psr: - {shard-rkl}: [SKIP][95] ([i915#658]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@i915_pm_dc@dc5-psr.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][97] ([i915#3989] / [i915#454]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb3/igt@i915_pm_dc@dc6-psr.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@cursor: - {shard-rkl}: [SKIP][99] ([i915#1849]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@i915_pm_rpm@cursor.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@i915_pm_rpm@cursor.html * igt@i915_pm_rps@waitboost: - {shard-rkl}: [FAIL][101] ([i915#7142]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@i915_pm_rps@waitboost.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-2/igt@i915_pm_rps@waitboost.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [SKIP][103] ([fdo#109271]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-snb5/igt@i915_selftest@perf@engine_cs.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-snb7/igt@i915_selftest@perf@engine_cs.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [DMESG-WARN][105] ([i915#180]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: - shard-apl: [FAIL][107] ([i915#2521]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-iclb: [FAIL][109] ([i915#2521]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - {shard-rkl}: [SKIP][111] ([i915#1845] / [i915#4098]) -> [PASS][112] +17 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-glk: [DMESG-FAIL][113] ([i915#118] / [i915#5138]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: - shard-apl: [FAIL][115] ([i915#79]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html * igt@kms_frontbuffer_tracking@fbc-badstride: - {shard-rkl}: [SKIP][117] ([i915#1849] / [i915#4098]) -> [PASS][118] +10 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-badstride.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-badstride.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - {shard-rkl}: [SKIP][119] ([i915#1849] / [i915#3558]) -> [PASS][120] +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][121] ([i915#5235]) -> [PASS][122] +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@cursor_mmap_cpu: - {shard-rkl}: [SKIP][123] ([i915#1072]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-4/igt@kms_psr@cursor_mmap_cpu.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][125] ([fdo#109441]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - {shard-rkl}: [SKIP][127] ([i915#5461]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-iclb: [SKIP][129] ([i915#5519]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - {shard-rkl}: [SKIP][131] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][133] ([i915#1722]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-rkl-1/igt@perf@polling-small-buf.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-rkl-5/igt@perf@polling-small-buf.html * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [FAIL][135] ([i915#5234]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html * igt@sysfs_timeslice_duration@timeout@vcs1: - {shard-dg1}: [FAIL][137] ([i915#1755]) -> [PASS][138] +3 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-dg1-19/igt@sysfs_timeslice_duration@timeout@vcs1.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-dg1-15/igt@sysfs_timeslice_duration@timeout@vcs1.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][139] ([i915#6117]) -> [SKIP][140] ([i915#4525]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pread@exhaustion: - shard-tglb: [INCOMPLETE][141] ([i915#7248]) -> [WARN][142] ([i915#2658]) +1 similar issue [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-tglb5/igt@gem_pread@exhaustion.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-tglb2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: [INCOMPLETE][143] ([i915#7248]) -> [WARN][144] ([i915#2658]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-glk1/igt@gem_pwrite@basic-exhaustion.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-glk9/igt@gem_pwrite@basic-exhaustion.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][145] ([fdo#109271]) -> [FAIL][146] ([i915#4275]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@i915_pm_dc@dc9-dpms.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-iclb: [WARN][147] ([i915#2684]) -> [FAIL][148] ([i915#2684]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-iclb: [SKIP][149] ([i915#2920]) -> [SKIP][150] ([i915#658]) +1 similar issue [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][151] ([i915#658]) -> [SKIP][152] ([i915#2920]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-iclb: [SKIP][153] ([fdo#111068] / [i915#658]) -> [SKIP][154] ([i915#2920]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][155], [FAIL][156], [FAIL][157], [FAIL][158]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162]) ([i915#180] / [i915#3002] / [i915#4312]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl7/igt@runner@aborted.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@runner@aborted.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl8/igt@runner@aborted.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12364/shard-apl6/igt@runner@aborted.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@runner@aborted.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl8/igt@runner@aborted.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl3/igt@runner@aborted.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/shard-apl6/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#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [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#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5852]: https://gitlab.freedesktop.org/drm/intel/issues/5852 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7142]: https://gitlab.freedesktop.org/drm/intel/issues/7142 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7512]: https://gitlab.freedesktop.org/drm/intel/issues/7512 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7050 -> IGTPW_8081 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12364: e8bcb44a50317c067823a983fa2badde97e41fdd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8081: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8081/index.html IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ 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_8081/index.html [-- Attachment #2: Type: text/html, Size: 45893 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-11-10 22:33 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-11-10 12:38 [igt-dev] [PATCH i-g-t v4 0/2] lib/igt_device_scan: add filer card=all Kamil Konieczny 2022-11-10 12:38 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/igt_device_scan: refactor filter adding Kamil Konieczny 2022-11-10 12:38 ` [igt-dev] [PATCH i-g-t v4 2/2] lib/igt_device_scan: add card=all filter selector Kamil Konieczny 2022-11-10 15:52 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_device_scan: add filer card=all (rev4) Patchwork 2022-11-10 17:05 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-10 19:36 ` Kamil Konieczny 2022-11-10 22:33 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox