* [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests
@ 2024-01-19 17:04 Badal Nilawar
2024-01-19 17:04 ` [PATCH i-g-t 1/2] tests/intel/xe_gt_freq: Fix freq_low_max test Badal Nilawar
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Badal Nilawar @ 2024-01-19 17:04 UTC (permalink / raw)
To: igt-dev; +Cc: rodrigo.vivi
v2: Dropped the patch "test/intel/xe_guc_pc: Skip freq_*_idle
tests on PVC"
v3: Fix review comment in patch2 (Anshuman)
Badal Nilawar (2):
tests/intel/xe_gt_freq: Fix freq_low_max test
tests/intel/xe_gt_freq: Skip GuC PC tests if GuC PC not supported
tests/intel/xe_gt_freq.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t 1/2] tests/intel/xe_gt_freq: Fix freq_low_max test 2024-01-19 17:04 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar @ 2024-01-19 17:04 ` Badal Nilawar 2024-01-20 0:56 ` Belgaumkar, Vinay 2024-01-19 17:04 ` [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if GuC PC not supported Badal Nilawar ` (2 subsequent siblings) 3 siblings, 1 reply; 8+ messages in thread From: Badal Nilawar @ 2024-01-19 17:04 UTC (permalink / raw) To: igt-dev; +Cc: rodrigo.vivi freq_low_max test is intended to validate GuC PC (SLPC) behaviour when max freq set to less than min freq. As workloads are not being run validating cur freq is enough. v2: Validate act freq as well when gt is not in C6 (Vinay) Fixes: acaaca0bf317 ("tests/xe: Add Xe IGT tests") Signed-off-by: Badal Nilawar <badal.nilawar@intel.com> --- tests/intel/xe_gt_freq.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c index 4334a8a41..bf63e4298 100644 --- a/tests/intel/xe_gt_freq.c +++ b/tests/intel/xe_gt_freq.c @@ -263,7 +263,9 @@ static void test_freq_low_max(int fd, int gt_id) igt_assert(set_freq(fd, gt_id, "max", rpn) > 0); usleep(ACT_FREQ_LATENCY_US); igt_assert(get_freq(fd, gt_id, "cur") == rpe); - igt_assert(get_freq(fd, gt_id, "act") == rpe); + + if (!xe_is_gt_in_c6(fd, gt_id)) + igt_assert(get_freq(fd, gt_id, "act") == rpe); } /** -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_gt_freq: Fix freq_low_max test 2024-01-19 17:04 ` [PATCH i-g-t 1/2] tests/intel/xe_gt_freq: Fix freq_low_max test Badal Nilawar @ 2024-01-20 0:56 ` Belgaumkar, Vinay 0 siblings, 0 replies; 8+ messages in thread From: Belgaumkar, Vinay @ 2024-01-20 0:56 UTC (permalink / raw) To: Badal Nilawar, igt-dev; +Cc: matthew.d.roper, rodrigo.vivi On 1/19/2024 9:04 AM, Badal Nilawar wrote: > freq_low_max test is intended to validate GuC PC (SLPC) behaviour > when max freq set to less than min freq. As workloads are not being > run validating cur freq is enough. > > v2: Validate act freq as well when gt is not in C6 (Vinay) > > Fixes: acaaca0bf317 ("tests/xe: Add Xe IGT tests") > Signed-off-by: Badal Nilawar <badal.nilawar@intel.com> > --- > tests/intel/xe_gt_freq.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c > index 4334a8a41..bf63e4298 100644 > --- a/tests/intel/xe_gt_freq.c > +++ b/tests/intel/xe_gt_freq.c > @@ -263,7 +263,9 @@ static void test_freq_low_max(int fd, int gt_id) > igt_assert(set_freq(fd, gt_id, "max", rpn) > 0); > usleep(ACT_FREQ_LATENCY_US); > igt_assert(get_freq(fd, gt_id, "cur") == rpe); > - igt_assert(get_freq(fd, gt_id, "act") == rpe); > + > + if (!xe_is_gt_in_c6(fd, gt_id)) > + igt_assert(get_freq(fd, gt_id, "act") == rpe); Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com> > } > > /** ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if GuC PC not supported 2024-01-19 17:04 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar 2024-01-19 17:04 ` [PATCH i-g-t 1/2] tests/intel/xe_gt_freq: Fix freq_low_max test Badal Nilawar @ 2024-01-19 17:04 ` Badal Nilawar 2024-01-20 1:26 ` Belgaumkar, Vinay 2024-01-19 18:18 ` ✓ CI.xeBAT: success for Couple of fixes to guc_pc tests (rev3) Patchwork 2024-01-19 18:31 ` ✗ Fi.CI.BAT: failure " Patchwork 3 siblings, 1 reply; 8+ messages in thread From: Badal Nilawar @ 2024-01-19 17:04 UTC (permalink / raw) To: igt-dev; +Cc: rodrigo.vivi Skip GuC PC tests if platform does not support SLPC. v2: Use scalable approach (Anshuman) Fixes: acaaca0bf317 ("tests/xe: Add Xe IGT tests") Signed-off-by: Badal Nilawar <badal.nilawar@intel.com> --- tests/intel/xe_gt_freq.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c index bf63e4298..6c4fc81ae 100644 --- a/tests/intel/xe_gt_freq.c +++ b/tests/intel/xe_gt_freq.c @@ -319,6 +319,11 @@ static void test_reset(int fd, int gt_id, int cycles) } } +static bool xe_is_slpc_enabled(int drm_fd) +{ + return igt_debugfs_search(drm_fd, "info", "skip_guc_pc yes"); +} + igt_main { int fd; @@ -329,6 +334,9 @@ igt_main igt_fixture { fd = drm_open_driver(DRIVER_XE); + igt_skip_on_f(!xe_is_slpc_enabled(fd), + "GuC PC tests are not supported when SLPC is disabled\n"); + /* The defaults are the same. Stashing the gt0 is enough */ stash_min = get_freq(fd, 0, "min"); stash_max = get_freq(fd, 0, "max"); -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if GuC PC not supported 2024-01-19 17:04 ` [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if GuC PC not supported Badal Nilawar @ 2024-01-20 1:26 ` Belgaumkar, Vinay 0 siblings, 0 replies; 8+ messages in thread From: Belgaumkar, Vinay @ 2024-01-20 1:26 UTC (permalink / raw) To: Badal Nilawar, igt-dev; +Cc: matthew.d.roper, rodrigo.vivi On 1/19/2024 9:04 AM, Badal Nilawar wrote: > Skip GuC PC tests if platform does not support SLPC. > > v2: Use scalable approach (Anshuman) > > Fixes: acaaca0bf317 ("tests/xe: Add Xe IGT tests") > Signed-off-by: Badal Nilawar <badal.nilawar@intel.com> > --- > tests/intel/xe_gt_freq.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c > index bf63e4298..6c4fc81ae 100644 > --- a/tests/intel/xe_gt_freq.c > +++ b/tests/intel/xe_gt_freq.c > @@ -319,6 +319,11 @@ static void test_reset(int fd, int gt_id, int cycles) > } > } > > +static bool xe_is_slpc_enabled(int drm_fd) > +{ > + return igt_debugfs_search(drm_fd, "info", "skip_guc_pc yes"); > +} the function is called is_slpc_enabled() but returns false when it is indeed enabled (skip_guc_pc = false). Might be better to search for "skip_guc_pc false" instead? Thanks, Vinay. > + > igt_main > { > int fd; > @@ -329,6 +334,9 @@ igt_main > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > > + igt_skip_on_f(!xe_is_slpc_enabled(fd), > + "GuC PC tests are not supported when SLPC is disabled\n"); > + > /* The defaults are the same. Stashing the gt0 is enough */ > stash_min = get_freq(fd, 0, "min"); > stash_max = get_freq(fd, 0, "max"); ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for Couple of fixes to guc_pc tests (rev3) 2024-01-19 17:04 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar 2024-01-19 17:04 ` [PATCH i-g-t 1/2] tests/intel/xe_gt_freq: Fix freq_low_max test Badal Nilawar 2024-01-19 17:04 ` [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if GuC PC not supported Badal Nilawar @ 2024-01-19 18:18 ` Patchwork 2024-01-19 18:31 ` ✗ Fi.CI.BAT: failure " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-01-19 18:18 UTC (permalink / raw) To: Badal Nilawar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2972 bytes --] == Series Details == Series: Couple of fixes to guc_pc tests (rev3) URL : https://patchwork.freedesktop.org/series/126869/ State : success == Summary == CI Bug Log - changes from XEIGT_7683_BAT -> XEIGTPW_10565_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_10565_BAT: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_gt_freq@freq_basic_api}: - bat-adlp-7: [PASS][1] -> [SKIP][2] +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7683/bat-adlp-7/igt@xe_gt_freq@freq_basic_api.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10565/bat-adlp-7/igt@xe_gt_freq@freq_basic_api.html - bat-pvc-2: [PASS][3] -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7683/bat-pvc-2/igt@xe_gt_freq@freq_basic_api.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10565/bat-pvc-2/igt@xe_gt_freq@freq_basic_api.html - bat-dg2-oem2: [PASS][5] -> [SKIP][6] +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7683/bat-dg2-oem2/igt@xe_gt_freq@freq_basic_api.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10565/bat-dg2-oem2/igt@xe_gt_freq@freq_basic_api.html * {igt@xe_gt_freq@freq_fixed_idle}: - bat-atsm-2: [PASS][7] -> [SKIP][8] +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7683/bat-atsm-2/igt@xe_gt_freq@freq_fixed_idle.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10565/bat-atsm-2/igt@xe_gt_freq@freq_fixed_idle.html * {igt@xe_gt_freq@freq_range_idle}: - bat-pvc-2: [SKIP][9] ([Intel XE#1021]) -> [SKIP][10] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7683/bat-pvc-2/igt@xe_gt_freq@freq_range_idle.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10565/bat-pvc-2/igt@xe_gt_freq@freq_range_idle.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021 Build changes ------------- * IGT: IGT_7683 -> IGTPW_10565 * Linux: xe-644-238e8655c184b7cf16731690b59da560641a07ad -> xe-655-e6ff162529c0239058b009085071878ef2d4e420 IGTPW_10565: 10565 IGT_7683: 7683 xe-644-238e8655c184b7cf16731690b59da560641a07ad: 238e8655c184b7cf16731690b59da560641a07ad xe-655-e6ff162529c0239058b009085071878ef2d4e420: e6ff162529c0239058b009085071878ef2d4e420 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10565/index.html [-- Attachment #2: Type: text/html, Size: 3648 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.BAT: failure for Couple of fixes to guc_pc tests (rev3) 2024-01-19 17:04 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar ` (2 preceding siblings ...) 2024-01-19 18:18 ` ✓ CI.xeBAT: success for Couple of fixes to guc_pc tests (rev3) Patchwork @ 2024-01-19 18:31 ` Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-01-19 18:31 UTC (permalink / raw) To: Badal Nilawar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 12244 bytes --] == Series Details == Series: Couple of fixes to guc_pc tests (rev3) URL : https://patchwork.freedesktop.org/series/126869/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14148 -> IGTPW_10565 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10565 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10565, 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_10565/index.html Participating hosts (35 -> 38) ------------------------------ Additional (4): bat-rpls-2 fi-bsw-n3050 bat-mtlp-8 fi-pnv-d510 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10565: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1: - bat-rpls-2: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1.html Known issues ------------ Here are the changes found in IGTPW_10565 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-rpls-2: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@debugfs_test@basic-hwmon.html - bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#9318]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html - bat-adlp-6: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@basic: - fi-pnv-d510: NOTRUN -> [SKIP][5] ([fdo#109271]) +31 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/fi-pnv-d510/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][6] ([fdo#109271]) +15 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html - bat-adlp-6: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-rpls-2: NOTRUN -> [SKIP][8] ([i915#4613]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html - bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4613]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4083]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#4077]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#4079]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-adlp-6: NOTRUN -> [SKIP][13] ([i915#3282]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@gem_tiled_pread_basic.html - bat-rpls-2: NOTRUN -> [SKIP][14] ([i915#3282]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-rpls-2: NOTRUN -> [SKIP][15] ([i915#6621]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@i915_pm_rps@basic-api.html - bat-adlp-6: NOTRUN -> [SKIP][16] ([i915#6621]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@i915_pm_rps@basic-api.html - bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#6621]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_pm: - bat-rpls-2: NOTRUN -> [DMESG-FAIL][18] ([i915#10010]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#6645]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#5190]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#4212]) +8 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-rpls-2: NOTRUN -> [SKIP][22] ([i915#4103]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-mtlp-8: NOTRUN -> [SKIP][23] ([i915#4213]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-adlp-6: NOTRUN -> [SKIP][24] ([i915#4103]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-rpls-2: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#3840] / [i915#9886]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@kms_dsc@dsc-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#3840] / [i915#9159]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@kms_dsc@dsc-basic.html - bat-adlp-6: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#3840]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-rpls-2: NOTRUN -> [SKIP][28] ([fdo#109285]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html - bat-mtlp-8: NOTRUN -> [SKIP][29] ([fdo#109285]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html - bat-adlp-6: NOTRUN -> [SKIP][30] ([fdo#109285]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-8: NOTRUN -> [SKIP][31] ([i915#5274]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pm_backlight@basic-brightness: - bat-rpls-2: NOTRUN -> [SKIP][32] ([i915#5354]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@kms_pm_backlight@basic-brightness.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-6: NOTRUN -> [SKIP][33] ([i915#3555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-8: NOTRUN -> [SKIP][34] ([i915#3555] / [i915#8809]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html - bat-rpls-2: NOTRUN -> [SKIP][35] ([i915#3555]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-8: NOTRUN -> [SKIP][36] ([i915#3708] / [i915#4077]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-rpls-2: NOTRUN -> [SKIP][37] ([fdo#109295] / [i915#3708]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-rpls-2/igt@prime_vgem@basic-fence-read.html - bat-mtlp-8: NOTRUN -> [SKIP][38] ([i915#3708]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html - bat-adlp-6: NOTRUN -> [SKIP][39] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@i915_module_load@load: - bat-adlp-6: [INCOMPLETE][40] ([i915#8449]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14148/bat-adlp-6/igt@i915_module_load@load.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/bat-adlp-6/igt@i915_module_load@load.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#10010]: https://gitlab.freedesktop.org/drm/intel/issues/10010 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#8449]: https://gitlab.freedesktop.org/drm/intel/issues/8449 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7683 -> IGTPW_10565 CI-20190529: 20190529 CI_DRM_14148: e6ff162529c0239058b009085071878ef2d4e420 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10565: 10565 IGT_7683: 7683 Testlist changes ---------------- -igt@xe_pm@d3-mmap-system -igt@xe_pm@d3-mmap-vram == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10565/index.html [-- Attachment #2: Type: text/html, Size: 14877 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests
@ 2024-01-18 14:56 Badal Nilawar
0 siblings, 0 replies; 8+ messages in thread
From: Badal Nilawar @ 2024-01-18 14:56 UTC (permalink / raw)
To: igt-dev
v2: Dropped the patch "test/intel/xe_guc_pc: Skip freq_*_idle
tests on PVC"
Badal Nilawar (2):
test/intel/xe_gt_freq: Fix freq_low_max test
tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not enabled
tests/intel/xe_gt_freq.c | 32 +++++++++++++++++++++++++++++++-
1 file changed, 31 insertions(+), 1 deletion(-)
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in threadend of thread, other threads:[~2024-01-20 1:28 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-19 17:04 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar 2024-01-19 17:04 ` [PATCH i-g-t 1/2] tests/intel/xe_gt_freq: Fix freq_low_max test Badal Nilawar 2024-01-20 0:56 ` Belgaumkar, Vinay 2024-01-19 17:04 ` [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if GuC PC not supported Badal Nilawar 2024-01-20 1:26 ` Belgaumkar, Vinay 2024-01-19 18:18 ` ✓ CI.xeBAT: success for Couple of fixes to guc_pc tests (rev3) Patchwork 2024-01-19 18:31 ` ✗ Fi.CI.BAT: failure " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-01-18 14:56 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox