* [PATCH i-g-t v3 0/3] tests/chamelium: Reduce edid count to avoid timeout
@ 2024-10-24 8:27 Pranay Samala
2024-10-24 8:27 ` [PATCH i-g-t v3 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Pranay Samala @ 2024-10-24 8:27 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.
Changes in v3: Shuffling of one of the edids.
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 | 20 ++++++++-
tests/intel-ci/fast-feedback.testlist | 2 +
tests/intel-ci/xe-fast-feedback.testlist | 2 +
4 files changed, 49 insertions(+), 27 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t v3 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid 2024-10-24 8:27 [PATCH i-g-t v3 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala @ 2024-10-24 8:27 ` Pranay Samala 2024-10-24 9:43 ` Joshi, Kunal1 2024-10-24 8:27 ` [PATCH i-g-t v3 2/3] HAX: Do not merge Pranay Samala ` (4 subsequent siblings) 5 siblings, 1 reply; 8+ messages in thread From: Pranay Samala @ 2024-10-24 8:27 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 | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/tests/chamelium/kms_chamelium_edid.c b/tests/chamelium/kms_chamelium_edid.c index 8438f5f15..1bdde1768 100644 --- a/tests/chamelium/kms_chamelium_edid.c +++ b/tests/chamelium/kms_chamelium_edid.c @@ -122,6 +122,7 @@ */ #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) @@ -273,6 +274,9 @@ static void edid_stress_resolution(chamelium_data_t *data, data->ports, data->port_count); + if (!extended) + edids_list_len = 25; + for (i = 0; i < edids_list_len; ++i) { struct chamelium_edid *chamelium_edid; drmModeModeInfo mode; @@ -504,8 +508,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] 8+ messages in thread
* Re: [PATCH i-g-t v3 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid 2024-10-24 8:27 ` [PATCH i-g-t v3 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala @ 2024-10-24 9:43 ` Joshi, Kunal1 0 siblings, 0 replies; 8+ messages in thread From: Joshi, Kunal1 @ 2024-10-24 9:43 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: karthik.b.s, swati2.sharma, sameer.lattannavar [-- Attachment #1: Type: text/plain, Size: 2408 bytes --] Hello Pranay, On 24-10-2024 13:57, 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> > --- > tests/chamelium/kms_chamelium_edid.c | 20 +++++++++++++++++++- > 1 file changed, 19 insertions(+), 1 deletion(-) > > diff --git a/tests/chamelium/kms_chamelium_edid.c b/tests/chamelium/kms_chamelium_edid.c > index 8438f5f15..1bdde1768 100644 > --- a/tests/chamelium/kms_chamelium_edid.c > +++ b/tests/chamelium/kms_chamelium_edid.c > @@ -122,6 +122,7 @@ > */ > > #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) > @@ -273,6 +274,9 @@ static void edid_stress_resolution(chamelium_data_t *data, > data->ports, data->port_count); > > > + if (!extended) > + edids_list_len = 25; > + Is there any environment variable that can be checked here instead of using extended? If we can somehow know that this is a CI execution with some environment variable we can use that instead. It will allow executing test without extended flag. If we don't have any such env variable I am ok with this approach just add a info message to notify user we are shortening the list also add a intel platform check. Thanks and Regards Kunal Joshi > for (i = 0; i < edids_list_len; ++i) { > struct chamelium_edid *chamelium_edid; > drmModeModeInfo mode; > @@ -504,8 +508,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; [-- Attachment #2: Type: text/html, Size: 3125 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t v3 2/3] HAX: Do not merge 2024-10-24 8:27 [PATCH i-g-t v3 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala 2024-10-24 8:27 ` [PATCH i-g-t v3 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala @ 2024-10-24 8:27 ` Pranay Samala 2024-10-24 8:27 ` [PATCH i-g-t v3 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one Pranay Samala ` (3 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Pranay Samala @ 2024-10-24 8:27 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] 8+ messages in thread
* [PATCH i-g-t v3 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one 2024-10-24 8:27 [PATCH i-g-t v3 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala 2024-10-24 8:27 ` [PATCH i-g-t v3 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala 2024-10-24 8:27 ` [PATCH i-g-t v3 2/3] HAX: Do not merge Pranay Samala @ 2024-10-24 8:27 ` Pranay Samala 2024-10-24 10:28 ` ✗ Fi.CI.BAT: failure for tests/chamelium: Reduce edid count to avoid timeout Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Pranay Samala @ 2024-10-24 8:27 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, swati2.sharma, sameer.lattannavar, pranay.samala Edid of 1920x1200 59.950 Hz mode is a redundant edid, shuffling it with edid of 2560x1600 59.972 Hz mode to have all edid's coverage. 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] 8+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/chamelium: Reduce edid count to avoid timeout 2024-10-24 8:27 [PATCH i-g-t v3 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala ` (2 preceding siblings ...) 2024-10-24 8:27 ` [PATCH i-g-t v3 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one Pranay Samala @ 2024-10-24 10:28 ` Patchwork 2024-10-24 11:05 ` ✓ CI.xeBAT: success " Patchwork 2024-10-25 2:38 ` ✓ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-24 10:28 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 21668 bytes --] == Series Details == Series: tests/chamelium: Reduce edid count to avoid timeout URL : https://patchwork.freedesktop.org/series/140426/ State : failure == Summary == CI Bug Log - changes from IGT_8082 -> IGTPW_11970 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11970 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11970, 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_11970/index.html Participating hosts (45 -> 45) ------------------------------ Additional (2): fi-skl-6600u bat-dg1-6 Missing (2): fi-snb-2520m bat-adls-6 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11970: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - fi-elk-e7500: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/fi-elk-e7500/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-elk-e7500/igt@i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_11970 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-dg1-6: NOTRUN -> [SKIP][3] ([i915#12311] / [i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg1-6/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-skl-6600u: NOTRUN -> [SKIP][4] ([i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@random-engines: - fi-skl-6600u: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html * igt@i915_selftest@live: - bat-arls-2: [PASS][6] -> [DMESG-FAIL][7] ([i915#10262] / [i915#10341] / [i915#12133]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-arls-2/igt@i915_selftest@live.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-arls-2/igt@i915_selftest@live.html * igt@i915_selftest@live@late_gt_pm: - bat-arls-2: [PASS][8] -> [DMESG-FAIL][9] ([i915#10262]) +24 other tests dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@requests: - bat-arls-2: [PASS][10] -> [DMESG-WARN][11] ([i915#10341]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-arls-2/igt@i915_selftest@live@requests.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-arls-2/igt@i915_selftest@live@requests.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - bat-apl-1: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-apl-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-rplp-1: NOTRUN -> [SKIP][13] ([i915#7828]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-rplp-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-arlh-2: NOTRUN -> [SKIP][14] ([i915#11151] / [i915#11346]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-arlh-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-rkl-11600: NOTRUN -> [SKIP][15] ([i915#7828]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-rkl-11600/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-arlh-3: NOTRUN -> [SKIP][16] ([i915#11151]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-arlh-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg1-7: NOTRUN -> [SKIP][17] ([i915#7828]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg1-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#7828]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg2-9/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-kbl-x1275: NOTRUN -> [SKIP][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-kbl-x1275/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-11: NOTRUN -> [SKIP][20] ([i915#7828]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlp-11/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-rpls-4: NOTRUN -> [SKIP][21] ([i915#7828]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-rpls-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-cfl-8109u: NOTRUN -> [SKIP][22] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-cfl-8109u/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-kbl-7567u: NOTRUN -> [SKIP][23] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-kbl-7567u/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-arls-2: NOTRUN -> [SKIP][24] ([i915#7828]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-arls-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-kbl-8809g: NOTRUN -> [SKIP][25] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-kbl-8809g/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-ilk-650: NOTRUN -> [SKIP][26] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-ilk-650/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-tgl-1115g4: NOTRUN -> [SKIP][27] ([i915#7828]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-tgl-1115g4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-cfl-guc: NOTRUN -> [SKIP][28] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-cfl-guc/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-mtlp-6: NOTRUN -> [SKIP][29] ([i915#7828] / [i915#9792]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-mtlp-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-skl-6600u: NOTRUN -> [SKIP][30] +10 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-skl-6600u/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-twl-2: NOTRUN -> [SKIP][31] ([i915#11151]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-twl-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-cfl-8700k: NOTRUN -> [SKIP][32] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-cfl-8700k/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-blb-e6850: NOTRUN -> [SKIP][33] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-blb-e6850/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-14: NOTRUN -> [SKIP][34] ([i915#7828]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg2-14/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-bsw-nick: NOTRUN -> [SKIP][35] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-bsw-nick/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-kbl-2: NOTRUN -> [SKIP][36] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-kbl-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-6: NOTRUN -> [SKIP][37] ([i915#7828]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlp-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-atsm-1: NOTRUN -> [SKIP][38] ([i915#6078]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-atsm-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-jsl-3: NOTRUN -> [SKIP][39] ([i915#7828]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-jsl-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-11: NOTRUN -> [SKIP][40] ([i915#7828]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg2-11/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-hsw-4770: NOTRUN -> [SKIP][41] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-hsw-4770/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-ivb-3770: NOTRUN -> [SKIP][42] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-ivb-3770/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-mtlp-8: NOTRUN -> [SKIP][43] ([i915#7828]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-mtlp-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-elk-e7500: NOTRUN -> [SKIP][44] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-elk-e7500/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-8: NOTRUN -> [SKIP][45] ([i915#7828]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg2-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-kbl-guc: NOTRUN -> [SKIP][46] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-kbl-guc/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlm-1: NOTRUN -> [SKIP][47] ([i915#7828] / [i915#9900]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-jsl-1: NOTRUN -> [SKIP][48] ([i915#7828]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-jsl-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-arls-1: NOTRUN -> [SKIP][49] ([i915#7828]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-arls-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-bsw-n3050: NOTRUN -> [SKIP][50] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-bsw-n3050/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-pnv-d510: NOTRUN -> [SKIP][51] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-pnv-d510/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - fi-glk-j4005: NOTRUN -> [SKIP][52] [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-glk-j4005/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-9: NOTRUN -> [SKIP][53] ([i915#7828]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlp-9/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-twl-1: NOTRUN -> [SKIP][54] ([i915#11151]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-twl-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-dg1-6: NOTRUN -> [SKIP][55] ([i915#12311]) +55 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg1-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@prime_vgem@basic-write: - bat-dg1-6: NOTRUN -> [SKIP][56] ([i915#11723] / [i915#12311]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg1-6/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live: - bat-twl-1: [INCOMPLETE][57] ([i915#12133] / [i915#9413]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-twl-1/igt@i915_selftest@live.html - bat-dg2-9: [ABORT][59] ([i915#12133]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg2-9/igt@i915_selftest@live.html * igt@i915_selftest@live@client: - bat-dg2-9: [ABORT][61] ([i915#12305]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live@client.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-dg2-9/igt@i915_selftest@live@client.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: [INCOMPLETE][63] ([i915#9413]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live@gt_lrc.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-twl-1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][65] ([i915#11621]) -> [PASS][66] +132 other tests pass [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html #### Warnings #### * igt@debugfs_test@basic-hwmon: - bat-adlm-1: [SKIP][67] ([i915#3826]) -> [SKIP][68] ([i915#3826] / [i915#9900]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@debugfs_test@basic-hwmon.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-adlm-1: [SKIP][69] ([i915#1849] / [i915#2582]) -> [SKIP][70] ([i915#1849] / [i915#2582] / [i915#9900]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@fbdev@info.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@fbdev@info.html * igt@fbdev@read: - bat-adlm-1: [SKIP][71] ([i915#2582]) -> [SKIP][72] ([i915#2582] / [i915#9900]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@fbdev@read.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@fbdev@read.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adlm-1: [SKIP][73] ([i915#4613]) -> [SKIP][74] ([i915#4613] / [i915#9900]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-adlm-1: [SKIP][75] ([i915#3282]) -> [SKIP][76] ([i915#3282] / [i915#9900]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@gem_tiled_pread_basic.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-adlm-1: [SKIP][77] ([i915#6621]) -> [SKIP][78] ([i915#6621] / [i915#9900]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@i915_pm_rps@basic-api.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@i915_pm_rps@basic-api.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlm-1: [SKIP][79] ([i915#9875] / [i915#9900]) -> [SKIP][80] ([i915#9900]) +16 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlm-1: [SKIP][81] ([i915#3637]) -> [SKIP][82] ([i915#3637] / [i915#9900]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlm-1: [SKIP][83] -> [SKIP][84] ([i915#9900]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@basic: - bat-adlm-1: [SKIP][85] ([i915#1849] / [i915#4342]) -> [SKIP][86] ([i915#1849] / [i915#4342] / [i915#9900]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness: - bat-adlm-1: [SKIP][87] ([i915#5354]) -> [SKIP][88] ([i915#5354] / [i915#9900]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_pm_backlight@basic-brightness.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-adlm-1: [SKIP][89] ([i915#1072] / [i915#9732]) -> [SKIP][90] ([i915#1072] / [i915#9732] / [i915#9900]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_psr@psr-sprite-plane-onoff.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlm-1: [SKIP][91] ([i915#3555]) -> [SKIP][92] ([i915#3555] / [i915#9900]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-write: - bat-adlm-1: [SKIP][93] ([i915#3708]) -> [SKIP][94] ([i915#3708] / [i915#9900]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@prime_vgem@basic-write.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/bat-adlm-1/igt@prime_vgem@basic-write.html [i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262 [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9875]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9875 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8082 -> IGTPW_11970 * Linux: CI_DRM_15576 -> CI_DRM_15587 CI-20190529: 20190529 CI_DRM_15576: d5bac12430b0d4a980c0498b3c946772950e70ee @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15587: 3d45ea06af2c04db741c142380d97001b3cdb5da @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11970: 3c5a5828a22de04063a9789025c026e0f3ded76e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11970/index.html [-- Attachment #2: Type: text/html, Size: 27737 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for tests/chamelium: Reduce edid count to avoid timeout 2024-10-24 8:27 [PATCH i-g-t v3 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala ` (3 preceding siblings ...) 2024-10-24 10:28 ` ✗ Fi.CI.BAT: failure for tests/chamelium: Reduce edid count to avoid timeout Patchwork @ 2024-10-24 11:05 ` Patchwork 2024-10-25 2:38 ` ✓ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-24 11:05 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4917 bytes --] == Series Details == Series: tests/chamelium: Reduce edid count to avoid timeout URL : https://patchwork.freedesktop.org/series/140426/ State : success == Summary == CI Bug Log - changes from XEIGT_8082_BAT -> XEIGTPW_11970_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11970_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - bat-lnl-1: NOTRUN -> [SKIP][1] ([Intel XE#373]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-lnl-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-pvc-2: NOTRUN -> [SKIP][2] ([Intel XE#1024]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-pvc-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2252]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-bmg-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-bmg-1: NOTRUN -> [SKIP][4] ([Intel XE#2252]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-bmg-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#373]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-adlp-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-lnl-2: NOTRUN -> [SKIP][6] ([Intel XE#373]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-lnl-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-dg2-oem2: NOTRUN -> [SKIP][7] ([Intel XE#373]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-dg2-oem2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-atsm-2: NOTRUN -> [SKIP][8] ([Intel XE#1024]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-atsm-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - bat-adlp-vf: NOTRUN -> [SKIP][9] ([Intel XE#2463]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-adlp-vf/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][10] ([Intel XE#1861]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-bmg-2: [INCOMPLETE][12] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-lnl-1: [SKIP][14] ([Intel XE#599]) -> [SKIP][15] ([Intel XE#2244]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-lnl-1/igt@kms_dsc@dsc-basic.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/bat-lnl-1/igt@kms_dsc@dsc-basic.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 Build changes ------------- * IGT: IGT_8082 -> IGTPW_11970 * Linux: xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 -> xe-2110-4456dc1cd52e3e6db4513bacc85e6982ac9e101d IGTPW_11970: 3c5a5828a22de04063a9789025c026e0f3ded76e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 xe-2110-4456dc1cd52e3e6db4513bacc85e6982ac9e101d: 4456dc1cd52e3e6db4513bacc85e6982ac9e101d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/index.html [-- Attachment #2: Type: text/html, Size: 5923 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeFULL: success for tests/chamelium: Reduce edid count to avoid timeout 2024-10-24 8:27 [PATCH i-g-t v3 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala ` (4 preceding siblings ...) 2024-10-24 11:05 ` ✓ CI.xeBAT: success " Patchwork @ 2024-10-25 2:38 ` Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-25 2:38 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1167 bytes --] == Series Details == Series: tests/chamelium: Reduce edid count to avoid timeout URL : https://patchwork.freedesktop.org/series/140426/ State : success == Summary == CI Bug Log - changes from XEIGT_8082_full -> XEIGTPW_11970_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8082 -> IGTPW_11970 * Linux: xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 -> xe-2110-4456dc1cd52e3e6db4513bacc85e6982ac9e101d IGTPW_11970: 3c5a5828a22de04063a9789025c026e0f3ded76e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 xe-2110-4456dc1cd52e3e6db4513bacc85e6982ac9e101d: 4456dc1cd52e3e6db4513bacc85e6982ac9e101d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11970/index.html [-- Attachment #2: Type: text/html, Size: 1726 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-10-25 2:38 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-24 8:27 [PATCH i-g-t v3 0/3] tests/chamelium: Reduce edid count to avoid timeout Pranay Samala 2024-10-24 8:27 ` [PATCH i-g-t v3 1/3] tests/chamelium/kms_chamelium_edid: Use extended flag to reduce the number of edid Pranay Samala 2024-10-24 9:43 ` Joshi, Kunal1 2024-10-24 8:27 ` [PATCH i-g-t v3 2/3] HAX: Do not merge Pranay Samala 2024-10-24 8:27 ` [PATCH i-g-t v3 3/3] lib/monitor_edids/hdmi_edids: Shuffle edid with the redundant one Pranay Samala 2024-10-24 10:28 ` ✗ Fi.CI.BAT: failure for tests/chamelium: Reduce edid count to avoid timeout Patchwork 2024-10-24 11:05 ` ✓ CI.xeBAT: success " Patchwork 2024-10-25 2:38 ` ✓ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox