* [igt-dev] [PATCH] tests/xe_exec_compute_mode: Increase fence timeout for simulation env
@ 2023-06-20 10:34 Bommu Krishnaiah
2023-06-20 10:58 ` Zbigniew Kempczyński
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Bommu Krishnaiah @ 2023-06-20 10:34 UTC (permalink / raw)
To: igt-dev; +Cc: Bommu Krishnaiah
Increase fence timeout to 100 seconds for simulation env.
Value is determined based on experiments.
Signed-off-by: Bommu Krishnaiah <krishnaiah.bommu@intel.com>
---
tests/xe/xe_exec_compute_mode.c | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)
diff --git a/tests/xe/xe_exec_compute_mode.c b/tests/xe/xe_exec_compute_mode.c
index 2d950fdc..e2c9d0f3 100644
--- a/tests/xe/xe_exec_compute_mode.c
+++ b/tests/xe/xe_exec_compute_mode.c
@@ -110,6 +110,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
} *data;
int i, j, b;
int map_fd = -1;
+ int64_t fence_timeout;
igt_assert(n_engines <= MAX_N_ENGINES);
@@ -181,7 +182,12 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
to_user_pointer(data), addr,
bo_size, sync, 1);
#define ONE_SEC 1000
- xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, NULL, ONE_SEC);
+#define HUNDRED_SEC 100000
+
+ fence_timeout = igt_run_in_simulation() ? HUNDRED_SEC : ONE_SEC;
+
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, NULL,
+ fence_timeout);
data[0].vm_sync = 0;
for (i = 0; i < n_execs; i++) {
@@ -207,7 +213,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
if (flags & REBIND && i + 1 != n_execs) {
xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
- NULL, ONE_SEC);
+ NULL, fence_timeout);
xe_vm_unbind_async(fd, vm, bind_engines[e], 0,
addr, bo_size, NULL, 0);
@@ -223,7 +229,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
addr, bo_size, sync,
1);
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
- NULL, ONE_SEC);
+ NULL, fence_timeout);
data[0].vm_sync = 0;
}
@@ -236,7 +242,8 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
* an invalidate.
*/
xe_wait_ufence(fd, &data[i].exec_sync,
- USER_FENCE_VALUE, NULL, ONE_SEC);
+ USER_FENCE_VALUE, NULL,
+ fence_timeout);
igt_assert_eq(data[i].data, 0xc0ffee);
} else if (i * 2 != n_execs) {
/*
@@ -266,7 +273,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
j = flags & INVALIDATE ? n_execs - 1 : 0;
for (i = j; i < n_execs; i++)
xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, NULL,
- ONE_SEC);
+ fence_timeout);
/* Wait for all execs to complete */
if (flags & INVALIDATE)
@@ -275,7 +282,8 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
sync[0].addr = to_user_pointer(&data[0].vm_sync);
xe_vm_unbind_async(fd, vm, bind_engines[0], 0, addr, bo_size,
sync, 1);
- xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, NULL, ONE_SEC);
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, NULL,
+ fence_timeout);
for (i = j; i < n_execs; i++)
igt_assert_eq(data[i].data, 0xc0ffee);
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [igt-dev] [PATCH] tests/xe_exec_compute_mode: Increase fence timeout for simulation env 2023-06-20 10:34 [igt-dev] [PATCH] tests/xe_exec_compute_mode: Increase fence timeout for simulation env Bommu Krishnaiah @ 2023-06-20 10:58 ` Zbigniew Kempczyński 2023-06-20 12:09 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Zbigniew Kempczyński @ 2023-06-20 10:58 UTC (permalink / raw) To: Bommu Krishnaiah; +Cc: igt-dev On Tue, Jun 20, 2023 at 04:04:12PM +0530, Bommu Krishnaiah wrote: > Increase fence timeout to 100 seconds for simulation env. > Value is determined based on experiments. > > Signed-off-by: Bommu Krishnaiah <krishnaiah.bommu@intel.com> > --- > tests/xe/xe_exec_compute_mode.c | 20 ++++++++++++++------ > 1 file changed, 14 insertions(+), 6 deletions(-) > > diff --git a/tests/xe/xe_exec_compute_mode.c b/tests/xe/xe_exec_compute_mode.c > index 2d950fdc..e2c9d0f3 100644 > --- a/tests/xe/xe_exec_compute_mode.c > +++ b/tests/xe/xe_exec_compute_mode.c > @@ -110,6 +110,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, > } *data; > int i, j, b; > int map_fd = -1; > + int64_t fence_timeout; > > igt_assert(n_engines <= MAX_N_ENGINES); > > @@ -181,7 +182,12 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, > to_user_pointer(data), addr, > bo_size, sync, 1); > #define ONE_SEC 1000 > - xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, NULL, ONE_SEC); > +#define HUNDRED_SEC 100000 > + > + fence_timeout = igt_run_in_simulation() ? HUNDRED_SEC : ONE_SEC; > + > + xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, NULL, > + fence_timeout); > data[0].vm_sync = 0; > > for (i = 0; i < n_execs; i++) { > @@ -207,7 +213,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, > > if (flags & REBIND && i + 1 != n_execs) { > xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, > - NULL, ONE_SEC); > + NULL, fence_timeout); > xe_vm_unbind_async(fd, vm, bind_engines[e], 0, > addr, bo_size, NULL, 0); > > @@ -223,7 +229,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, > addr, bo_size, sync, > 1); > xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, > - NULL, ONE_SEC); > + NULL, fence_timeout); > data[0].vm_sync = 0; > } > > @@ -236,7 +242,8 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, > * an invalidate. > */ > xe_wait_ufence(fd, &data[i].exec_sync, > - USER_FENCE_VALUE, NULL, ONE_SEC); > + USER_FENCE_VALUE, NULL, > + fence_timeout); > igt_assert_eq(data[i].data, 0xc0ffee); > } else if (i * 2 != n_execs) { > /* > @@ -266,7 +273,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, > j = flags & INVALIDATE ? n_execs - 1 : 0; > for (i = j; i < n_execs; i++) > xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, NULL, > - ONE_SEC); > + fence_timeout); > > /* Wait for all execs to complete */ > if (flags & INVALIDATE) > @@ -275,7 +282,8 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, > sync[0].addr = to_user_pointer(&data[0].vm_sync); > xe_vm_unbind_async(fd, vm, bind_engines[0], 0, addr, bo_size, > sync, 1); > - xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, NULL, ONE_SEC); > + xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, NULL, > + fence_timeout); > > for (i = j; i < n_execs; i++) > igt_assert_eq(data[i].data, 0xc0ffee); > -- > 2.25.1 > There's ack from me for this change, we'll back to it soon to alter definitions after uapi change. Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for tests/xe_exec_compute_mode: Increase fence timeout for simulation env 2023-06-20 10:34 [igt-dev] [PATCH] tests/xe_exec_compute_mode: Increase fence timeout for simulation env Bommu Krishnaiah 2023-06-20 10:58 ` Zbigniew Kempczyński @ 2023-06-20 12:09 ` Patchwork 2023-06-20 12:41 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-06-20 18:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-06-20 12:09 UTC (permalink / raw) To: Bommu Krishnaiah; +Cc: igt-dev == Series Details == Series: tests/xe_exec_compute_mode: Increase fence timeout for simulation env URL : https://patchwork.freedesktop.org/series/119575/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/913763 for the overview. containers:igt has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/44057219): Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=44057204 responseStatus=200 OK token=64_Tm1nU section_end:1687262933:download_artifacts section_start:1687262933:step_script Executing "step_script" stage of the job script Using docker image sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176 for registry.freedesktop.org/wayland/ci-templates/buildah:2019-08-13.0 with digest registry.freedesktop.org/wayland/ci-templates/buildah@sha256:7dbcf22cd2c1c7d49db0dc7b4ab207c3d6a4a09bd81cc3b71a688d3727d8749f ... $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org $ podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY Login Succeeded! $ .gitlab-ci/pull-or-rebuild.sh igt Dockerfile igt STEP 1: FROM registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-c6106684914590085ae7690384a330fc77531b5f Error: error creating build container: Error initializing source docker://registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-c6106684914590085ae7690384a330fc77531b5f: Error reading manifest commit-c6106684914590085ae7690384a330fc77531b5f in registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora: received unexpected HTTP status: 500 Internal Server Error section_end:1687262935:step_script section_start:1687262935:cleanup_file_variables Cleaning up project directory and file based variables section_end:1687262935:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/913763 ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/xe_exec_compute_mode: Increase fence timeout for simulation env 2023-06-20 10:34 [igt-dev] [PATCH] tests/xe_exec_compute_mode: Increase fence timeout for simulation env Bommu Krishnaiah 2023-06-20 10:58 ` Zbigniew Kempczyński 2023-06-20 12:09 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork @ 2023-06-20 12:41 ` Patchwork 2023-06-20 18:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-06-20 12:41 UTC (permalink / raw) To: Bommu Krishnaiah; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8314 bytes --] == Series Details == Series: tests/xe_exec_compute_mode: Increase fence timeout for simulation env URL : https://patchwork.freedesktop.org/series/119575/ State : success == Summary == CI Bug Log - changes from CI_DRM_13292 -> IGTPW_9216 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/index.html Participating hosts (43 -> 43) ------------------------------ Additional (1): bat-dg1-8 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9216 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlp-11: NOTRUN -> [SKIP][1] ([i915#7456]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-adlp-11/igt@debugfs_test@basic-hwmon.html * igt@gem_tiled_pread_basic: - bat-adlp-11: NOTRUN -> [SKIP][2] ([i915#3282]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-adlp-11/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][3] ([i915#7077]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_selftest@live@requests: - bat-rpls-1: [PASS][4] -> [ABORT][5] ([i915#7911] / [i915#7920] / [i915#7982]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/bat-rpls-1/igt@i915_selftest@live@requests.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-rpls-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [PASS][6] -> [DMESG-WARN][7] ([i915#6367]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/bat-mtlp-6/igt@i915_selftest@live@slpc.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-mtlp-6/igt@i915_selftest@live@slpc.html - bat-rpls-2: [PASS][8] -> [DMESG-WARN][9] ([i915#6367]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/bat-rpls-2/igt@i915_selftest@live@slpc.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-rpls-2/igt@i915_selftest@live@slpc.html * igt@kms_chamelium_frames@hdmi-crc-fast: - bat-adlp-11: NOTRUN -> [SKIP][10] ([i915#7828]) +7 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-adlp-11/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adlp-11: NOTRUN -> [SKIP][11] ([i915#4103]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_flip@basic-flip-vs-wf_vblank@d-dp6: - bat-adlp-11: NOTRUN -> [ABORT][12] ([i915#4423]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp6.html #### Possible fixes #### * igt@i915_module_load@load: - bat-adlp-11: [ABORT][13] ([i915#4423]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/bat-adlp-11/igt@i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_selftest@live@gt_heartbeat: - fi-glk-j4005: [DMESG-FAIL][15] ([i915#5334]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - bat-rpls-2: [DMESG-FAIL][17] ([i915#4258] / [i915#7913]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@guc: - bat-rpls-2: [DMESG-WARN][19] ([i915#7852]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/bat-rpls-2/igt@i915_selftest@live@guc.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-rpls-2/igt@i915_selftest@live@guc.html * igt@i915_selftest@live@migrate: - bat-atsm-1: [DMESG-FAIL][21] ([i915#7699] / [i915#7913]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/bat-atsm-1/igt@i915_selftest@live@migrate.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-atsm-1/igt@i915_selftest@live@migrate.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1: - bat-dg2-8: [FAIL][23] ([i915#7932]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html #### Warnings #### * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: [ABORT][25] ([i915#4579] / [i915#8260]) -> [SKIP][26] ([i915#3555] / [i915#4579]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.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#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8513]: https://gitlab.freedesktop.org/drm/intel/issues/8513 [i915#8676]: https://gitlab.freedesktop.org/drm/intel/issues/8676 [i915#8678]: https://gitlab.freedesktop.org/drm/intel/issues/8678 [i915#8679]: https://gitlab.freedesktop.org/drm/intel/issues/8679 [i915#8698]: https://gitlab.freedesktop.org/drm/intel/issues/8698 [i915#8699]: https://gitlab.freedesktop.org/drm/intel/issues/8699 [i915#8700]: https://gitlab.freedesktop.org/drm/intel/issues/8700 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7339 -> IGTPW_9216 CI-20190529: 20190529 CI_DRM_13292: b510d9f7f18f8bc4af1c1d1352c6e58971636d27 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9216: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/index.html IGT_7339: 4476edb0fb09b886f7e667d1174d13299d98c23f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/index.html [-- Attachment #2: Type: text/html, Size: 8684 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/xe_exec_compute_mode: Increase fence timeout for simulation env 2023-06-20 10:34 [igt-dev] [PATCH] tests/xe_exec_compute_mode: Increase fence timeout for simulation env Bommu Krishnaiah ` (2 preceding siblings ...) 2023-06-20 12:41 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-06-20 18:18 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-06-20 18:18 UTC (permalink / raw) To: Bommu Krishnaiah; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 33518 bytes --] == Series Details == Series: tests/xe_exec_compute_mode: Increase fence timeout for simulation env URL : https://patchwork.freedesktop.org/series/119575/ State : success == Summary == CI Bug Log - changes from CI_DRM_13292_full -> IGTPW_9216_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_9216_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#4525]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [PASS][2] -> [FAIL][3] ([i915#2842]) +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][4] -> [FAIL][5] ([i915#2842]) +1 similar issue [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#4613]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][7] ([i915#4613]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#3297]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#3297]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen3_render_tiledy_blits: - shard-rkl: NOTRUN -> [SKIP][10] ([fdo#109289]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@gen3_render_tiledy_blits.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][11] -> [FAIL][12] ([i915#3989] / [i915#454]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][13] -> [SKIP][14] ([i915#4281]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-tglu-4/igt@i915_pm_dc@dc9-dpms.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#1397]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_suspend@forcewake: - shard-apl: [PASS][16] -> [ABORT][17] ([i915#180]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-apl4/igt@i915_suspend@forcewake.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-apl2/igt@i915_suspend@forcewake.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#2521]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#8502]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#5286]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][22] ([fdo#111615] / [i915#5286]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][23] ([fdo#111614] / [i915#3638]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][24] ([fdo#111614]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][25] ([fdo#111615]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html - shard-rkl: NOTRUN -> [SKIP][26] ([fdo#110723]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][27] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html - shard-rkl: NOTRUN -> [SKIP][28] ([i915#3734] / [i915#5354] / [i915#6095]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#5354] / [i915#6095]) +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-6/igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#3886] / [i915#5354] / [i915#6095]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][31] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-6/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#5354] / [i915#6095]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-5/igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#5354]) +5 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#3742]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-2/igt@kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#3742]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-2/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#7828]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#7828]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-8/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4579] / [i915#7118]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][40] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-10/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#3359]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3359]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-tglu: NOTRUN -> [SKIP][43] ([fdo#109274]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-rkl: NOTRUN -> [SKIP][44] ([fdo#111767] / [fdo#111825]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-tglu: NOTRUN -> [SKIP][45] ([fdo#109274] / [fdo#111767]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][46] -> [FAIL][47] ([i915#2346]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [PASS][48] -> [FAIL][49] ([i915#2346]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-snb: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111767]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-snb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][51] -> [FAIL][52] ([i915#79]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-nonexisting-fb: - shard-snb: NOTRUN -> [SKIP][53] ([fdo#109271]) +16 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-snb4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-tglu: NOTRUN -> [SKIP][54] ([fdo#109274] / [i915#3637]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-9/igt@kms_flip@2x-plain-flip-fb-recreate.html - shard-rkl: NOTRUN -> [SKIP][55] ([fdo#111825]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank@a-vga1: - shard-snb: [PASS][56] -> [FAIL][57] ([i915#79]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-snb5/igt@kms_flip@flip-vs-expired-vblank@a-vga1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-snb7/igt@kms_flip@flip-vs-expired-vblank@a-vga1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-snb: [PASS][58] -> [SKIP][59] ([fdo#109271]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-snb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][60] ([fdo#111825] / [i915#1825]) +7 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3023]) +2 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][62] ([fdo#109280]) +8 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][63] ([i915#8292]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#4579]) +9 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-snb5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-b-vga-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#5176]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4579] / [i915#5176]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4579] / [i915#5235]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#5235]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#6524]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][70] ([i915#6524]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-9/igt@kms_prime@d3hot.html * igt@kms_psr@dpms: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#1072]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@kms_psr@dpms.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-tglu: NOTRUN -> [SKIP][72] ([fdo#110189]) +5 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-3/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][73] ([i915#5465]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-tglu: [PASS][74] -> [ABORT][75] ([i915#5122] / [i915#8213]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-tglu-7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-9/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@kms_vblank@pipe-c-ts-continuation-modeset-hang: - shard-glk: [PASS][76] -> [SKIP][77] ([fdo#109271]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-glk3/igt@kms_vblank@pipe-c-ts-continuation-modeset-hang.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-glk9/igt@kms_vblank@pipe-c-ts-continuation-modeset-hang.html - shard-apl: [PASS][78] -> [SKIP][79] ([fdo#109271]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-apl7/igt@kms_vblank@pipe-c-ts-continuation-modeset-hang.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-apl2/igt@kms_vblank@pipe-c-ts-continuation-modeset-hang.html * igt@kms_vblank@pipe-d-ts-continuation-idle: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#4070] / [i915#533] / [i915#6768]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@kms_vblank@pipe-d-ts-continuation-idle.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#2433]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html - shard-tglu: NOTRUN -> [SKIP][82] ([fdo#109289]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-7/igt@perf@unprivileged-single-ctx-counters.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][83] ([fdo#109307]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_get_bo_offset@get-bad-handle: - shard-rkl: NOTRUN -> [SKIP][84] ([fdo#109315]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-6/igt@v3d/v3d_get_bo_offset@get-bad-handle.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-tglu: NOTRUN -> [SKIP][85] ([fdo#109315] / [i915#2575]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-8/igt@v3d/v3d_perfmon@get-values-invalid-pad.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][86] ([i915#6268]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@unwedge-stress: - {shard-dg1}: [FAIL][88] ([i915#5784]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-dg1-12/igt@gem_eio@unwedge-stress.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][90] ([i915#2846]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html - shard-glk: [FAIL][92] ([i915#2846]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-glk8/igt@gem_exec_fair@basic-deadline.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-glk2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][94] ([i915#2842]) -> [PASS][95] +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][96] ([i915#2842]) -> [PASS][97] +2 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-glk4/igt@gem_exec_fair@basic-pace@vcs0.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-glk9/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [TIMEOUT][98] ([i915#5493]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_offset@clear@smem0: - {shard-dg1}: [DMESG-WARN][100] ([i915#8304]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-dg1-15/igt@gem_mmap_offset@clear@smem0.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-dg1-16/igt@gem_mmap_offset@clear@smem0.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [SKIP][102] ([i915#1937] / [i915#4579]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@modeset-lpsp: - {shard-dg1}: [SKIP][104] ([i915#1397]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][106] ([i915#1397]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][108] ([fdo#103375]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1: - shard-apl: [ABORT][110] ([i915#180]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-apl1/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][112] ([i915#2346]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [FAIL][114] ([i915#2346]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html #### Warnings #### * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][116] ([fdo#109285]) -> [SKIP][117] ([fdo#109285] / [i915#4098]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][118] ([i915#4070] / [i915#4816]) -> [SKIP][119] ([i915#4816]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13292/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [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#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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [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#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#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#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [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#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7339 -> IGTPW_9216 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13292: b510d9f7f18f8bc4af1c1d1352c6e58971636d27 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9216: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9216/index.html IGT_7339: 4476edb0fb09b886f7e667d1174d13299d98c23f @ 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_9216/index.html [-- Attachment #2: Type: text/html, Size: 37818 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-06-20 18:18 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-20 10:34 [igt-dev] [PATCH] tests/xe_exec_compute_mode: Increase fence timeout for simulation env Bommu Krishnaiah 2023-06-20 10:58 ` Zbigniew Kempczyński 2023-06-20 12:09 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork 2023-06-20 12:41 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-06-20 18:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox