* [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe()
@ 2020-03-18 0:49 Lyude
2020-03-18 0:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_pipe_crc_basic: Add disable-crc-after-crtc-pipe-* tests Lyude
` (9 more replies)
0 siblings, 10 replies; 11+ messages in thread
From: Lyude @ 2020-03-18 0:49 UTC (permalink / raw)
To: igt-dev; +Cc: nouveau
From: Lyude Paul <lyude@redhat.com>
Signed-off-by: Lyude Paul <lyude@redhat.com>
---
tests/kms_pipe_crc_basic.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index d169b7bd..f121e27e 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -65,15 +65,14 @@ static void test_bad_source(data_t *data)
static void test_read_crc(data_t *data, enum pipe pipe, unsigned flags)
{
igt_display_t *display = &data->display;
- igt_output_t *output = igt_get_single_output_for_pipe(display, pipe);
+ igt_output_t *output;
igt_plane_t *primary;
drmModeModeInfo *mode;
igt_crc_t *crcs = NULL;
int c, j;
- igt_skip_on(pipe >= data->display.n_pipes);
- igt_require_f(output, "No connector found for pipe %s\n",
- kmstest_pipe_name(pipe));
+ igt_display_require_output_on_pipe(display, pipe);
+ output = igt_get_single_output_for_pipe(display, pipe);
igt_display_reset(display);
igt_output_set_pipe(output, pipe);
--
2.24.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/kms_pipe_crc_basic: Add disable-crc-after-crtc-pipe-* tests
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
@ 2020-03-18 0:49 ` Lyude
2020-03-18 1:22 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Patchwork
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Lyude @ 2020-03-18 0:49 UTC (permalink / raw)
To: igt-dev; +Cc: nouveau
From: Lyude Paul <lyude@redhat.com>
I ended up hitting some bugs when writing nouveau's CRC implementation
due to incorrectly handling the situation where we disable CRCs on a
pipe that already been disabled, which ended up causing some other vague
igt issues when running certain tests in multi-mode.
So, let's add a trivial test for this scenario while we're at it.
Signed-off-by: Lyude Paul <lyude@redhat.com>
---
tests/kms_pipe_crc_basic.c | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index f121e27e..4a58332a 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -152,6 +152,41 @@ static void test_read_crc(data_t *data, enum pipe pipe, unsigned flags)
}
}
+static void test_disable_crc_after_crtc(data_t *data, enum pipe pipe)
+{
+ igt_display_t *display = &data->display;
+ igt_output_t *output = igt_get_single_output_for_pipe(&data->display, pipe);
+ igt_pipe_crc_t *pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe, "auto");
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ igt_crc_t crc[2];
+
+ igt_display_reset(display);
+ igt_output_set_pipe(output, pipe);
+
+ igt_create_color_fb(data->drm_fd,
+ mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ LOCAL_DRM_FORMAT_MOD_NONE,
+ 0.0, 1.0, 0.0, &data->fb);
+ igt_plane_set_fb(igt_output_get_plane(output, 0), &data->fb);
+ igt_display_commit(display);
+
+ igt_pipe_crc_start(pipe_crc);
+ igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc[0]);
+
+ kmstest_set_connector_dpms(data->drm_fd, output->config.connector,
+ DRM_MODE_DPMS_OFF);
+ igt_pipe_crc_stop(pipe_crc);
+
+ kmstest_set_connector_dpms(data->drm_fd, output->config.connector,
+ DRM_MODE_DPMS_ON);
+ igt_pipe_crc_collect_crc(pipe_crc, &crc[1]);
+ igt_assert_crc_equal(&crc[0], &crc[1]);
+
+ igt_pipe_crc_free(pipe_crc);
+ igt_remove_fb(data->drm_fd, &data->fb);
+}
+
data_t data = {0, };
igt_main
@@ -196,6 +231,9 @@ igt_main
test_read_crc(&data, pipe, 0);
}
+ igt_subtest_f("disable-crc-after-crtc-pipe-%s", kmstest_pipe_name(pipe))
+ test_disable_crc_after_crtc(&data, pipe);
+
igt_subtest_f("hang-read-crc-pipe-%s", kmstest_pipe_name(pipe)) {
igt_hang_t hang = igt_allow_hang(data.drm_fd, 0, 0);
--
2.24.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe()
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
2020-03-18 0:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_pipe_crc_basic: Add disable-crc-after-crtc-pipe-* tests Lyude
@ 2020-03-18 1:22 ` Patchwork
2020-03-18 1:43 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2020-03-18 1:22 UTC (permalink / raw)
To: Lyude Paul; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe()
URL : https://patchwork.freedesktop.org/series/74808/
State : failure
== Summary ==
ERROR! This series introduces new undocumented tests:
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-A
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-B
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-C
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-D
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-E
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-F
Can you document them as per the requirement in the [CONTRIBUTING.md]?
[Documentation] has more details on how to do this.
Here are few examples:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d
Thanks in advance!
[CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19
[Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe
Other than that, pipeline status: SUCCESS.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/120970 for the overview.
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/120970
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe()
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
2020-03-18 0:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_pipe_crc_basic: Add disable-crc-after-crtc-pipe-* tests Lyude
2020-03-18 1:22 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Patchwork
@ 2020-03-18 1:43 ` Patchwork
2020-03-18 7:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2020-03-18 1:43 UTC (permalink / raw)
To: Lyude Paul; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe()
URL : https://patchwork.freedesktop.org/series/74808/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_8145 -> IGTPW_4316
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/index.html
Known issues
------------
Here are the changes found in IGTPW_4316 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gem_contexts:
- fi-cml-s: [PASS][1] -> [DMESG-FAIL][2] ([i915#877])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/fi-cml-s/igt@i915_selftest@live@gem_contexts.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/fi-cml-s/igt@i915_selftest@live@gem_contexts.html
#### Possible fixes ####
* igt@gem_exec_parallel@fds:
- fi-glk-dsi: [INCOMPLETE][3] ([i915#529] / [i915#58] / [k.org#198133]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/fi-glk-dsi/igt@gem_exec_parallel@fds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/fi-glk-dsi/igt@gem_exec_parallel@fds.html
* igt@i915_selftest@live@gem_contexts:
- fi-skl-lmem: [INCOMPLETE][5] ([i915#424]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/fi-skl-lmem/igt@i915_selftest@live@gem_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/fi-skl-lmem/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@hangcheck:
- fi-bwr-2160: [INCOMPLETE][7] ([i915#489]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/fi-bwr-2160/igt@i915_selftest@live@hangcheck.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/fi-bwr-2160/igt@i915_selftest@live@hangcheck.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [FAIL][9] ([fdo#111407]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
[i915#424]: https://gitlab.freedesktop.org/drm/intel/issues/424
[i915#489]: https://gitlab.freedesktop.org/drm/intel/issues/489
[i915#529]: https://gitlab.freedesktop.org/drm/intel/issues/529
[i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
[i915#877]: https://gitlab.freedesktop.org/drm/intel/issues/877
[k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
Participating hosts (46 -> 42)
------------------------------
Missing (4): fi-byt-clapper fi-byt-squawks fi-bsw-cyan fi-hsw-4200u
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5518 -> IGTPW_4316
CI-20190529: 20190529
CI_DRM_8145: 5e893da0b8c2bfec015c5eaa7981e1ffab1d7c9c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4316: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/index.html
IGT_5518: ee05a571255783837b18d626c4dff6cd9613cee2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-a
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-b
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-c
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-e
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe()
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
` (2 preceding siblings ...)
2020-03-18 1:43 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2020-03-18 7:46 ` Patchwork
2020-03-19 17:53 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev2) Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2020-03-18 7:46 UTC (permalink / raw)
To: Lyude Paul; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe()
URL : https://patchwork.freedesktop.org/series/74808/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_8145_full -> IGTPW_4316_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_4316_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_4316_full, please notify your bug team 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_4316/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_4316_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_whisper@basic-fds-forked:
- shard-iclb: [PASS][1] -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb2/igt@gem_exec_whisper@basic-fds-forked.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb3/igt@gem_exec_whisper@basic-fds-forked.html
New tests
---------
New tests have been introduced between CI_DRM_8145_full and IGTPW_4316_full:
### New IGT tests (4) ###
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-a:
- Statuses : 7 pass(s)
- Exec time: [0.32, 1.50] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.41, 2.57] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-c:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 2.60] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
- Statuses : 1 pass(s) 4 skip(s)
- Exec time: [0.0, 2.47] s
Known issues
------------
Here are the changes found in IGTPW_4316_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_create@create-clear:
- shard-hsw: [PASS][3] -> [TIMEOUT][4] ([i915#1358])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-hsw4/igt@gem_create@create-clear.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-hsw6/igt@gem_create@create-clear.html
* igt@gem_exec_schedule@implicit-both-bsd:
- shard-iclb: [PASS][5] -> [SKIP][6] ([i915#677]) +2 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb4/igt@gem_exec_schedule@implicit-both-bsd.html
* igt@gem_exec_schedule@implicit-both-bsd2:
- shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276] / [i915#677]) +1 similar issue
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb1/igt@gem_exec_schedule@implicit-both-bsd2.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb3/igt@gem_exec_schedule@implicit-both-bsd2.html
* igt@gem_exec_schedule@out-order-bsd2:
- shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#109276]) +12 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb4/igt@gem_exec_schedule@out-order-bsd2.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb5/igt@gem_exec_schedule@out-order-bsd2.html
* igt@gem_exec_schedule@preemptive-hang-bsd:
- shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#112146]) +6 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-apl: [PASS][13] -> [FAIL][14] ([i915#644])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-apl4/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@i915_pm_dc@dc6-psr:
- shard-iclb: [PASS][15] -> [FAIL][16] ([i915#454])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb5/igt@i915_pm_dc@dc6-psr.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
* igt@kms_color@pipe-c-ctm-green-to-red:
- shard-kbl: [PASS][17] -> [FAIL][18] ([i915#129])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-kbl2/igt@kms_color@pipe-c-ctm-green-to-red.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-kbl1/igt@kms_color@pipe-c-ctm-green-to-red.html
- shard-apl: [PASS][19] -> [FAIL][20] ([i915#129])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-apl4/igt@kms_color@pipe-c-ctm-green-to-red.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-apl7/igt@kms_color@pipe-c-ctm-green-to-red.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-apl: [PASS][21] -> [DMESG-WARN][22] ([i915#180]) +2 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [PASS][23] -> [FAIL][24] ([i915#72])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-kbl: [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +5 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglb: [PASS][27] -> [SKIP][28] ([i915#433])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-tglb6/igt@kms_hdmi_inject@inject-audio.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_psr2_su@frontbuffer:
- shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#109642] / [fdo#111068])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb8/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@no_drrs:
- shard-iclb: [PASS][31] -> [FAIL][32] ([i915#173])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb3/igt@kms_psr@no_drrs.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb1/igt@kms_psr@no_drrs.html
* igt@kms_psr@psr2_basic:
- shard-iclb: [PASS][33] -> [SKIP][34] ([fdo#109441])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb2/igt@kms_psr@psr2_basic.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb4/igt@kms_psr@psr2_basic.html
* igt@kms_setmode@basic:
- shard-apl: [PASS][35] -> [FAIL][36] ([i915#31])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-apl8/igt@kms_setmode@basic.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-apl3/igt@kms_setmode@basic.html
* igt@perf_pmu@busy-accuracy-2-vcs1:
- shard-iclb: [PASS][37] -> [SKIP][38] ([fdo#112080]) +10 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb4/igt@perf_pmu@busy-accuracy-2-vcs1.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb6/igt@perf_pmu@busy-accuracy-2-vcs1.html
#### Possible fixes ####
* igt@gem_ctx_persistence@close-replace-race:
- shard-apl: [INCOMPLETE][39] ([fdo#103927] / [i915#1402]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-apl4/igt@gem_ctx_persistence@close-replace-race.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-apl4/igt@gem_ctx_persistence@close-replace-race.html
* igt@gem_exec_balancer@smoke:
- shard-iclb: [SKIP][41] ([fdo#110854]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb7/igt@gem_exec_balancer@smoke.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb4/igt@gem_exec_balancer@smoke.html
* igt@gem_exec_parallel@vcs1-fds:
- shard-iclb: [SKIP][43] ([fdo#112080]) -> [PASS][44] +6 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb3/igt@gem_exec_parallel@vcs1-fds.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html
* igt@gem_exec_schedule@pi-distinct-iova-bsd:
- shard-iclb: [SKIP][45] ([i915#677]) -> [PASS][46] +2 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb4/igt@gem_exec_schedule@pi-distinct-iova-bsd.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb7/igt@gem_exec_schedule@pi-distinct-iova-bsd.html
* igt@gem_exec_schedule@preempt-queue-bsd1:
- shard-iclb: [SKIP][47] ([fdo#109276]) -> [PASS][48] +14 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb1/igt@gem_exec_schedule@preempt-queue-bsd1.html
* igt@gem_exec_schedule@wide-bsd:
- shard-iclb: [SKIP][49] ([fdo#112146]) -> [PASS][50] +3 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb2/igt@gem_exec_schedule@wide-bsd.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb7/igt@gem_exec_schedule@wide-bsd.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-kbl: [DMESG-WARN][51] ([i915#180]) -> [PASS][52] +4 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [DMESG-WARN][53] ([i915#716]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-glk5/igt@gen9_exec_parse@allowed-all.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-glk4/igt@gen9_exec_parse@allowed-all.html
* igt@i915_pm_rpm@fences-dpms:
- shard-tglb: [SKIP][55] ([i915#1316]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-tglb5/igt@i915_pm_rpm@fences-dpms.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-tglb3/igt@i915_pm_rpm@fences-dpms.html
- shard-iclb: [SKIP][57] ([i915#1316]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb2/igt@i915_pm_rpm@fences-dpms.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb2/igt@i915_pm_rpm@fences-dpms.html
* igt@kms_color@pipe-a-legacy-gamma:
- shard-apl: [FAIL][59] ([fdo#108145] / [i915#71]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-apl8/igt@kms_color@pipe-a-legacy-gamma.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-apl7/igt@kms_color@pipe-a-legacy-gamma.html
- shard-kbl: [FAIL][61] ([fdo#108145] / [i915#71]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-kbl2/igt@kms_color@pipe-a-legacy-gamma.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-kbl6/igt@kms_color@pipe-a-legacy-gamma.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-apl: [DMESG-WARN][63] ([i915#180]) -> [PASS][64] +2 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
- shard-iclb: [INCOMPLETE][65] ([i915#1185] / [i915#250]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: [SKIP][67] ([fdo#109441]) -> [PASS][68] +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb5/igt@kms_psr@psr2_primary_page_flip.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
* igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm:
- shard-tglb: [SKIP][69] ([fdo#112015]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html
* igt@perf@low-oa-exponent-permissions:
- shard-tglb: [SKIP][71] -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-tglb5/igt@perf@low-oa-exponent-permissions.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-tglb8/igt@perf@low-oa-exponent-permissions.html
- shard-iclb: [SKIP][73] -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb2/igt@perf@low-oa-exponent-permissions.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb2/igt@perf@low-oa-exponent-permissions.html
* igt@perf_pmu@rc6-runtime-pm:
- shard-glk: [SKIP][75] ([fdo#109271]) -> [PASS][76] +2 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-glk7/igt@perf_pmu@rc6-runtime-pm.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-glk1/igt@perf_pmu@rc6-runtime-pm.html
- shard-tglb: [SKIP][77] ([fdo#111719]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-tglb5/igt@perf_pmu@rc6-runtime-pm.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-tglb8/igt@perf_pmu@rc6-runtime-pm.html
- shard-hsw: [SKIP][79] ([fdo#109271]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-hsw5/igt@perf_pmu@rc6-runtime-pm.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-hsw5/igt@perf_pmu@rc6-runtime-pm.html
- shard-iclb: [SKIP][81] ([i915#293]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb2/igt@perf_pmu@rc6-runtime-pm.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb8/igt@perf_pmu@rc6-runtime-pm.html
#### Warnings ####
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-kbl: [DMESG-WARN][83] ([i915#180]) -> [INCOMPLETE][84] ([i915#155] / [i915#600])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence:
- shard-iclb: [SKIP][85] ([fdo#109278] / [fdo#112010]) -> [SKIP][86] ([fdo#109278]) +4 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-iclb4/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-iclb1/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html
* igt@runner@aborted:
- shard-apl: ([FAIL][87], [FAIL][88]) ([fdo#103927] / [i915#1402]) -> [FAIL][89] ([fdo#103927])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-apl4/igt@runner@aborted.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8145/shard-apl3/igt@runner@aborted.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/shard-apl8/igt@runner@aborted.html
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111719]: https://bugs.freedesktop.org/show_bug.cgi?id=111719
[fdo#112010]: https://bugs.freedesktop.org/show_bug.cgi?id=112010
[fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
[i915#129]: https://gitlab.freedesktop.org/drm/intel/issues/129
[i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
[i915#1358]: https://gitlab.freedesktop.org/drm/intel/issues/1358
[i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402
[i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
[i915#173]: https://gitlab.freedesktop.org/drm/intel/issues/173
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#250]: https://gitlab.freedesktop.org/drm/intel/issues/250
[i915#293]: https://gitlab.freedesktop.org/drm/intel/issues/293
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#600]: https://gitlab.freedesktop.org/drm/intel/issues/600
[i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
[i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
[i915#71]: https://gitlab.freedesktop.org/drm/intel/issues/71
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5518 -> IGTPW_4316
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_8145: 5e893da0b8c2bfec015c5eaa7981e1ffab1d7c9c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4316: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/index.html
IGT_5518: ee05a571255783837b18d626c4dff6cd9613cee2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4316/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev2)
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
` (3 preceding siblings ...)
2020-03-18 7:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-03-19 17:53 ` Patchwork
2020-03-19 18:06 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2020-03-19 17:53 UTC (permalink / raw)
To: Lyude; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev2)
URL : https://patchwork.freedesktop.org/series/74808/
State : failure
== Summary ==
ERROR! This series introduces new undocumented tests:
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-A
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-B
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-C
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-D
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-E
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-F
Can you document them as per the requirement in the [CONTRIBUTING.md]?
[Documentation] has more details on how to do this.
Here are few examples:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d
Thanks in advance!
[CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19
[Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe
Other than that, pipeline status: SUCCESS.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/121874 for the overview.
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/121874
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev2)
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
` (4 preceding siblings ...)
2020-03-19 17:53 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev2) Patchwork
@ 2020-03-19 18:06 ` Patchwork
2020-03-19 20:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2020-03-19 18:06 UTC (permalink / raw)
To: Lyude; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev2)
URL : https://patchwork.freedesktop.org/series/74808/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_8160 -> IGTPW_4327
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/index.html
Known issues
------------
Here are the changes found in IGTPW_4327 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [PASS][1] -> [FAIL][2] ([fdo#111407])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
Participating hosts (37 -> 40)
------------------------------
Additional (7): fi-bsw-n3050 fi-byt-j1900 fi-cfl-8109u fi-skl-6700k2 fi-kbl-7560u fi-bsw-nick fi-skl-6600u
Missing (4): fi-bsw-kefka fi-byt-clapper fi-byt-squawks fi-bsw-cyan
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5523 -> IGTPW_4327
CI-20190529: 20190529
CI_DRM_8160: 6ba1729e5025761ab74914f6b8aa3288f493e9c7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4327: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/index.html
IGT_5523: cf6d524007ac51a7d5a48503ea3dd5f01fd4ebab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-a
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-b
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-c
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-e
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev2)
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
` (5 preceding siblings ...)
2020-03-19 18:06 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2020-03-19 20:35 ` Patchwork
2020-03-24 19:11 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev3) Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2020-03-19 20:35 UTC (permalink / raw)
To: Lyude Paul; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev2)
URL : https://patchwork.freedesktop.org/series/74808/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_8160_full -> IGTPW_4327_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_4327_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_4327_full, please notify your bug team 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_4327/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_4327_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_hdr@static-toggle-dpms:
- shard-tglb: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-tglb8/igt@kms_hdr@static-toggle-dpms.html
New tests
---------
New tests have been introduced between CI_DRM_8160_full and IGTPW_4327_full:
### New IGT tests (4) ###
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-a:
- Statuses : 5 pass(s)
- Exec time: [0.46, 1.45] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-b:
- Statuses : 7 pass(s)
- Exec time: [0.39, 3.02] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-c:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 3.05] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.0, 2.47] s
Known issues
------------
Here are the changes found in IGTPW_4327_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_isolation@rcs0-s3:
- shard-kbl: [PASS][2] -> [DMESG-WARN][3] ([i915#180]) +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-kbl4/igt@gem_ctx_isolation@rcs0-s3.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-kbl4/igt@gem_ctx_isolation@rcs0-s3.html
* igt@gem_ctx_persistence@close-replace-race:
- shard-tglb: [PASS][4] -> [INCOMPLETE][5] ([i915#1402])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-tglb5/igt@gem_ctx_persistence@close-replace-race.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-tglb1/igt@gem_ctx_persistence@close-replace-race.html
- shard-kbl: [PASS][6] -> [INCOMPLETE][7] ([i915#1402])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-kbl7/igt@gem_ctx_persistence@close-replace-race.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
* igt@gem_exec_parallel@vcs1-fds:
- shard-iclb: [PASS][8] -> [SKIP][9] ([fdo#112080]) +12 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb1/igt@gem_exec_parallel@vcs1-fds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb7/igt@gem_exec_parallel@vcs1-fds.html
* igt@gem_exec_schedule@implicit-both-bsd:
- shard-iclb: [PASS][10] -> [SKIP][11] ([i915#677])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb6/igt@gem_exec_schedule@implicit-both-bsd.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb4/igt@gem_exec_schedule@implicit-both-bsd.html
* igt@gem_exec_schedule@implicit-read-write-bsd2:
- shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#109276] / [i915#677])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb1/igt@gem_exec_schedule@implicit-read-write-bsd2.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb7/igt@gem_exec_schedule@implicit-read-write-bsd2.html
* igt@gem_exec_schedule@out-order-bsd2:
- shard-iclb: [PASS][14] -> [SKIP][15] ([fdo#109276]) +8 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb1/igt@gem_exec_schedule@out-order-bsd2.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb3/igt@gem_exec_schedule@out-order-bsd2.html
* igt@gem_exec_schedule@preempt-other-chain-bsd:
- shard-iclb: [PASS][16] -> [SKIP][17] ([fdo#112146]) +5 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-iclb: [PASS][18] -> [FAIL][19] ([i915#644])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb2/igt@gem_ppgtt@flink-and-close-vma-leak.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb7/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gem_userptr_blits@sync-unmap-after-close:
- shard-snb: [PASS][20] -> [DMESG-WARN][21] ([fdo#111870] / [i915#478])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-snb4/igt@gem_userptr_blits@sync-unmap-after-close.html
* igt@i915_pm_rps@reset:
- shard-iclb: [PASS][22] -> [FAIL][23] ([i915#413]) +1 similar issue
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb6/igt@i915_pm_rps@reset.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb8/igt@i915_pm_rps@reset.html
* igt@i915_selftest@live@execlists:
- shard-apl: [PASS][24] -> [INCOMPLETE][25] ([fdo#103927] / [i915#656])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-apl3/igt@i915_selftest@live@execlists.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-apl2/igt@i915_selftest@live@execlists.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-apl: [PASS][26] -> [DMESG-WARN][27] ([i915#180]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen:
- shard-glk: [PASS][28] -> [FAIL][29] ([i915#54])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-glk6/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-64x64-sliding:
- shard-apl: [PASS][30] -> [FAIL][31] ([i915#54]) +2 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-64x64-sliding.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-64x64-sliding.html
- shard-kbl: [PASS][32] -> [FAIL][33] ([i915#54]) +1 similar issue
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-64x64-sliding.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-64x64-sliding.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-hsw: [PASS][34] -> [FAIL][35] ([i915#57])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw2/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled:
- shard-hsw: [PASS][36] -> [DMESG-WARN][37] ([i915#478])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw4/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-glk: [PASS][38] -> [FAIL][39] ([i915#46])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-glk2/igt@kms_flip@flip-vs-expired-vblank.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-glk5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-glk: [PASS][40] -> [FAIL][41] ([i915#79])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-apl: [PASS][42] -> [INCOMPLETE][43] ([fdo#103927] / [i915#1297])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-apl3/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-apl7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
- shard-kbl: [PASS][44] -> [INCOMPLETE][45] ([i915#1297])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-kbl7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-kbl1/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: [PASS][46] -> [SKIP][47] ([fdo#109441]) +2 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html
* igt@perf@short-reads:
- shard-glk: [PASS][48] -> [FAIL][49] ([i915#51])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-glk5/igt@perf@short-reads.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-glk1/igt@perf@short-reads.html
* igt@perf@whitelisted-registers-userspace-config:
- shard-tglb: [PASS][50] -> [SKIP][51] ([i915#405])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-tglb3/igt@perf@whitelisted-registers-userspace-config.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-tglb8/igt@perf@whitelisted-registers-userspace-config.html
- shard-hsw: [PASS][52] -> [SKIP][53] ([fdo#109271])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw6/igt@perf@whitelisted-registers-userspace-config.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw4/igt@perf@whitelisted-registers-userspace-config.html
- shard-glk: [PASS][54] -> [SKIP][55] ([fdo#109271])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-glk4/igt@perf@whitelisted-registers-userspace-config.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-glk6/igt@perf@whitelisted-registers-userspace-config.html
- shard-iclb: [PASS][56] -> [SKIP][57] ([i915#405])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb5/igt@perf@whitelisted-registers-userspace-config.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb5/igt@perf@whitelisted-registers-userspace-config.html
* igt@prime_busy@wait-hang-render:
- shard-hsw: [PASS][58] -> [INCOMPLETE][59] ([i915#61]) +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw1/igt@prime_busy@wait-hang-render.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw7/igt@prime_busy@wait-hang-render.html
#### Possible fixes ####
* igt@gem_busy@busy-vcs1:
- shard-iclb: [SKIP][60] ([fdo#112080]) -> [PASS][61] +14 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb6/igt@gem_busy@busy-vcs1.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb2/igt@gem_busy@busy-vcs1.html
* igt@gem_ctx_persistence@engines-mixed-process@bcs0:
- shard-iclb: [FAIL][62] ([i915#679]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb4/igt@gem_ctx_persistence@engines-mixed-process@bcs0.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb2/igt@gem_ctx_persistence@engines-mixed-process@bcs0.html
* igt@gem_ctx_persistence@engines-mixed-process@vcs0:
- shard-iclb: [INCOMPLETE][64] ([i915#1239]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb4/igt@gem_ctx_persistence@engines-mixed-process@vcs0.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb2/igt@gem_ctx_persistence@engines-mixed-process@vcs0.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process@blt:
- shard-tglb: [FAIL][66] ([i915#679]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-tglb2/igt@gem_ctx_persistence@legacy-engines-mixed-process@blt.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-tglb8/igt@gem_ctx_persistence@legacy-engines-mixed-process@blt.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox:
- shard-tglb: [INCOMPLETE][68] ([i915#1239]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-tglb2/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-tglb8/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html
* igt@gem_exec_schedule@implicit-write-read-bsd1:
- shard-iclb: [SKIP][70] ([fdo#109276] / [i915#677]) -> [PASS][71] +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb3/igt@gem_exec_schedule@implicit-write-read-bsd1.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb4/igt@gem_exec_schedule@implicit-write-read-bsd1.html
* igt@gem_exec_schedule@pi-common-bsd:
- shard-iclb: [SKIP][72] ([i915#677]) -> [PASS][73] +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb7/igt@gem_exec_schedule@pi-common-bsd.html
* igt@gem_exec_schedule@preemptive-hang-bsd:
- shard-iclb: [SKIP][74] ([fdo#112146]) -> [PASS][75] +3 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb7/igt@gem_exec_schedule@preemptive-hang-bsd.html
* igt@gem_exec_suspend@basic-s3:
- shard-kbl: [DMESG-WARN][76] ([i915#180]) -> [PASS][77] +5 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-kbl4/igt@gem_exec_suspend@basic-s3.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-kbl4/igt@gem_exec_suspend@basic-s3.html
* igt@gem_exec_whisper@basic-fds-forked:
- shard-tglb: [INCOMPLETE][78] ([i915#1318] / [i915#1401]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-tglb1/igt@gem_exec_whisper@basic-fds-forked.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-tglb5/igt@gem_exec_whisper@basic-fds-forked.html
* igt@i915_pm_rpm@gem-execbuf:
- shard-iclb: [SKIP][80] ([i915#1316]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb1/igt@i915_pm_rpm@gem-execbuf.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb4/igt@i915_pm_rpm@gem-execbuf.html
- shard-glk: [SKIP][82] ([fdo#109271]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-glk3/igt@i915_pm_rpm@gem-execbuf.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-glk4/igt@i915_pm_rpm@gem-execbuf.html
- shard-tglb: [SKIP][84] ([i915#1316]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-tglb2/igt@i915_pm_rpm@gem-execbuf.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-tglb3/igt@i915_pm_rpm@gem-execbuf.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-glk: [FAIL][86] ([i915#34]) -> [PASS][87] +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-glk4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-glk9/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack:
- shard-glk: [FAIL][88] ([i915#49]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
- shard-apl: [DMESG-WARN][90] ([i915#180]) -> [PASS][91] +1 similar issue
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
* igt@kms_psr@psr2_primary_blt:
- shard-iclb: [SKIP][92] ([fdo#109441]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb8/igt@kms_psr@psr2_primary_blt.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
* igt@perf@gen12-mi-rpc:
- shard-tglb: [FAIL][94] ([i915#1085]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-tglb3/igt@perf@gen12-mi-rpc.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-tglb5/igt@perf@gen12-mi-rpc.html
* igt@prime_busy@hang-bsd2:
- shard-iclb: [SKIP][96] ([fdo#109276]) -> [PASS][97] +15 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb6/igt@prime_busy@hang-bsd2.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb1/igt@prime_busy@hang-bsd2.html
#### Warnings ####
* igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence:
- shard-iclb: [SKIP][98] ([fdo#109278] / [fdo#112010]) -> [SKIP][99] ([fdo#109278]) +4 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-iclb4/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-iclb4/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html
* igt@runner@aborted:
- shard-hsw: ([FAIL][100], [FAIL][101], [FAIL][102], [FAIL][103], [FAIL][104], [FAIL][105]) ([fdo#111870] / [i915#1485]) -> ([FAIL][106], [FAIL][107], [FAIL][108], [FAIL][109], [FAIL][110], [FAIL][111], [FAIL][112], [FAIL][113]) ([fdo#111870] / [i915#1485] / [i915#478])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw1/igt@runner@aborted.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw2/igt@runner@aborted.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw1/igt@runner@aborted.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw1/igt@runner@aborted.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw2/igt@runner@aborted.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-hsw5/igt@runner@aborted.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw2/igt@runner@aborted.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw2/igt@runner@aborted.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw5/igt@runner@aborted.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw1/igt@runner@aborted.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw4/igt@runner@aborted.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw4/igt@runner@aborted.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw5/igt@runner@aborted.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-hsw6/igt@runner@aborted.html
- shard-kbl: [FAIL][114] ([i915#92]) -> ([FAIL][115], [FAIL][116]) ([i915#1389] / [i915#1402] / [i915#92])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-kbl6/igt@runner@aborted.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-kbl6/igt@runner@aborted.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-kbl2/igt@runner@aborted.html
- shard-apl: ([FAIL][117], [FAIL][118]) ([fdo#103927] / [i915#1402]) -> ([FAIL][119], [FAIL][120], [FAIL][121]) ([fdo#103927] / [i915#1402] / [i915#529])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-apl4/igt@runner@aborted.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-apl1/igt@runner@aborted.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-apl2/igt@runner@aborted.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-apl8/igt@runner@aborted.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-apl1/igt@runner@aborted.html
- shard-tglb: [FAIL][122] ([i915#1318]) -> [FAIL][123] ([i915#1389])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8160/shard-tglb1/igt@runner@aborted.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/shard-tglb1/igt@runner@aborted.html
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
[fdo#112010]: https://bugs.freedesktop.org/show_bug.cgi?id=112010
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085
[i915#1239]: https://gitlab.freedesktop.org/drm/intel/issues/1239
[i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297
[i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
[i915#1318]: https://gitlab.freedesktop.org/drm/intel/issues/1318
[i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389
[i915#1401]: https://gitlab.freedesktop.org/drm/intel/issues/1401
[i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402
[i915#1485]: https://gitlab.freedesktop.org/drm/intel/issues/1485
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#34]: https://gitlab.freedesktop.org/drm/intel/issues/34
[i915#405]: https://gitlab.freedesktop.org/drm/intel/issues/405
[i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
[i915#46]: https://gitlab.freedesktop.org/drm/intel/issues/46
[i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
[i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
[i915#51]: https://gitlab.freedesktop.org/drm/intel/issues/51
[i915#529]: https://gitlab.freedesktop.org/drm/intel/issues/529
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#57]: https://gitlab.freedesktop.org/drm/intel/issues/57
[i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
[i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
[i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656
[i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
[i915#679]: https://gitlab.freedesktop.org/drm/intel/issues/679
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5523 -> IGTPW_4327
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_8160: 6ba1729e5025761ab74914f6b8aa3288f493e9c7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4327: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/index.html
IGT_5523: cf6d524007ac51a7d5a48503ea3dd5f01fd4ebab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4327/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev3)
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
` (6 preceding siblings ...)
2020-03-19 20:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-03-24 19:11 ` Patchwork
2020-03-24 19:20 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2020-03-24 20:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2020-03-24 19:11 UTC (permalink / raw)
To: Lyude Paul; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev3)
URL : https://patchwork.freedesktop.org/series/74808/
State : failure
== Summary ==
ERROR! This series introduces new undocumented tests:
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-A
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-B
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-C
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-D
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-E
kms_pipe_crc_basic@disable-crc-after-crtc-pipe-F
Can you document them as per the requirement in the [CONTRIBUTING.md]?
[Documentation] has more details on how to do this.
Here are few examples:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d
Thanks in advance!
[CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19
[Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe
Other than that, pipeline status: SUCCESS.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/123891 for the overview.
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/123891
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev3)
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
` (7 preceding siblings ...)
2020-03-24 19:11 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev3) Patchwork
@ 2020-03-24 19:20 ` Patchwork
2020-03-24 20:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2020-03-24 19:20 UTC (permalink / raw)
To: Lyude Paul; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev3)
URL : https://patchwork.freedesktop.org/series/74808/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_8183 -> IGTPW_4347
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/index.html
Known issues
------------
Here are the changes found in IGTPW_4347 that come from known issues:
### IGT changes ###
#### Warnings ####
* igt@i915_selftest@live@gem_contexts:
- fi-cfl-8700k: [DMESG-FAIL][1] ([i915#481]) -> [DMESG-FAIL][2] ([i915#730] / [i915#933])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
[i915#481]: https://gitlab.freedesktop.org/drm/intel/issues/481
[i915#730]: https://gitlab.freedesktop.org/drm/intel/issues/730
[i915#933]: https://gitlab.freedesktop.org/drm/intel/issues/933
Participating hosts (45 -> 39)
------------------------------
Additional (5): fi-kbl-7560u fi-kbl-7500u fi-cfl-8109u fi-skl-lmem fi-blb-e6850
Missing (11): fi-hsw-4200u fi-hsw-peppy fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-gdg-551 fi-ivb-3770 fi-bdw-samus fi-byt-clapper fi-bsw-nick fi-skl-6700k2
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5535 -> IGTPW_4347
CI-20190529: 20190529
CI_DRM_8183: 795894daf2cc32246af94541733e08649d082470 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4347: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/index.html
IGT_5535: d1dcf40cc6869ac858586c5ad9f09af6617ce2ee @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-a
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-b
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-c
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-e
+igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev3)
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
` (8 preceding siblings ...)
2020-03-24 19:20 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2020-03-24 20:18 ` Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2020-03-24 20:18 UTC (permalink / raw)
To: Lyude Paul; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev3)
URL : https://patchwork.freedesktop.org/series/74808/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_8183_full -> IGTPW_4347_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/index.html
New tests
---------
New tests have been introduced between CI_DRM_8183_full and IGTPW_4347_full:
### New IGT tests (4) ###
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-a:
- Statuses : 5 pass(s)
- Exec time: [0.48, 1.37] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-b:
- Statuses : 7 pass(s)
- Exec time: [0.38, 2.62] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-c:
- Statuses : 5 pass(s)
- Exec time: [0.58, 2.61] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.0, 2.50] s
Known issues
------------
Here are the changes found in IGTPW_4347_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_isolation@bcs0-s3:
- shard-apl: [PASS][1] -> [DMESG-WARN][2] ([i915#180])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-apl8/igt@gem_ctx_isolation@bcs0-s3.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-apl1/igt@gem_ctx_isolation@bcs0-s3.html
* igt@gem_exec_schedule@implicit-read-write-bsd1:
- shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#109276] / [i915#677]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb1/igt@gem_exec_schedule@implicit-read-write-bsd1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb5/igt@gem_exec_schedule@implicit-read-write-bsd1.html
* igt@gem_exec_schedule@pi-common-bsd:
- shard-iclb: [PASS][5] -> [SKIP][6] ([i915#677])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb5/igt@gem_exec_schedule@pi-common-bsd.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb2/igt@gem_exec_schedule@pi-common-bsd.html
* igt@gem_exec_schedule@preempt-contexts-bsd2:
- shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276]) +18 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb1/igt@gem_exec_schedule@preempt-contexts-bsd2.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb6/igt@gem_exec_schedule@preempt-contexts-bsd2.html
* igt@gem_exec_schedule@preemptive-hang-bsd:
- shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#112146]) +8 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb7/igt@gem_exec_schedule@preemptive-hang-bsd.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
* igt@kms_color@pipe-a-legacy-gamma:
- shard-snb: [PASS][11] -> [SKIP][12] ([fdo#109271]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-snb5/igt@kms_color@pipe-a-legacy-gamma.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-snb6/igt@kms_color@pipe-a-legacy-gamma.html
* igt@kms_cursor_crc@pipe-b-cursor-256x85-random:
- shard-apl: [PASS][13] -> [FAIL][14] ([i915#54])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html
- shard-kbl: [PASS][15] -> [FAIL][16] ([i915#54])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [PASS][17] -> [FAIL][18] ([i915#72])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-kbl: [PASS][19] -> [DMESG-WARN][20] ([i915#180]) +3 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_plane_lowres@pipe-a-tiling-x:
- shard-glk: [PASS][21] -> [FAIL][22] ([i915#899])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-glk4/igt@kms_plane_lowres@pipe-a-tiling-x.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-glk6/igt@kms_plane_lowres@pipe-a-tiling-x.html
* igt@kms_psr2_su@page_flip:
- shard-iclb: [PASS][23] -> [SKIP][24] ([fdo#109642] / [fdo#111068])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb2/igt@kms_psr2_su@page_flip.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb7/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_dpms:
- shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) +2 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb2/igt@kms_psr@psr2_dpms.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb3/igt@kms_psr@psr2_dpms.html
* igt@perf_pmu@busy-vcs1:
- shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#112080]) +11 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb2/igt@perf_pmu@busy-vcs1.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb8/igt@perf_pmu@busy-vcs1.html
* igt@prime_busy@hang-default:
- shard-snb: [PASS][29] -> [INCOMPLETE][30] ([i915#82])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-snb2/igt@prime_busy@hang-default.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-snb1/igt@prime_busy@hang-default.html
#### Possible fixes ####
* igt@gem_ctx_shared@exec-single-timeline-bsd:
- shard-iclb: [SKIP][31] ([fdo#110841]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html
* igt@gem_exec_parallel@contexts:
- shard-tglb: [INCOMPLETE][33] ([i915#470] / [i915#529]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-tglb2/igt@gem_exec_parallel@contexts.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-tglb7/igt@gem_exec_parallel@contexts.html
* igt@gem_exec_parallel@vcs1-fds:
- shard-iclb: [SKIP][35] ([fdo#112080]) -> [PASS][36] +13 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb6/igt@gem_exec_parallel@vcs1-fds.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html
* igt@gem_exec_schedule@implicit-both-bsd:
- shard-iclb: [SKIP][37] ([i915#677]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb6/igt@gem_exec_schedule@implicit-both-bsd.html
* igt@gem_exec_schedule@preempt-other-chain-bsd:
- shard-iclb: [SKIP][39] ([fdo#112146]) -> [PASS][40] +4 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html
* igt@gem_ringfill@basic-default-hang:
- shard-tglb: [INCOMPLETE][41] -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-tglb6/igt@gem_ringfill@basic-default-hang.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-tglb2/igt@gem_ringfill@basic-default-hang.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-apl: [DMESG-WARN][43] ([i915#180]) -> [PASS][44] +4 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_cursor_crc@pipe-a-cursor-64x64-random:
- shard-apl: [FAIL][45] ([i915#54]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-64x64-random.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-64x64-random.html
* igt@kms_cursor_crc@pipe-a-cursor-suspend:
- shard-kbl: [DMESG-WARN][47] ([i915#180]) -> [PASS][48] +4 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
* igt@kms_cursor_crc@pipe-c-cursor-64x21-random:
- shard-glk: [FAIL][49] ([i915#54]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-glk8/igt@kms_cursor_crc@pipe-c-cursor-64x21-random.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-glk9/igt@kms_cursor_crc@pipe-c-cursor-64x21-random.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-glk: [FAIL][51] ([i915#34]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-glk4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@nonexisting-fb-interruptible:
- shard-apl: [DMESG-WARN][53] ([i915#1297]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-apl1/igt@kms_flip@nonexisting-fb-interruptible.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-apl2/igt@kms_flip@nonexisting-fb-interruptible.html
- shard-kbl: [DMESG-WARN][55] ([i915#1297]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-kbl1/igt@kms_flip@nonexisting-fb-interruptible.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-kbl2/igt@kms_flip@nonexisting-fb-interruptible.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
- shard-kbl: [INCOMPLETE][57] ([i915#155]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-iclb: [SKIP][59] ([fdo#109441]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb6/igt@kms_psr@psr2_cursor_plane_onoff.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_setmode@basic:
- shard-apl: [FAIL][61] ([i915#31]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-apl4/igt@kms_setmode@basic.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-apl4/igt@kms_setmode@basic.html
* igt@prime_vgem@fence-wait-bsd2:
- shard-iclb: [SKIP][63] ([fdo#109276]) -> [PASS][64] +18 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb8/igt@prime_vgem@fence-wait-bsd2.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb4/igt@prime_vgem@fence-wait-bsd2.html
#### Warnings ####
* igt@i915_pm_rpm@cursor:
- shard-snb: [INCOMPLETE][65] ([i915#82]) -> [SKIP][66] ([fdo#109271]) +1 similar issue
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-snb2/igt@i915_pm_rpm@cursor.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-snb6/igt@i915_pm_rpm@cursor.html
* igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence:
- shard-iclb: [SKIP][67] ([fdo#109278] / [fdo#112010]) -> [SKIP][68] ([fdo#109278]) +4 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8183/shard-iclb3/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/shard-iclb2/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#112010]: https://bugs.freedesktop.org/show_bug.cgi?id=112010
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297
[i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#34]: https://gitlab.freedesktop.org/drm/intel/issues/34
[i915#470]: https://gitlab.freedesktop.org/drm/intel/issues/470
[i915#529]: https://gitlab.freedesktop.org/drm/intel/issues/529
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
[i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
[i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
[i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5535 -> IGTPW_4347
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_8183: 795894daf2cc32246af94541733e08649d082470 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4347: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/index.html
IGT_5535: d1dcf40cc6869ac858586c5ad9f09af6617ce2ee @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4347/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2020-03-24 20:18 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-18 0:49 [igt-dev] [PATCH i-g-t 1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Lyude
2020-03-18 0:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_pipe_crc_basic: Add disable-crc-after-crtc-pipe-* tests Lyude
2020-03-18 1:22 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() Patchwork
2020-03-18 1:43 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2020-03-18 7:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-03-19 17:53 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev2) Patchwork
2020-03-19 18:06 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2020-03-19 20:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-03-24 19:11 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,1/2] tests/kms_pipe_crc_basic: Use igt_display_require_output_on_pipe() (rev3) Patchwork
2020-03-24 19:20 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2020-03-24 20: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