* [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout
@ 2024-11-12 5:04 Pranay Samala
2024-11-12 5:04 ` [PATCH i-g-t v9 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Pranay Samala @ 2024-11-12 5:04 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, kunal1.joshi, swati2.sharma, sameer.lattannavar,
pranay.samala
In kms_chamelium_edid test, it iterates through all the mentioned edids.
But due to CI timing limitation, the test couldn't iterate through all
the edids on CI.
This patch series reduces the number of edids when run on CI to avoid
timeout. This is done by using an extended flag. Hence CI will only run
some of the edids and when this flag is used then test will iterate
through all the edids.
Also shuffles one of the redundant edid with the non-redundant one to
cover all configs.
Changes in v2: Included HAX patch for CI results (Kunal)
Changes in v3: Shuffling of one of the edids (Kunal)
Changes in v4: Merging 2 patches into 1 (Kunal)
CHanges in v5: Add a condition to check whether its INTEL's
driver or not (Kunal)
Include TODO to check whether an environment
variable is present in the CI (Kunal)
Changes in v6: Split the patches (Kamil)
Changes in v7: Add cc to the lines edited by someone (Kamil)
Changes in v8: Edit the condition and move TODO before that (Kunal)
Pranay Samala (3):
tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the
number of edid
HAX: Do not merge
lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one
lib/monitor_edids/hdmi_edids.h | 52 ++++++++++++------------
tests/chamelium/kms_chamelium_edid.c | 26 +++++++++++-
tests/intel-ci/fast-feedback.testlist | 2 +
tests/intel-ci/xe-fast-feedback.testlist | 2 +
4 files changed, 55 insertions(+), 27 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH i-g-t v9 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid 2024-11-12 5:04 [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala @ 2024-11-12 5:04 ` Pranay Samala 2024-11-12 5:12 ` Joshi, Kunal1 2024-11-12 5:04 ` [PATCH i-g-t v9 2/3] HAX: Do not merge Pranay Samala ` (6 subsequent siblings) 7 siblings, 1 reply; 11+ messages in thread From: Pranay Samala @ 2024-11-12 5:04 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, swati2.sharma, sameer.lattannavar, pranay.samala This test iterates on all the available edids of HDMI. Due to CI test timeut limitation, we are reducing the number of edids to execute to avoid result as timeout. Using extended flag to achieve this. The test will execute only 25 edids when this flag is not used as CI doesnt uses this flag. In local execution to execute on all edids, we have to give this flag at the runtime. Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/chamelium/kms_chamelium_edid.c | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/tests/chamelium/kms_chamelium_edid.c b/tests/chamelium/kms_chamelium_edid.c index 8438f5f15..5db8204d5 100644 --- a/tests/chamelium/kms_chamelium_edid.c +++ b/tests/chamelium/kms_chamelium_edid.c @@ -38,6 +38,7 @@ #include <string.h> #include <stdatomic.h> #include <xf86drmMode.h> +#include "drmtest.h" #include "config.h" #include "igt.h" @@ -121,7 +122,9 @@ * @suspend: suspend */ +#define CI_LIMIT 25 #define MODE_CLOCK_ACCURACY 0.05 /* 5% */ +static bool extended; static void get_connectors_link_status_failed(chamelium_data_t *data, bool *link_status_failed) @@ -269,9 +272,16 @@ static void edid_stress_resolution(chamelium_data_t *data, int i; struct chamelium *chamelium = data->chamelium; struct udev_monitor *mon = igt_watch_uevents(); + chamelium_reset_state(&data->display, data->chamelium, port, data->ports, data->port_count); + /* TODO: Make changes to check if we can get rid of extended flag and explore + * if there is environment variable in CI when executing with igt_runner + */ + + if (!extended && is_intel_device(data->drm_fd)) + edids_list_len = CI_LIMIT; for (i = 0; i < edids_list_len; ++i) { struct chamelium_edid *chamelium_edid; @@ -504,8 +514,22 @@ static void test_mode_timings(chamelium_data_t *data, } while (++i < count_modes); } +static int opt_handler(int opt, int opt_index, void *_data) +{ + switch (opt) { + case 'e': + extended = true; + break; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +const char *help_str = + " -e \tExtended tests.\n"; + IGT_TEST_DESCRIPTION("Testing EDID with a Chamelium board"); -igt_main +igt_main_args("e", NULL, help_str, opt_handler, NULL) { chamelium_data_t data; struct chamelium_port *port; -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v9 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid 2024-11-12 5:04 ` [PATCH i-g-t v9 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala @ 2024-11-12 5:12 ` Joshi, Kunal1 0 siblings, 0 replies; 11+ messages in thread From: Joshi, Kunal1 @ 2024-11-12 5:12 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: karthik.b.s, swati2.sharma, sameer.lattannavar On 12-11-2024 10:34, Pranay Samala wrote: > This test iterates on all the available edids of HDMI. > Due to CI test timeut limitation, we are reducing the > number of edids to execute to avoid result as timeout. > > Using extended flag to achieve this. The test will execute > only 25 edids when this flag is not used as CI doesnt uses > this flag. > In local execution to execute on all edids, we have to give > this flag at the runtime. > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t v9 2/3] HAX: Do not merge 2024-11-12 5:04 [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala 2024-11-12 5:04 ` [PATCH i-g-t v9 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala @ 2024-11-12 5:04 ` Pranay Samala 2024-11-12 5:04 ` [PATCH i-g-t v9 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one Pranay Samala ` (5 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Pranay Samala @ 2024-11-12 5:04 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, swati2.sharma, sameer.lattannavar, pranay.samala Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/intel-ci/fast-feedback.testlist | 2 ++ tests/intel-ci/xe-fast-feedback.testlist | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..7f54eda16 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -1,6 +1,8 @@ # Try to load the driver if it's not available yet. igt@i915_module_load@load +igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k + # Keep alphabetically sorted by default igt@core_auth@basic-auth igt@debugfs_test@read_all_entries diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index d9fb98aab..8b70164f6 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,6 +1,8 @@ # Should be the first test igt@xe_module_load@load +igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k + igt@fbdev@eof igt@fbdev@info igt@fbdev@nullptr -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t v9 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one 2024-11-12 5:04 [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala 2024-11-12 5:04 ` [PATCH i-g-t v9 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala 2024-11-12 5:04 ` [PATCH i-g-t v9 2/3] HAX: Do not merge Pranay Samala @ 2024-11-12 5:04 ` Pranay Samala 2024-11-12 5:11 ` Joshi, Kunal1 2024-11-12 5:52 ` ✓ Fi.CI.BAT: success for tests/chamelium: Reduce edid count to avoid timeout (rev7) Patchwork ` (4 subsequent siblings) 7 siblings, 1 reply; 11+ messages in thread From: Pranay Samala @ 2024-11-12 5:04 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, swati2.sharma, sameer.lattannavar, pranay.samala The EDID for the 1920x1200 at 59.950 Hz mode is already included. It will be swapped with the EDID for the 2560x1600 at 59.972 Hz mode to ensure full coverage of all EDIDs. Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- lib/monitor_edids/hdmi_edids.h | 52 +++++++++++++++++----------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h index 9d75cfa98..f6cfe82ff 100644 --- a/lib/monitor_edids/hdmi_edids.h +++ b/lib/monitor_edids/hdmi_edids.h @@ -250,23 +250,15 @@ monitor_edid HDMI_EDIDS_NON_4K[] = { "34353732323059575320000000fc0044" "454c4c20323430375746500a000000fd" "00384c1e5311000a2020202020200068" }, - { .name = "DEL_61462_DELL_U2410_HDMI", - .edid = "00ffffffffffff0010ac16f04c4e4332" - "1f13010380342078ea1ec5ae4f34b126" - "0e5054a54b008180a940d100714f0101" - "010101010101283c80a070b023403020" - "360006442100001a000000ff00463532" - "354d39375332434e4c0a000000fc0044" - "454c4c2055323431300a2020000000fd" - "00384c1e5111000a202020202020012e" - "020329f15090050403020716011f1213" - "14201511062309070767030c00100038" - "2d83010000e3050301023a801871382d" - "40582c450006442100001e011d801871" - "1c1620582c250006442100009e011d00" - "7251d01e206e28550006442100001e8c" - "0ad08a20e02d10103e96000644210000" - "1800000000000000000000000000003e" }, + { .name = "HWP_12442_HP_Z30i_HDMI", + .edid = "00ffffffffffff0022f09a3001010101" + "06180103804028782a1df5ae4f35b325" + "0d5054a10800d100b30095008100a940" + "8180d1c081c0e26800a0a0402e603020" + "360081902100001a000000fd00324618" + "621b000a202020202020000000fc0048" + "50205a3330690a2020202020000000ff" + "00434e34343036304742530a20200078" }, { .name = "DTV_0_DTV_HDMI", .edid = "00ffffffffffff001296000001010101" "0c180103803a20780a0dc9a057479827" @@ -507,15 +499,23 @@ monitor_edid HDMI_EDIDS_NON_4K[] = { "442100001e011d00bc52d01e20b82855" "4006442100001e8c0ad08a20e02d1010" "3e9600064421000018000000000000c1" }, - { .name = "HWP_12442_HP_Z30i_HDMI", - .edid = "00ffffffffffff0022f09a3001010101" - "06180103804028782a1df5ae4f35b325" - "0d5054a10800d100b30095008100a940" - "8180d1c081c0e26800a0a0402e603020" - "360081902100001a000000fd00324618" - "621b000a202020202020000000fc0048" - "50205a3330690a2020202020000000ff" - "00434e34343036304742530a20200078" }, + { .name = "DEL_61462_DELL_U2410_HDMI", + .edid = "00ffffffffffff0010ac16f04c4e4332" + "1f13010380342078ea1ec5ae4f34b126" + "0e5054a54b008180a940d100714f0101" + "010101010101283c80a070b023403020" + "360006442100001a000000ff00463532" + "354d39375332434e4c0a000000fc0044" + "454c4c2055323431300a2020000000fd" + "00384c1e5111000a202020202020012e" + "020329f15090050403020716011f1213" + "14201511062309070767030c00100038" + "2d83010000e3050301023a801871382d" + "40582c450006442100001e011d801871" + "1c1620582c250006442100009e011d00" + "7251d01e206e28550006442100001e8c" + "0ad08a20e02d10103e96000644210000" + "1800000000000000000000000000003e" }, { .name = "HWP_12447_HP_Z24i_HDMI", .edid = "00ffffffffffff0022f09f3001010101" "1a180103803420782e3c50a7544da226" -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v9 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one 2024-11-12 5:04 ` [PATCH i-g-t v9 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one Pranay Samala @ 2024-11-12 5:11 ` Joshi, Kunal1 0 siblings, 0 replies; 11+ messages in thread From: Joshi, Kunal1 @ 2024-11-12 5:11 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: karthik.b.s, swati2.sharma, sameer.lattannavar On 12-11-2024 10:34, Pranay Samala wrote: > The EDID for the 1920x1200 at 59.950 Hz mode is already included. > It will be swapped with the EDID for the 2560x1600 at 59.972 Hz mode > to ensure full coverage of all EDIDs. > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for tests/chamelium: Reduce edid count to avoid timeout (rev7) 2024-11-12 5:04 [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala ` (2 preceding siblings ...) 2024-11-12 5:04 ` [PATCH i-g-t v9 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one Pranay Samala @ 2024-11-12 5:52 ` Patchwork 2024-11-12 6:05 ` ✓ CI.xeBAT: " Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-11-12 5:52 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10780 bytes --] == Series Details == Series: tests/chamelium: Reduce edid count to avoid timeout (rev7) URL : https://patchwork.freedesktop.org/series/140426/ State : success == Summary == CI Bug Log - changes from IGT_8103 -> IGTPW_12076 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12076 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [ABORT][2] ([i915#12061]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8103/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][3] -> [ABORT][4] ([i915#12061]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8103/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - bat-apl-1: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-apl-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-rplp-1: NOTRUN -> [SKIP][6] ([i915#7828]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-rplp-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-rkl-11600: NOTRUN -> [SKIP][7] ([i915#7828]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-rkl-11600/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#7828]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-dg1-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#7828]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-dg2-9/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-kbl-x1275: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-kbl-x1275/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-11: NOTRUN -> [SKIP][11] ([i915#7828]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-adlp-11/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-rpls-4: NOTRUN -> [SKIP][12] ([i915#7828]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-rpls-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-cfl-8109u: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-cfl-8109u/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-kbl-7567u: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-kbl-7567u/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-kbl-8809g: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-kbl-8809g/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-ilk-650: NOTRUN -> [SKIP][16] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-ilk-650/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-tgl-1115g4: NOTRUN -> [SKIP][17] ([i915#7828]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-tgl-1115g4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-cfl-guc: NOTRUN -> [SKIP][18] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-cfl-guc/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-mtlp-6: NOTRUN -> [SKIP][19] ([i915#7828] / [i915#9792]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-mtlp-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-skl-6600u: NOTRUN -> [SKIP][20] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-skl-6600u/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg1-6: NOTRUN -> [SKIP][21] ([i915#12311]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-dg1-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-twl-2: NOTRUN -> [SKIP][22] ([i915#11151]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-twl-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-cfl-8700k: NOTRUN -> [SKIP][23] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-cfl-8700k/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-blb-e6850: NOTRUN -> [SKIP][24] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-blb-e6850/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-14: NOTRUN -> [SKIP][25] ([i915#7828]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-dg2-14/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-bsw-nick: NOTRUN -> [SKIP][26] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-bsw-nick/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-kbl-2: NOTRUN -> [SKIP][27] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-kbl-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-6: NOTRUN -> [SKIP][28] ([i915#7828]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-adlp-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-atsm-1: NOTRUN -> [SKIP][29] ([i915#6078]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-atsm-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-jsl-3: NOTRUN -> [SKIP][30] ([i915#7828]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-jsl-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-11: NOTRUN -> [SKIP][31] ([i915#7828]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-dg2-11/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-hsw-4770: NOTRUN -> [SKIP][32] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-hsw-4770/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-ivb-3770: NOTRUN -> [SKIP][33] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-ivb-3770/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-mtlp-8: NOTRUN -> [SKIP][34] ([i915#7828]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-mtlp-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-elk-e7500: NOTRUN -> [SKIP][35] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-elk-e7500/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-8: NOTRUN -> [SKIP][36] ([i915#7828]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-dg2-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-kbl-guc: NOTRUN -> [SKIP][37] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-kbl-guc/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlm-1: NOTRUN -> [SKIP][38] ([i915#7828] / [i915#9900]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-adlm-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-jsl-1: NOTRUN -> [SKIP][39] ([i915#7828]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-jsl-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-pnv-d510: NOTRUN -> [SKIP][40] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-pnv-d510/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-glk-j4005: NOTRUN -> [SKIP][41] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/fi-glk-j4005/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-9: NOTRUN -> [SKIP][42] ([i915#7828]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-adlp-9/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adls-6: NOTRUN -> [SKIP][43] ([i915#7828]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-adls-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-twl-1: NOTRUN -> [SKIP][44] ([i915#11151]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-twl-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html #### Possible fixes #### * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [SKIP][45] ([i915#9197]) -> [PASS][46] +2 other tests pass [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8103/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8103 -> IGTPW_12076 * Linux: CI_DRM_15674 -> CI_DRM_15675 CI-20190529: 20190529 CI_DRM_15674: 6d0fd3fb958e77717cedf35f49325c7c0dfa11c9 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15675: c8443e3741e360704258967feb87d253d8f0864a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12076: 20710e75ec985749dae02b6b492eadca67d75a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8103: 43994179978d4a120226f253cb95209d59639ef9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/index.html [-- Attachment #2: Type: text/html, Size: 13046 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.xeBAT: success for tests/chamelium: Reduce edid count to avoid timeout (rev7) 2024-11-12 5:04 [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala ` (3 preceding siblings ...) 2024-11-12 5:52 ` ✓ Fi.CI.BAT: success for tests/chamelium: Reduce edid count to avoid timeout (rev7) Patchwork @ 2024-11-12 6:05 ` Patchwork 2024-11-12 7:58 ` ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-11-12 6:05 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4609 bytes --] == Series Details == Series: tests/chamelium: Reduce edid count to avoid timeout (rev7) URL : https://patchwork.freedesktop.org/series/140426/ State : success == Summary == CI Bug Log - changes from XEIGT_8103_BAT -> XEIGTPW_12076_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12076_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - bat-pvc-2: NOTRUN -> [SKIP][1] ([Intel XE#1024]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-pvc-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2252]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-bmg-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-bmg-1: NOTRUN -> [SKIP][3] ([Intel XE#2252]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-bmg-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#373]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-adlp-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#373]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-dg2-oem2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-atsm-2: NOTRUN -> [SKIP][6] ([Intel XE#1024]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-atsm-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-vf: NOTRUN -> [SKIP][7] ([Intel XE#2463]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-adlp-vf/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#288]) +32 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [PASS][9] -> [INCOMPLETE][10] ([Intel XE#2874]) +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#2229]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-dg2-oem2: [INCOMPLETE][12] ([Intel XE#2874]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 Build changes ------------- * IGT: IGT_8103 -> IGTPW_12076 * Linux: xe-2206-6d0fd3fb958e77717cedf35f49325c7c0dfa11c9 -> xe-2207-c8443e3741e360704258967feb87d253d8f0864a IGTPW_12076: 20710e75ec985749dae02b6b492eadca67d75a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8103: 43994179978d4a120226f253cb95209d59639ef9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2206-6d0fd3fb958e77717cedf35f49325c7c0dfa11c9: 6d0fd3fb958e77717cedf35f49325c7c0dfa11c9 xe-2207-c8443e3741e360704258967feb87d253d8f0864a: c8443e3741e360704258967feb87d253d8f0864a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12076/index.html [-- Attachment #2: Type: text/html, Size: 5585 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/chamelium: Reduce edid count to avoid timeout (rev7) 2024-11-12 5:04 [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala ` (4 preceding siblings ...) 2024-11-12 6:05 ` ✓ CI.xeBAT: " Patchwork @ 2024-11-12 7:58 ` Patchwork 2024-11-13 12:15 ` ✓ Fi.CI.IGT: success " Patchwork 2024-11-13 12:21 ` Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-11-12 7:58 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100278 bytes --] == Series Details == Series: tests/chamelium: Reduce edid count to avoid timeout (rev7) URL : https://patchwork.freedesktop.org/series/140426/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15675_full -> IGTPW_12076_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12076_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12076_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_12076/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-snb-0 Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12076_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1: - shard-mtlp: [PASS][1] -> [FAIL][2] +3 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-edp-1: - shard-mtlp: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-edp-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-edp-1.html New tests --------- New tests have been introduced between CI_DRM_15675_full and IGTPW_12076_full: ### New IGT tests (20) ### * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [7.95] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [6.69] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [6.98] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [7.10] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_12076_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@api_intel_bb@object-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#9318]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +24 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +12 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][16] -> [INCOMPLETE][17] ([i915#7297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_exec_balancer@bonded-semaphore.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4036]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#6334]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-13/igt@gem_exec_fair@basic-deadline.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4473] / [i915#4771]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-vip: - shard-tglu: NOTRUN -> [FAIL][33] ([i915#2842]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][34] ([i915#2842]) +4 other tests fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu-1: NOTRUN -> [FAIL][35] ([i915#2842]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +8 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts-chain.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [PASS][44] -> [ABORT][45] ([i915#7975] / [i915#8213]) +1 other test abort [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#12193]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_mmap@short-mmap: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +12 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@coherency: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@gem_mmap_wc@coherency.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@gem_pxp@display-protected-crc.html - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4270]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_readwrite@beyond-eob.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@write-bad-handle: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#8411]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4885]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4885]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_tiled_pread_basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#3323]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-13/igt@gem_userptr_blits@dmabuf-unsync.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3297]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3281] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4958]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@reload: - shard-snb: [PASS][92] -> [ABORT][93] ([i915#12450]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@i915_module_load@reload.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu-1: NOTRUN -> [ABORT][94] ([i915#9820]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#8399]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][98] -> [FAIL][99] ([i915#12548] / [i915#3591]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#11681]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#6245]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-5/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5723]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][103] ([i915#5723]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][104] ([i915#7443]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6645]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4212]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4212]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#8709]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#1769] / [i915#3555]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][111] -> [FAIL][112] ([i915#11808]) +1 other test fail [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][113] +9 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#5286]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-tglu: NOTRUN -> [SKIP][116] ([i915#5286]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#3638]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3638]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-mtlp: [PASS][120] -> [DMESG-WARN][121] ([i915#1982]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +13 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6187]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][125] +9 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][126] +10 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6095]) +34 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#6095]) +131 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#6095]) +66 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#12313]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#12313]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-mtlp: [PASS][133] -> [FAIL][134] ([i915#12469]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#12313]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#6095]) +39 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +39 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#6095]) +22 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +167 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#12313]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#12313]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#11616] / [i915#7213]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7213]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4087]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +10 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#7828]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-6/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#7828]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#7828]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#4423] / [i915#7116] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3116] / [i915#3299]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3299]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3116]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-snb: NOTRUN -> [SKIP][158] +15 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3299]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3299]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#9424]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#9433]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#7116] / [i915#7118]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +6 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#11453] / [i915#3359]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#11453] / [i915#3359]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#11453] / [i915#3359]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x128: - shard-dg1: [PASS][172] -> [DMESG-WARN][173] ([i915#4423]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3555]) +7 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#11453] / [i915#3359]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#4103]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4213]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#9809]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-snb: [PASS][180] -> [SKIP][181] +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][182] +22 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9067]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#4103] / [i915#4213]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-tglu: NOTRUN -> [SKIP][185] ([i915#4103]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#9833]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8827]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#1769] / [i915#3555] / [i915#3804]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3804]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3555]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#1257]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#1257]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#12402]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_dsc@dsc-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3840]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3469]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3469]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3469]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#4854]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#1839]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#1839]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#1839]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1839]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#9337]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3637] / [i915#3966]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +6 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3637]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#8381]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3637]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#9934]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3637]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][216] -> [FAIL][217] ([i915#2122]) +1 other test fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1: - shard-rkl: [PASS][218] -> [FAIL][219] ([i915#2122]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-mtlp: [PASS][220] -> [FAIL][221] ([i915#11989] / [i915#2122]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [PASS][222] -> [FAIL][223] ([i915#2122]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][224] -> [FAIL][225] ([i915#2122]) +3 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-dp4: - shard-dg2: NOTRUN -> [FAIL][226] ([i915#2122]) +3 other tests fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#2672]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555] / [i915#4423]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672] / [i915#4423]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555] / [i915#5190]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#2587] / [i915#2672] / [i915#3555]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672] / [i915#3555]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2672]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8813]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#8810]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8708]) +24 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#5354]) +54 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#8708]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#1825]) +12 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#3458]) +7 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][248] +57 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#10433] / [i915#3458]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3023]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#8708]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#1825]) +13 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3458]) +27 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][254] +47 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#10656]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_joiner@basic-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#10656]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#12339]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#12339]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#12339]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#4816]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#6301]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8821]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8821]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8821]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#6953]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#12247]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - shard-dg2: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#9423]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#12247]) +7 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#12247]) +10 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#12247] / [i915#6953]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#12247]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#12247]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#3555] / [i915#9423]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#12504] / [i915#3555]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#3555]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#12504]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#12247]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#9812]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#12343]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#9812]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#9685]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#3828]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#9340]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#8430]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_pm_lpsp@screens-disabled.html - shard-rkl: NOTRUN -> [SKIP][290] ([i915#8430]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#8430]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][292] ([i915#8430]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8430]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9519]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg2: [PASS][295] -> [FAIL][296] ([i915#8717]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-3/igt@kms_pm_rpm@i2c.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][297] -> [SKIP][298] ([i915#9519]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-tglu: NOTRUN -> [SKIP][299] ([i915#9519]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][300] -> [SKIP][301] ([i915#9519]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9519]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#6524]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#6524] / [i915#6805]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_prime@basic-modeset-hybrid.html - shard-rkl: NOTRUN -> [SKIP][305] ([i915#6524]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#9808]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#11520]) +9 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#11520]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#11520]) +3 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#11520]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#11520]) +6 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9683]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9683]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#9688]) +8 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +23 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +10 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +10 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9732]) +12 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9732]) +11 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#9685]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#9685]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#12755]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#5289]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12755]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][325] ([i915#12231]) +1 other test abort [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][326] ([i915#12231]) +1 other test abort [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][327] ([IGT#2]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#8623]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#9906]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][330] ([i915#9906]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#9906]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9906]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#8808] / [i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#3555]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#8808]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#11920]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#3555] / [i915#9906]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#2437] / [i915#9412]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#2437] / [i915#9412]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#2437] / [i915#9412]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#2437] / [i915#9412]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#2433]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [PASS][345] -> [FAIL][346] ([i915#4349]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@ccs0.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#8850]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@most-busy-idle-check-all: - shard-mtlp: [PASS][348] -> [FAIL][349] ([i915#11943] / [i915#12515]) +1 other test fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#8516]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@perf_pmu@rc6-all-gts.html - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#8516]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][352] ([i915#9351]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][353] ([i915#9351]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#3708] / [i915#4077]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#3291] / [i915#3708]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#3291] / [i915#3708]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#3708] / [i915#4077]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#3708] / [i915#4077]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#3708]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#9917]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9917]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9917]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-mtlp: NOTRUN -> [FAIL][363] ([i915#12564] / [i915#9781]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-dg2: NOTRUN -> [FAIL][364] ([i915#12564] / [i915#9781]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][365] ([i915#12564] / [i915#9781]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-3/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#4818]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@in-flight-internal-1us: - shard-dg1: [DMESG-WARN][367] ([i915#4423]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-17/igt@gem_eio@in-flight-internal-1us.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@gem_eio@in-flight-internal-1us.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [WARN][369] ([i915#2681]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [FAIL][371] ([i915#12548] / [i915#3591]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2: [INCOMPLETE][373] -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-suspend: - shard-tglu: [ABORT][375] ([i915#10159]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-9/igt@kms_cursor_crc@cursor-suspend.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-tglu: [ABORT][377] -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][379] ([i915#2346]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_fbcon_fbt@psr-suspend: - shard-mtlp: [INCOMPLETE][381] -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-4/igt@kms_fbcon_fbt@psr-suspend.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][383] ([i915#2122]) -> [PASS][384] +7 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb2/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a1: - shard-rkl: [FAIL][385] ([i915#11832]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a1.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2: [FAIL][387] ([i915#79]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg1: [INCOMPLETE][389] ([i915#4839] / [i915#6113]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-19/igt@kms_flip@flip-vs-suspend.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: [INCOMPLETE][391] ([i915#4839]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][393] ([i915#6880]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-snb: [SKIP][395] -> [PASS][396] +2 other tests pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][397] ([i915#9519]) -> [PASS][398] +2 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_setmode@basic: - shard-mtlp: [FAIL][399] ([i915#5465]) -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-8/igt@kms_setmode@basic.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@kms_setmode@basic.html #### Warnings #### * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg1: [SKIP][401] ([i915#3638]) -> [SKIP][402] ([i915#3638] / [i915#4423]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-18/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_content_protection@type1: - shard-snb: [SKIP][403] -> [INCOMPLETE][404] ([i915#8816]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb7/igt@kms_content_protection@type1.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb4/igt@kms_content_protection@type1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][405] -> [SKIP][406] ([i915#9934]) +27 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][407] ([i915#12713]) -> [SKIP][408] ([i915#1187] / [i915#12713]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: [SKIP][409] ([i915#3555] / [i915#4423]) -> [SKIP][410] ([i915#3555]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-14/igt@kms_plane_multiple@tiling-yf.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][411] ([i915#9340]) -> [SKIP][412] ([i915#3828]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_setmode@basic: - shard-snb: [FAIL][413] ([i915#12722] / [i915#5465]) -> [FAIL][414] ([i915#5465]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb6/igt@kms_setmode@basic.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb2/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [FAIL][415] ([i915#12722]) -> [FAIL][416] ([i915#5465]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][417] ([i915#7484]) -> [FAIL][418] ([i915#9100]) +1 other test fail [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/- == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/index.html [-- Attachment #2: Type: text/html, Size: 110687 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.IGT: success for tests/chamelium: Reduce edid count to avoid timeout (rev7) 2024-11-12 5:04 [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala ` (5 preceding siblings ...) 2024-11-12 7:58 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-11-13 12:15 ` Patchwork 2024-11-13 12:21 ` Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-11-13 12:15 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100278 bytes --] == Series Details == Series: tests/chamelium: Reduce edid count to avoid timeout (rev7) URL : https://patchwork.freedesktop.org/series/140426/ State : success == Summary == CI Bug Log - changes from CI_DRM_15675_full -> IGTPW_12076_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-snb-0 Missing (1): shard-glk Known issues ------------ Here are the changes found in IGTPW_12076_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@api_intel_bb@object-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +24 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +12 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#7297]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#6335]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#4812]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_exec_balancer@bonded-semaphore.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4036]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#6334]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-13/igt@gem_exec_fair@basic-deadline.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-vip: - shard-tglu: NOTRUN -> [FAIL][29] ([i915#2842]) +1 other test fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][30] ([i915#2842]) +4 other tests fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu-1: NOTRUN -> [FAIL][31] ([i915#2842]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +7 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts-chain.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [PASS][40] -> [ABORT][41] ([i915#7975] / [i915#8213]) +1 other test abort [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#12193]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_mmap@short-mmap: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +12 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@coherency: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@gem_mmap_wc@coherency.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@gem_pxp@display-protected-crc.html - shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4270]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_readwrite@beyond-eob.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@write-bad-handle: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#8411]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4885]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4885]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_tiled_pread_basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4079]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#3323]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-13/igt@gem_userptr_blits@dmabuf-unsync.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3297]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3281] / [i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4958]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@reload: - shard-snb: [PASS][88] -> [ABORT][89] ([i915#12450]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@i915_module_load@reload.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu-1: NOTRUN -> [ABORT][90] ([i915#9820]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#8399]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#8399]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][94] -> [FAIL][95] ([i915#12548] / [i915#3591]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#6245]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-5/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#5723]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][99] ([i915#5723]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][100] ([i915#7443]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6645]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4212]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#8709]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][107] -> [FAIL][108] ([i915#11808]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][109] +9 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#5286]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#5286]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#3638]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-mtlp: [PASS][116] -> [DMESG-WARN][117] ([i915#1982]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +13 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6187]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#5190]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][121] +9 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][122] +10 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +34 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +131 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#6095]) +68 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#12313]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#12313]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-mtlp: [PASS][129] -> [FAIL][130] ([i915#12469]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1: - shard-mtlp: [PASS][131] -> [FAIL][132] ([i915#12798]) +3 other tests fail [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#12313]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +39 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-edp-1: - shard-mtlp: [PASS][135] -> [INCOMPLETE][136] ([i915#12796]) +1 other test incomplete [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-edp-1.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +39 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#6095]) +22 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +167 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#12313]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#12313]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#11616] / [i915#7213]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7213]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4087]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +10 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#7828]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-6/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#7828]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#7828]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#4423] / [i915#7116] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3116] / [i915#3299]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3299]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3116]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-snb: NOTRUN -> [SKIP][158] +15 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3299]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3299]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#9424]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#9433]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#7116] / [i915#7118]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +6 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#11453] / [i915#3359]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#11453] / [i915#3359]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#11453] / [i915#3359]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x128: - shard-dg1: [PASS][172] -> [DMESG-WARN][173] ([i915#4423]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3555]) +7 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#11453] / [i915#3359]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#4103]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4213]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#9809]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-snb: [PASS][180] -> [SKIP][181] +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][182] +22 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9067]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#4103] / [i915#4213]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-tglu: NOTRUN -> [SKIP][185] ([i915#4103]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#9833]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8827]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#1769] / [i915#3555] / [i915#3804]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3804]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3555]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#1257]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#1257]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#12402]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_dsc@dsc-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3840]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3469]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3469]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3469]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#4854]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#1839]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#1839]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#1839]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1839]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#9337]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3637] / [i915#3966]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +6 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3637]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#8381]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3637]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#9934]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3637]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][216] -> [FAIL][217] ([i915#2122]) +1 other test fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1: - shard-rkl: [PASS][218] -> [FAIL][219] ([i915#2122]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-mtlp: [PASS][220] -> [FAIL][221] ([i915#11989] / [i915#2122]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [PASS][222] -> [FAIL][223] ([i915#2122]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][224] -> [FAIL][225] ([i915#2122]) +3 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-dp4: - shard-dg2: NOTRUN -> [FAIL][226] ([i915#2122]) +3 other tests fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#2672]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555] / [i915#4423]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672] / [i915#4423]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555] / [i915#5190]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#2587] / [i915#2672] / [i915#3555]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672] / [i915#3555]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2672]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8813]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#8810]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8708]) +24 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#5354]) +54 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#8708]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#1825]) +12 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#3458]) +7 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][248] +57 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#10433] / [i915#3458]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3023]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#8708]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#1825]) +13 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3458]) +27 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][254] +47 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#10656]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_joiner@basic-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#10656]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#12339]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#12339]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#12339]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#4816]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#6301]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8821]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8821]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8821]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#6953]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#12247]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - shard-dg2: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#9423]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#12247]) +7 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#12247]) +10 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#12247] / [i915#6953]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#12247]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#12247]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#3555] / [i915#9423]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#12504] / [i915#3555]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#3555]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#12504]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#12247]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#9812]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#12343]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#9812]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#9685]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#3828]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#9340]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#8430]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_pm_lpsp@screens-disabled.html - shard-rkl: NOTRUN -> [SKIP][290] ([i915#8430]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#8430]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][292] ([i915#8430]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8430]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9519]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg2: [PASS][295] -> [FAIL][296] ([i915#8717]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-3/igt@kms_pm_rpm@i2c.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][297] -> [SKIP][298] ([i915#9519]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-tglu: NOTRUN -> [SKIP][299] ([i915#9519]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][300] -> [SKIP][301] ([i915#9519]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9519]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#6524]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#6524] / [i915#6805]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_prime@basic-modeset-hybrid.html - shard-rkl: NOTRUN -> [SKIP][305] ([i915#6524]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#9808]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#11520]) +9 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#11520]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#11520]) +3 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#11520]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#11520]) +6 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9683]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9683]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#9688]) +8 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +23 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +10 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +10 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9732]) +12 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9732]) +11 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#9685]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#9685]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#12755]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#5289]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12755]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][325] ([i915#12231]) +1 other test abort [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][326] ([i915#12231]) +1 other test abort [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][327] ([IGT#2]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#8623]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#9906]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][330] ([i915#9906]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#9906]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9906]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#8808] / [i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#3555]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#8808]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#11920]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#3555] / [i915#9906]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#2437] / [i915#9412]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#2437] / [i915#9412]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#2437] / [i915#9412]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#2437] / [i915#9412]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#2433]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [PASS][345] -> [FAIL][346] ([i915#4349]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@ccs0.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#8850]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@most-busy-idle-check-all: - shard-mtlp: [PASS][348] -> [FAIL][349] ([i915#11943] / [i915#12515]) +1 other test fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#8516]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@perf_pmu@rc6-all-gts.html - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#8516]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][352] ([i915#9351]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][353] ([i915#9351]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#3708] / [i915#4077]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#3291] / [i915#3708]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#3291] / [i915#3708]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#3708] / [i915#4077]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#3708] / [i915#4077]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#3708]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#9917]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9917]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9917]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-mtlp: NOTRUN -> [FAIL][363] ([i915#12564] / [i915#9781]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-dg2: NOTRUN -> [FAIL][364] ([i915#12564] / [i915#9781]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][365] ([i915#12564] / [i915#9781]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-3/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#4818]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@in-flight-internal-1us: - shard-dg1: [DMESG-WARN][367] ([i915#4423]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-17/igt@gem_eio@in-flight-internal-1us.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@gem_eio@in-flight-internal-1us.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [WARN][369] ([i915#2681]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [FAIL][371] ([i915#12548] / [i915#3591]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2: [INCOMPLETE][373] -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-suspend: - shard-tglu: [ABORT][375] ([i915#10159]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-9/igt@kms_cursor_crc@cursor-suspend.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-tglu: [ABORT][377] -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][379] ([i915#2346]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_fbcon_fbt@psr-suspend: - shard-mtlp: [INCOMPLETE][381] -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-4/igt@kms_fbcon_fbt@psr-suspend.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][383] ([i915#2122]) -> [PASS][384] +7 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb2/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a1: - shard-rkl: [FAIL][385] ([i915#11832]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a1.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2: [FAIL][387] ([i915#79]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg1: [INCOMPLETE][389] ([i915#4839] / [i915#6113]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-19/igt@kms_flip@flip-vs-suspend.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: [INCOMPLETE][391] ([i915#4839]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][393] ([i915#6880]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-snb: [SKIP][395] -> [PASS][396] +2 other tests pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][397] ([i915#9519]) -> [PASS][398] +2 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_setmode@basic: - shard-mtlp: [FAIL][399] ([i915#5465]) -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-8/igt@kms_setmode@basic.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@kms_setmode@basic.html #### Warnings #### * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg1: [SKIP][401] ([i915#3638]) -> [SKIP][402] ([i915#3638] / [i915#4423]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-18/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_content_protection@type1: - shard-snb: [SKIP][403] -> [INCOMPLETE][404] ([i915#8816]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb7/igt@kms_content_protection@type1.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb4/igt@kms_content_protection@type1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][405] -> [SKIP][406] ([i915#9934]) +27 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][407] ([i915#12713]) -> [SKIP][408] ([i915#1187] / [i915#12713]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: [SKIP][409] ([i915#3555] / [i915#4423]) -> [SKIP][410] ([i915#3555]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-14/igt@kms_plane_multiple@tiling-yf.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][411] ([i915#9340]) -> [SKIP][412] ([i915#3828]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_setmode@basic: - shard-snb: [FAIL][413] ([i915#12722] / [i915#5465]) -> [FAIL][414] ([i915#5465]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb6/igt@kms_setmode@basic.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb2/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [FAIL][415] ([i915#12722]) -> [FAIL][416] ([i915#5465]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][417] ([i915#7484]) -> [FAIL][418] ([i915#9100]) +1 other test fail [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12450]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12450 [i915#12469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12469 [i915#12504]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12504 [i915#12515]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12515 [i915#12548]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12548 [i915#12564]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12564 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12577]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12577 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12722 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12798]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12798 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/index.html [-- Attachment #2: Type: text/html, Size: 114314 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.IGT: success for tests/chamelium: Reduce edid count to avoid timeout (rev7) 2024-11-12 5:04 [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala ` (6 preceding siblings ...) 2024-11-13 12:15 ` ✓ Fi.CI.IGT: success " Patchwork @ 2024-11-13 12:21 ` Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-11-13 12:21 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100278 bytes --] == Series Details == Series: tests/chamelium: Reduce edid count to avoid timeout (rev7) URL : https://patchwork.freedesktop.org/series/140426/ State : success == Summary == CI Bug Log - changes from CI_DRM_15675_full -> IGTPW_12076_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-snb-0 Missing (1): shard-glk Known issues ------------ Here are the changes found in IGTPW_12076_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@api_intel_bb@object-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +24 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +12 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#7297]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#6335]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#4812]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_exec_balancer@bonded-semaphore.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4036]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#6334]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-13/igt@gem_exec_fair@basic-deadline.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-vip: - shard-tglu: NOTRUN -> [FAIL][29] ([i915#2842]) +1 other test fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][30] ([i915#2842]) +4 other tests fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu-1: NOTRUN -> [FAIL][31] ([i915#2842]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +7 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts-chain.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [PASS][40] -> [ABORT][41] ([i915#7975] / [i915#8213]) +1 other test abort [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#12193]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_mmap@short-mmap: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +12 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@coherency: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@gem_mmap_wc@coherency.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@gem_pxp@display-protected-crc.html - shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4270]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@gem_readwrite@beyond-eob.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@write-bad-handle: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#8411]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4885]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4885]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@gem_tiled_pread_basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4079]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#3323]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-13/igt@gem_userptr_blits@dmabuf-unsync.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3297]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3281] / [i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4958]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@reload: - shard-snb: [PASS][88] -> [ABORT][89] ([i915#12450]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@i915_module_load@reload.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu-1: NOTRUN -> [ABORT][90] ([i915#9820]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#8399]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#8399]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][94] -> [FAIL][95] ([i915#12548] / [i915#3591]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#6245]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-5/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#5723]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][99] ([i915#5723]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][100] ([i915#7443]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6645]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4212]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#8709]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][107] -> [FAIL][108] ([i915#11808]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][109] +9 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#5286]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#5286]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#3638]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-mtlp: [PASS][116] -> [DMESG-WARN][117] ([i915#1982]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +13 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6187]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#5190]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][121] +9 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][122] +10 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +34 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +131 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#6095]) +68 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#12313]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#12313]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-mtlp: [PASS][129] -> [FAIL][130] ([i915#12469]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1: - shard-mtlp: [PASS][131] -> [FAIL][132] ([i915#12798]) +3 other tests fail [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#12313]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +39 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-edp-1: - shard-mtlp: [PASS][135] -> [INCOMPLETE][136] ([i915#12796]) +1 other test incomplete [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-edp-1.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +39 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#6095]) +22 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +167 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#12313]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#12313]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#11616] / [i915#7213]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7213]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4087]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +10 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#7828]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-6/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#7828]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#7828]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#4423] / [i915#7116] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3116] / [i915#3299]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3299]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3116]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-snb: NOTRUN -> [SKIP][158] +15 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3299]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3299]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#9424]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#9433]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#7116] / [i915#7118]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +6 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#11453] / [i915#3359]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#11453] / [i915#3359]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#11453] / [i915#3359]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x128: - shard-dg1: [PASS][172] -> [DMESG-WARN][173] ([i915#4423]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3555]) +7 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#11453] / [i915#3359]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#4103]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4213]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#9809]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-snb: [PASS][180] -> [SKIP][181] +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][182] +22 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9067]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#4103] / [i915#4213]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-tglu: NOTRUN -> [SKIP][185] ([i915#4103]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#9833]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8827]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#1769] / [i915#3555] / [i915#3804]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3804]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3555]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#1257]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#1257]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#12402]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_dsc@dsc-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3840]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3469]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3469]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3469]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#4854]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#1839]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#1839]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#1839]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1839]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#9337]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3637] / [i915#3966]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +6 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3637]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#8381]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3637]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#9934]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3637]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][216] -> [FAIL][217] ([i915#2122]) +1 other test fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1: - shard-rkl: [PASS][218] -> [FAIL][219] ([i915#2122]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-mtlp: [PASS][220] -> [FAIL][221] ([i915#11989] / [i915#2122]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [PASS][222] -> [FAIL][223] ([i915#2122]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][224] -> [FAIL][225] ([i915#2122]) +3 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-dp4: - shard-dg2: NOTRUN -> [FAIL][226] ([i915#2122]) +3 other tests fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#2672]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555] / [i915#4423]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672] / [i915#4423]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555] / [i915#5190]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#2587] / [i915#2672] / [i915#3555]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672] / [i915#3555]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2672]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8813]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#8810]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8708]) +24 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#5354]) +54 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#8708]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#1825]) +12 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#3458]) +7 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][248] +57 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#10433] / [i915#3458]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3023]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#8708]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#1825]) +13 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3458]) +27 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][254] +47 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#10656]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_joiner@basic-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#10656]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#12339]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#12339]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#12339]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#4816]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#6301]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8821]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8821]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8821]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#6953]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#12247]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - shard-dg2: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#9423]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#12247]) +7 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#12247]) +10 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#12247] / [i915#6953]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#12247]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#12247]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#3555] / [i915#9423]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#12504] / [i915#3555]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#3555]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#12504]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#12247]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#9812]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#12343]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#9812]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#9685]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#3828]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#9340]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#8430]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_pm_lpsp@screens-disabled.html - shard-rkl: NOTRUN -> [SKIP][290] ([i915#8430]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#8430]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][292] ([i915#8430]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8430]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-4/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9519]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg2: [PASS][295] -> [FAIL][296] ([i915#8717]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-3/igt@kms_pm_rpm@i2c.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][297] -> [SKIP][298] ([i915#9519]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-tglu: NOTRUN -> [SKIP][299] ([i915#9519]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][300] -> [SKIP][301] ([i915#9519]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9519]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#6524]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#6524] / [i915#6805]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@kms_prime@basic-modeset-hybrid.html - shard-rkl: NOTRUN -> [SKIP][305] ([i915#6524]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#9808]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#11520]) +9 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#11520]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#11520]) +3 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#11520]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#11520]) +6 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9683]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9683]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#9688]) +8 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +23 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +10 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +10 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9732]) +12 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9732]) +11 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-8/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#9685]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#9685]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#12755]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#5289]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12755]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][325] ([i915#12231]) +1 other test abort [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][326] ([i915#12231]) +1 other test abort [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][327] ([IGT#2]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#8623]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#9906]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][330] ([i915#9906]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#9906]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9906]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#8808] / [i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#3555]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-4/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#8808]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#11920]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#3555] / [i915#9906]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#2437] / [i915#9412]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#2437] / [i915#9412]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#2437] / [i915#9412]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#2437] / [i915#9412]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#2433]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [PASS][345] -> [FAIL][346] ([i915#4349]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@ccs0.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#8850]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@most-busy-idle-check-all: - shard-mtlp: [PASS][348] -> [FAIL][349] ([i915#11943] / [i915#12515]) +1 other test fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#8516]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@perf_pmu@rc6-all-gts.html - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#8516]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][352] ([i915#9351]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][353] ([i915#9351]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#3708] / [i915#4077]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-14/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#3291] / [i915#3708]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#3291] / [i915#3708]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#3708] / [i915#4077]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#3708] / [i915#4077]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#3708]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-2/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#9917]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9917]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9917]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-mtlp: NOTRUN -> [FAIL][363] ([i915#12564] / [i915#9781]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-dg2: NOTRUN -> [FAIL][364] ([i915#12564] / [i915#9781]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-8/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][365] ([i915#12564] / [i915#9781]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-3/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#4818]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@in-flight-internal-1us: - shard-dg1: [DMESG-WARN][367] ([i915#4423]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-17/igt@gem_eio@in-flight-internal-1us.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@gem_eio@in-flight-internal-1us.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [WARN][369] ([i915#2681]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [FAIL][371] ([i915#12548] / [i915#3591]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2: [INCOMPLETE][373] -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-suspend: - shard-tglu: [ABORT][375] ([i915#10159]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-9/igt@kms_cursor_crc@cursor-suspend.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-tglu: [ABORT][377] -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-tglu-9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-tglu-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][379] ([i915#2346]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_fbcon_fbt@psr-suspend: - shard-mtlp: [INCOMPLETE][381] -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-4/igt@kms_fbcon_fbt@psr-suspend.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][383] ([i915#2122]) -> [PASS][384] +7 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb2/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb6/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a1: - shard-rkl: [FAIL][385] ([i915#11832]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a1.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2: [FAIL][387] ([i915#79]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg1: [INCOMPLETE][389] ([i915#4839] / [i915#6113]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-19/igt@kms_flip@flip-vs-suspend.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: [INCOMPLETE][391] ([i915#4839]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][393] ([i915#6880]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-snb: [SKIP][395] -> [PASS][396] +2 other tests pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][397] ([i915#9519]) -> [PASS][398] +2 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_setmode@basic: - shard-mtlp: [FAIL][399] ([i915#5465]) -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-8/igt@kms_setmode@basic.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-3/igt@kms_setmode@basic.html #### Warnings #### * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg1: [SKIP][401] ([i915#3638]) -> [SKIP][402] ([i915#3638] / [i915#4423]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-18/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-16/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_content_protection@type1: - shard-snb: [SKIP][403] -> [INCOMPLETE][404] ([i915#8816]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb7/igt@kms_content_protection@type1.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb4/igt@kms_content_protection@type1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][405] -> [SKIP][406] ([i915#9934]) +27 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][407] ([i915#12713]) -> [SKIP][408] ([i915#1187] / [i915#12713]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: [SKIP][409] ([i915#3555] / [i915#4423]) -> [SKIP][410] ([i915#3555]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg1-14/igt@kms_plane_multiple@tiling-yf.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg1-15/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][411] ([i915#9340]) -> [SKIP][412] ([i915#3828]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_setmode@basic: - shard-snb: [FAIL][413] ([i915#12722] / [i915#5465]) -> [FAIL][414] ([i915#5465]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb6/igt@kms_setmode@basic.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb2/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [FAIL][415] ([i915#12722]) -> [FAIL][416] ([i915#5465]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][417] ([i915#7484]) -> [FAIL][418] ([i915#9100]) +1 other test fail [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15675/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12450]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12450 [i915#12469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12469 [i915#12504]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12504 [i915#12515]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12515 [i915#12548]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12548 [i915#12564]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12564 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12577]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12577 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12722 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12798]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12798 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12076/index.html [-- Attachment #2: Type: text/html, Size: 114314 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-11-13 12:21 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-12 5:04 [PATCH i-g-t v9 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala 2024-11-12 5:04 ` [PATCH i-g-t v9 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala 2024-11-12 5:12 ` Joshi, Kunal1 2024-11-12 5:04 ` [PATCH i-g-t v9 2/3] HAX: Do not merge Pranay Samala 2024-11-12 5:04 ` [PATCH i-g-t v9 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one Pranay Samala 2024-11-12 5:11 ` Joshi, Kunal1 2024-11-12 5:52 ` ✓ Fi.CI.BAT: success for tests/chamelium: Reduce edid count to avoid timeout (rev7) Patchwork 2024-11-12 6:05 ` ✓ CI.xeBAT: " Patchwork 2024-11-12 7:58 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-11-13 12:15 ` ✓ Fi.CI.IGT: success " Patchwork 2024-11-13 12:21 ` Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox