* Re: [igt-dev] [PATCH i-g-t] gem_exec_balancer: move no-GuC requirement to test functions
2023-06-01 10:02 [igt-dev] [PATCH i-g-t] gem_exec_balancer: move no-GuC requirement to test functions Andrzej Hajda
@ 2023-06-01 10:46 ` Nirmoy Das
2023-06-01 10:51 ` Kumar, Janga Rahul
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Nirmoy Das @ 2023-06-01 10:46 UTC (permalink / raw)
To: Andrzej Hajda, igt-dev
On 6/1/2023 12:02 PM, Andrzej Hajda wrote:
> Requirements put into igt_subtest_group/igt_fixture are checked for
> all tests in the file. Even if they do not influence test execution
> they print misleading infos.
>
> Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> tests/i915/gem_exec_balancer.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/tests/i915/gem_exec_balancer.c b/tests/i915/gem_exec_balancer.c
> index 004ba9a14fe..9190fc2383f 100644
> --- a/tests/i915/gem_exec_balancer.c
> +++ b/tests/i915/gem_exec_balancer.c
> @@ -1525,6 +1525,7 @@ bonded_runner(int i915,
> * submission across multiple engines.
> */
> igt_require(gem_scheduler_has_preemption(i915));
> + igt_require(!gem_using_guc_submission(i915));
>
> cycles = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
>
> @@ -1996,6 +1997,7 @@ static void sliced(int i915)
>
> igt_require(gem_scheduler_has_preemption(i915));
> igt_require(gem_scheduler_has_semaphores(i915));
> + igt_require(!gem_using_guc_submission(i915));
>
> for (int class = 0; class < 32; class++) {
> struct i915_engine_class_instance *ci;
> @@ -3605,7 +3607,6 @@ igt_main
>
> igt_subtest_group {
> igt_fixture {
> - igt_require(!gem_using_guc_submission(i915));
> intel_allocator_multiprocess_start();
> }
>
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [igt-dev] [PATCH i-g-t] gem_exec_balancer: move no-GuC requirement to test functions
2023-06-01 10:02 [igt-dev] [PATCH i-g-t] gem_exec_balancer: move no-GuC requirement to test functions Andrzej Hajda
2023-06-01 10:46 ` Nirmoy Das
@ 2023-06-01 10:51 ` Kumar, Janga Rahul
2023-06-01 12:44 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Kumar, Janga Rahul @ 2023-06-01 10:51 UTC (permalink / raw)
To: Hajda, Andrzej, igt-dev@lists.freedesktop.org; +Cc: Das, Nirmoy
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> Andrzej Hajda
> Sent: 01 June 2023 15:33
> To: igt-dev@lists.freedesktop.org
> Cc: Das, Nirmoy <nirmoy.das@intel.com>
> Subject: [igt-dev] [PATCH i-g-t] gem_exec_balancer: move no-GuC
> requirement to test functions
>
> Requirements put into igt_subtest_group/igt_fixture are checked for all
> tests in the file.
This comment is misleading, it is not checked for all the tests in the file. igt_fixture inside of subtest_group will get executed even when you run a test outside of it. Suggest you to change it.
Even if they do not influence test execution they print
> misleading infos.
>
> Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
LGTM
Acked-by : Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> ---
> tests/i915/gem_exec_balancer.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/tests/i915/gem_exec_balancer.c
> b/tests/i915/gem_exec_balancer.c index 004ba9a14fe..9190fc2383f 100644
> --- a/tests/i915/gem_exec_balancer.c
> +++ b/tests/i915/gem_exec_balancer.c
> @@ -1525,6 +1525,7 @@ bonded_runner(int i915,
> * submission across multiple engines.
> */
> igt_require(gem_scheduler_has_preemption(i915));
> + igt_require(!gem_using_guc_submission(i915));
>
> cycles = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -
> 1, 0);
>
> @@ -1996,6 +1997,7 @@ static void sliced(int i915)
>
> igt_require(gem_scheduler_has_preemption(i915));
> igt_require(gem_scheduler_has_semaphores(i915));
> + igt_require(!gem_using_guc_submission(i915));
>
> for (int class = 0; class < 32; class++) {
> struct i915_engine_class_instance *ci; @@ -3605,7 +3607,6
> @@ igt_main
>
> igt_subtest_group {
> igt_fixture {
> - igt_require(!gem_using_guc_submission(i915));
> intel_allocator_multiprocess_start();
> }
>
> --
> 2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for gem_exec_balancer: move no-GuC requirement to test functions
2023-06-01 10:02 [igt-dev] [PATCH i-g-t] gem_exec_balancer: move no-GuC requirement to test functions Andrzej Hajda
2023-06-01 10:46 ` Nirmoy Das
2023-06-01 10:51 ` Kumar, Janga Rahul
@ 2023-06-01 12:44 ` Patchwork
2023-06-01 17:13 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny
2023-06-03 9:41 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-06-01 12:44 UTC (permalink / raw)
To: Andrzej Hajda; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5747 bytes --]
== Series Details ==
Series: gem_exec_balancer: move no-GuC requirement to test functions
URL : https://patchwork.freedesktop.org/series/118695/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13213 -> IGTPW_9091
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/index.html
Participating hosts (38 -> 36)
------------------------------
Missing (2): fi-kbl-8809g bat-dg1-5
Known issues
------------
Here are the changes found in IGTPW_9091 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: [PASS][1] -> [DMESG-FAIL][2] ([i915#4258] / [i915#7913])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: [PASS][3] -> [ABORT][4] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#7981] / [i915#8347])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/bat-rpls-2/igt@i915_selftest@live@reset.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-rpls-2/igt@i915_selftest@live@reset.html
- bat-rpls-1: [PASS][5] -> [ABORT][6] ([i915#4983] / [i915#7461] / [i915#8347] / [i915#8384])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/bat-rpls-1/igt@i915_selftest@live@reset.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-rpls-1/igt@i915_selftest@live@reset.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#1845] / [i915#5354]) +2 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc:
- bat-adlp-9: NOTRUN -> [SKIP][8] ([i915#3546]) +1 similar issue
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-adlp-9/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_psr@primary_mmap_gtt:
- bat-rplp-1: NOTRUN -> [ABORT][9] ([i915#8442])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
#### Possible fixes ####
* igt@i915_getparams_basic@basic-subslice-total:
- fi-kbl-soraka: [INCOMPLETE][10] -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/fi-kbl-soraka/igt@i915_getparams_basic@basic-subslice-total.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/fi-kbl-soraka/igt@i915_getparams_basic@basic-subslice-total.html
* igt@i915_selftest@live@requests:
- {bat-mtlp-8}: [DMESG-FAIL][12] ([i915#7269]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/bat-mtlp-8/igt@i915_selftest@live@requests.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-mtlp-8/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- {bat-mtlp-6}: [DMESG-WARN][14] ([i915#6367]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/bat-mtlp-6/igt@i915_selftest@live@slpc.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-mtlp-6/igt@i915_selftest@live@slpc.html
- {bat-mtlp-8}: [DMESG-WARN][16] ([i915#6367]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-mtlp-8/igt@i915_selftest@live@slpc.html
#### Warnings ####
* igt@kms_psr@sprite_plane_onoff:
- bat-rplp-1: [ABORT][18] ([i915#8442]) -> [SKIP][19] ([i915#1072])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7316 -> IGTPW_9091
CI-20190529: 20190529
CI_DRM_13213: d843d21ba5c296c727bc4c0849b6569d03ea1718 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9091: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/index.html
IGT_7316: 536e9f20a90c41ac96eae815a184a5fe134bf586 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/index.html
[-- Attachment #2: Type: text/html, Size: 6923 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [igt-dev] [PATCH i-g-t] gem_exec_balancer: move no-GuC requirement to test functions
2023-06-01 10:02 [igt-dev] [PATCH i-g-t] gem_exec_balancer: move no-GuC requirement to test functions Andrzej Hajda
` (2 preceding siblings ...)
2023-06-01 12:44 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2023-06-01 17:13 ` Kamil Konieczny
2023-06-03 9:41 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Kamil Konieczny @ 2023-06-01 17:13 UTC (permalink / raw)
To: igt-dev; +Cc: Nirmoy Das
Hi Andrzej,
On 2023-06-01 at 12:02:50 +0200, Andrzej Hajda wrote:
> Requirements put into igt_subtest_group/igt_fixture are checked for
> all tests in the file. Even if they do not influence test execution
> they print misleading infos.
Could you provide example ? You can use something like:
./gem_exec_balancer --r nop
...test output...
Subtest nop: SUCCESS (36,896s)
Test requirement not met in [...]gem_exec_balancer.c:3608:
Test requirement: !gem_using_guc_submission(i915)
Please also mension that such output may happen before or after
subtest and may additionally confuse when some error happens.
Regards,
Kamil
>
> Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
> ---
> tests/i915/gem_exec_balancer.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/tests/i915/gem_exec_balancer.c b/tests/i915/gem_exec_balancer.c
> index 004ba9a14fe..9190fc2383f 100644
> --- a/tests/i915/gem_exec_balancer.c
> +++ b/tests/i915/gem_exec_balancer.c
> @@ -1525,6 +1525,7 @@ bonded_runner(int i915,
> * submission across multiple engines.
> */
> igt_require(gem_scheduler_has_preemption(i915));
> + igt_require(!gem_using_guc_submission(i915));
>
> cycles = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
>
> @@ -1996,6 +1997,7 @@ static void sliced(int i915)
>
> igt_require(gem_scheduler_has_preemption(i915));
> igt_require(gem_scheduler_has_semaphores(i915));
> + igt_require(!gem_using_guc_submission(i915));
>
> for (int class = 0; class < 32; class++) {
> struct i915_engine_class_instance *ci;
> @@ -3605,7 +3607,6 @@ igt_main
>
> igt_subtest_group {
> igt_fixture {
> - igt_require(!gem_using_guc_submission(i915));
> intel_allocator_multiprocess_start();
> }
>
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] ✓ Fi.CI.IGT: success for gem_exec_balancer: move no-GuC requirement to test functions
2023-06-01 10:02 [igt-dev] [PATCH i-g-t] gem_exec_balancer: move no-GuC requirement to test functions Andrzej Hajda
` (3 preceding siblings ...)
2023-06-01 17:13 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny
@ 2023-06-03 9:41 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-06-03 9:41 UTC (permalink / raw)
To: Andrzej Hajda; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 21973 bytes --]
== Series Details ==
Series: gem_exec_balancer: move no-GuC requirement to test functions
URL : https://patchwork.freedesktop.org/series/118695/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13213_full -> IGTPW_9091_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/index.html
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9091_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_hdmi_inject@inject-audio:
- {shard-rkl}: [SKIP][1] ([i915#433]) -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-rkl-6/igt@kms_hdmi_inject@inject-audio.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-rkl-1/igt@kms_hdmi_inject@inject-audio.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1}:
- {shard-dg1}: NOTRUN -> [SKIP][3] +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_vblank@pipe-d-ts-continuation-suspend:
- {shard-tglu}: [PASS][4] -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-tglu-6/igt@kms_vblank@pipe-d-ts-continuation-suspend.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-tglu-10/igt@kms_vblank@pipe-d-ts-continuation-suspend.html
Known issues
------------
Here are the changes found in IGTPW_9091_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_persistence@engines-hang:
- shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-snb5/igt@gem_ctx_persistence@engines-hang.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-apl: [PASS][7] -> [FAIL][8] ([i915#2842])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-apl4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-apl1/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [PASS][9] -> [ABORT][10] ([i915#5566])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-apl6/igt@gen9_exec_parse@allowed-single.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-apl1/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@load:
- shard-snb: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#6227])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-snb4/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][12] -> [ABORT][13] ([i915#4528])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][14] -> [SKIP][15] ([fdo#109271])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_freq_api@freq-reset:
- shard-apl: NOTRUN -> [SKIP][16] ([fdo#109271]) +3 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-apl1/igt@i915_pm_freq_api@freq-reset.html
* igt@kms_ccs@pipe-c-bad-aux-stride-4_tiled_mtl_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][17] ([fdo#109271]) +3 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-glk2/igt@kms_ccs@pipe-c-bad-aux-stride-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-snb: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4579]) +14 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-snb5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][19] -> [FAIL][20] ([i915#2346])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-glk: [PASS][21] -> [FAIL][22] ([i915#2346])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][23] ([fdo#109271]) +78 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][24] ([i915#5465]) +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- {shard-rkl}: [ABORT][25] ([i915#5507]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-rkl-7/igt@device_reset@unbind-reset-rebind.html
- shard-apl: [ABORT][27] ([i915#5507]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-apl2/igt@device_reset@unbind-reset-rebind.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-apl6/igt@device_reset@unbind-reset-rebind.html
- {shard-tglu}: [ABORT][29] ([i915#5507]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-tglu-10/igt@device_reset@unbind-reset-rebind.html
- shard-glk: [ABORT][31] ([i915#5507]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-glk4/igt@device_reset@unbind-reset-rebind.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-glk9/igt@device_reset@unbind-reset-rebind.html
* igt@gem_ctx_freq@sysfs:
- {shard-dg1}: [FAIL][33] ([i915#6786]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-dg1-14/igt@gem_ctx_freq@sysfs.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-dg1-14/igt@gem_ctx_freq@sysfs.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [FAIL][35] ([i915#2846]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-glk1/igt@gem_exec_fair@basic-deadline.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-glk4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@bcs0:
- {shard-rkl}: [FAIL][37] ([i915#2842]) -> [PASS][38] +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][39] ([i915#2842]) -> [PASS][40] +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- {shard-rkl}: [SKIP][41] ([i915#1397]) -> [PASS][42] +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-rkl-3/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- {shard-dg1}: [SKIP][43] ([i915#1397]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-dg1-17/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rps@reset:
- shard-snb: [DMESG-FAIL][45] ([i915#8319]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-snb1/igt@i915_pm_rps@reset.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-snb1/igt@i915_pm_rps@reset.html
* igt@i915_suspend@basic-s3-without-i915:
- {shard-dg1}: [DMESG-WARN][47] ([i915#4391] / [i915#4423]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-dg1-18/igt@i915_suspend@basic-s3-without-i915.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-dg1-16/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2:
- shard-glk: [FAIL][49] ([i915#2521]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- {shard-rkl}: [FAIL][51] ([i915#3743]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-rkl-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-rkl-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][53] ([i915#2346]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_hdmi_inject@inject-audio:
- shard-snb: [SKIP][55] ([fdo#109271]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-snb4/igt@kms_hdmi_inject@inject-audio.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-snb4/igt@kms_hdmi_inject@inject-audio.html
- {shard-tglu}: [FAIL][57] ([IGT#3]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
- shard-glk: [SKIP][59] ([fdo#109271]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-glk3/igt@kms_hdmi_inject@inject-audio.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-glk3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_rotation_crc@multiplane-rotation:
- {shard-rkl}: [ABORT][61] ([i915#8311]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-rkl-4/igt@kms_rotation_crc@multiplane-rotation.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation.html
#### Warnings ####
* igt@kms_content_protection@mei_interface:
- shard-apl: [SKIP][63] ([fdo#109271]) -> [SKIP][64] ([fdo#109271] / [i915#4579])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-apl4/igt@kms_content_protection@mei_interface.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-apl1/igt@kms_content_protection@mei_interface.html
- shard-snb: [SKIP][65] ([fdo#109271]) -> [SKIP][66] ([fdo#109271] / [i915#4579])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-snb5/igt@kms_content_protection@mei_interface.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-snb4/igt@kms_content_protection@mei_interface.html
- shard-glk: [SKIP][67] ([fdo#109271]) -> [SKIP][68] ([fdo#109271] / [i915#4579])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13213/shard-glk2/igt@kms_content_protection@mei_interface.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/shard-glk8/igt@kms_content_protection@mei_interface.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8311]: https://gitlab.freedesktop.org/drm/intel/issues/8311
[i915#8319]: https://gitlab.freedesktop.org/drm/intel/issues/8319
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7316 -> IGTPW_9091
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13213: d843d21ba5c296c727bc4c0849b6569d03ea1718 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9091: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/index.html
IGT_7316: 536e9f20a90c41ac96eae815a184a5fe134bf586 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9091/index.html
[-- Attachment #2: Type: text/html, Size: 18761 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread