* [igt-dev] [PATCH i-g-t v6] tests/kms_flip: Skip test only for invalid combination
@ 2022-06-24 10:58 Jeevan B
2022-06-24 11:31 ` Karthik B S
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jeevan B @ 2022-06-24 10:58 UTC (permalink / raw)
To: igt-dev
currently the entire test is skipping. adding this fix to skip test
only for invalid cases and run on other valid display combination.
v2: add RUN_PAIR check to avoid crash on single display.
v3: add flag to check for valid display combination.(Karthik)
v4: if no valid mode is found then flow should go to 'out'.(Karthik)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/kms_flip.c | 31 ++++++++++++++++---------------
1 file changed, 16 insertions(+), 15 deletions(-)
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index c5b5741a..d4339449 100755
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -932,7 +932,7 @@ static bool mode_compatible(const drmModeModeInfo *a, const drmModeModeInfo *b)
return true;
}
-static void get_compatible_modes(drmModeModeInfo *a, drmModeModeInfo *b,
+static bool get_compatible_modes(drmModeModeInfo *a, drmModeModeInfo *b,
drmModeConnector *c1, drmModeConnector *c2)
{
int n, m;
@@ -946,14 +946,13 @@ static void get_compatible_modes(drmModeModeInfo *a, drmModeModeInfo *b,
for (m = 0; m < c2->count_modes; m++) {
*b = c2->modes[m];
if (mode_compatible(a, b))
- return;
+ return true;
}
}
-
- igt_skip("Compatible mode not found.\n");
+ return false;
}
- return;
+ return true;
}
static void connector_find_compatible_mode(int crtc_idx0, int crtc_idx1,
@@ -972,13 +971,12 @@ static void connector_find_compatible_mode(int crtc_idx0, int crtc_idx1,
return;
}
- get_compatible_modes(&mode[0], &mode[1],
- config[0].connector, config[1].connector);
+ o->mode_valid = get_compatible_modes(&mode[0], &mode[1],
+ config[0].connector, config[1].connector);
o->pipe = config[0].pipe;
o->fb_width = mode[0].hdisplay;
o->fb_height = mode[0].vdisplay;
- o->mode_valid = 1;
o->kconnector[0] = config[0].connector;
o->kencoder[0] = config[0].encoder;
@@ -1330,8 +1328,8 @@ static void get_suitable_modes(struct test_output *o)
sort_drm_modes);
}
- get_compatible_modes(&mode[0], &mode[1],
- o->kconnector[0], o->kconnector[1]);
+ o->mode_valid = get_compatible_modes(&mode[0], &mode[1],
+ o->kconnector[0], o->kconnector[1]);
o->fb_width = mode[0].hdisplay;
o->fb_height = mode[0].vdisplay;
@@ -1415,13 +1413,16 @@ retry:
}
get_suitable_modes(o);
+ if (o->mode_valid) {
+ igt_remove_fb(drm_fd, &o->fb_info[2]);
+ igt_remove_fb(drm_fd, &o->fb_info[1]);
+ igt_remove_fb(drm_fd, &o->fb_info[0]);
- igt_remove_fb(drm_fd, &o->fb_info[2]);
- igt_remove_fb(drm_fd, &o->fb_info[1]);
- igt_remove_fb(drm_fd, &o->fb_info[0]);
+ restart = true;
+ goto restart;
+ }
- restart = true;
- goto restart;
+ goto out;
}
igt_assert(!ret);
--
2.36.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v6] tests/kms_flip: Skip test only for invalid combination
2022-06-24 10:58 [igt-dev] [PATCH i-g-t v6] tests/kms_flip: Skip test only for invalid combination Jeevan B
@ 2022-06-24 11:31 ` Karthik B S
2022-06-24 11:50 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip test only for invalid combination (rev6) Patchwork
2022-06-27 19:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Karthik B S @ 2022-06-24 11:31 UTC (permalink / raw)
To: Jeevan B, igt-dev
On 6/24/2022 4:28 PM, Jeevan B wrote:
> currently the entire test is skipping. adding this fix to skip test
> only for invalid cases and run on other valid display combination.
>
> v2: add RUN_PAIR check to avoid crash on single display.
> v3: add flag to check for valid display combination.(Karthik)
> v4: if no valid mode is found then flow should go to 'out'.(Karthik)
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
> ---
> tests/kms_flip.c | 31 ++++++++++++++++---------------
> 1 file changed, 16 insertions(+), 15 deletions(-)
>
> diff --git a/tests/kms_flip.c b/tests/kms_flip.c
> index c5b5741a..d4339449 100755
> --- a/tests/kms_flip.c
> +++ b/tests/kms_flip.c
> @@ -932,7 +932,7 @@ static bool mode_compatible(const drmModeModeInfo *a, const drmModeModeInfo *b)
> return true;
> }
>
> -static void get_compatible_modes(drmModeModeInfo *a, drmModeModeInfo *b,
> +static bool get_compatible_modes(drmModeModeInfo *a, drmModeModeInfo *b,
> drmModeConnector *c1, drmModeConnector *c2)
> {
> int n, m;
> @@ -946,14 +946,13 @@ static void get_compatible_modes(drmModeModeInfo *a, drmModeModeInfo *b,
> for (m = 0; m < c2->count_modes; m++) {
> *b = c2->modes[m];
> if (mode_compatible(a, b))
> - return;
> + return true;
> }
> }
> -
> - igt_skip("Compatible mode not found.\n");
> + return false;
> }
>
> - return;
> + return true;
> }
>
> static void connector_find_compatible_mode(int crtc_idx0, int crtc_idx1,
> @@ -972,13 +971,12 @@ static void connector_find_compatible_mode(int crtc_idx0, int crtc_idx1,
> return;
> }
>
> - get_compatible_modes(&mode[0], &mode[1],
> - config[0].connector, config[1].connector);
> + o->mode_valid = get_compatible_modes(&mode[0], &mode[1],
> + config[0].connector, config[1].connector);
>
> o->pipe = config[0].pipe;
> o->fb_width = mode[0].hdisplay;
> o->fb_height = mode[0].vdisplay;
> - o->mode_valid = 1;
>
> o->kconnector[0] = config[0].connector;
> o->kencoder[0] = config[0].encoder;
> @@ -1330,8 +1328,8 @@ static void get_suitable_modes(struct test_output *o)
> sort_drm_modes);
> }
>
> - get_compatible_modes(&mode[0], &mode[1],
> - o->kconnector[0], o->kconnector[1]);
> + o->mode_valid = get_compatible_modes(&mode[0], &mode[1],
> + o->kconnector[0], o->kconnector[1]);
>
> o->fb_width = mode[0].hdisplay;
> o->fb_height = mode[0].vdisplay;
> @@ -1415,13 +1413,16 @@ retry:
> }
>
> get_suitable_modes(o);
> + if (o->mode_valid) {
> + igt_remove_fb(drm_fd, &o->fb_info[2]);
> + igt_remove_fb(drm_fd, &o->fb_info[1]);
> + igt_remove_fb(drm_fd, &o->fb_info[0]);
>
> - igt_remove_fb(drm_fd, &o->fb_info[2]);
> - igt_remove_fb(drm_fd, &o->fb_info[1]);
> - igt_remove_fb(drm_fd, &o->fb_info[0]);
> + restart = true;
> + goto restart;
> + }
>
> - restart = true;
> - goto restart;
> + goto out;
> }
>
> igt_assert(!ret);
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip test only for invalid combination (rev6)
2022-06-24 10:58 [igt-dev] [PATCH i-g-t v6] tests/kms_flip: Skip test only for invalid combination Jeevan B
2022-06-24 11:31 ` Karthik B S
@ 2022-06-24 11:50 ` Patchwork
2022-06-27 19:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2022-06-24 11:50 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6835 bytes --]
== Series Details ==
Series: tests/kms_flip: Skip test only for invalid combination (rev6)
URL : https://patchwork.freedesktop.org/series/105386/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11803 -> IGTPW_7381
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/index.html
Participating hosts (36 -> 37)
------------------------------
Additional (2): fi-bdw-5557u bat-adlp-6
Missing (1): fi-bdw-samus
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7381:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@core_hotunplug@unbind-rebind:
- {bat-adln-1}: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/bat-adln-1/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/bat-adln-1/igt@core_hotunplug@unbind-rebind.html
Known issues
------------
Here are the changes found in IGTPW_7381 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [PASS][3] -> [INCOMPLETE][4] ([i915#5847])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/fi-bsw-nick/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@hangcheck:
- fi-bdw-5557u: NOTRUN -> [INCOMPLETE][5] ([i915#3921])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/fi-bdw-5557u/igt@i915_selftest@live@hangcheck.html
- bat-dg1-6: NOTRUN -> [DMESG-FAIL][6] ([i915#4494] / [i915#4957])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-dg1-6: NOTRUN -> [INCOMPLETE][7] ([i915#6011])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/bat-dg1-6/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_chamelium@dp-crc-fast:
- fi-bdw-5557u: NOTRUN -> [SKIP][8] ([fdo#109271] / [fdo#111827]) +7 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html
* igt@kms_flip@basic-flip-vs-modeset@a-edp1:
- fi-tgl-u2: [PASS][9] -> [DMESG-WARN][10] ([i915#402]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
* igt@kms_psr@primary_page_flip:
- fi-bdw-5557u: NOTRUN -> [SKIP][11] ([fdo#109271]) +13 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/fi-bdw-5557u/igt@kms_psr@primary_page_flip.html
* igt@runner@aborted:
- fi-bsw-nick: NOTRUN -> [FAIL][12] ([fdo#109271] / [i915#3428] / [i915#4312])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/fi-bsw-nick/igt@runner@aborted.html
- fi-rkl-11600: NOTRUN -> [FAIL][13] ([i915#2029] / [i915#4312])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/fi-rkl-11600/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_engines:
- bat-dg1-6: [INCOMPLETE][14] ([i915#4418]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
* igt@kms_busy@basic@flip:
- fi-tgl-u2: [DMESG-WARN][16] ([i915#402]) -> [PASS][17] +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/fi-tgl-u2/igt@kms_busy@basic@flip.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/fi-tgl-u2/igt@kms_busy@basic@flip.html
* igt@kms_busy@basic@modeset:
- {bat-adln-1}: [DMESG-WARN][18] ([i915#3576]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/bat-adln-1/igt@kms_busy@basic@modeset.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/bat-adln-1/igt@kms_busy@basic@modeset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
[i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#5847]: https://gitlab.freedesktop.org/drm/intel/issues/5847
[i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
[i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6541 -> IGTPW_7381
CI-20190529: 20190529
CI_DRM_11803: 23f2707225ca8a6c43526d1d7c46a7dd1a5f02cf @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7381: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/index.html
IGT_6541: 02153f109bd422d93cfce7f5aa9d7b0e22fab13c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/index.html
[-- Attachment #2: Type: text/html, Size: 7200 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_flip: Skip test only for invalid combination (rev6)
2022-06-24 10:58 [igt-dev] [PATCH i-g-t v6] tests/kms_flip: Skip test only for invalid combination Jeevan B
2022-06-24 11:31 ` Karthik B S
2022-06-24 11:50 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip test only for invalid combination (rev6) Patchwork
@ 2022-06-27 19:27 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2022-06-27 19:27 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 58579 bytes --]
== Series Details ==
Series: tests/kms_flip: Skip test only for invalid combination (rev6)
URL : https://patchwork.freedesktop.org/series/105386/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11803_full -> IGTPW_7381_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/index.html
Participating hosts (13 -> 10)
------------------------------
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7381_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-32x32} (NEW):
- {shard-tglu}: NOTRUN -> [SKIP][1] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-32x32.html
* {igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-512x512} (NEW):
- {shard-dg1}: NOTRUN -> [SKIP][2] +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-512x512.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_ctx_persistence@many-contexts:
- {shard-dg1}: [FAIL][3] ([i915#4883]) -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-dg1-17/igt@gem_ctx_persistence@many-contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-12/igt@gem_ctx_persistence@many-contexts.html
* igt@kms_cursor_crc@cursor-sliding@pipe-c-hdmi-a-1-512x512:
- {shard-dg1}: NOTRUN -> [SKIP][5] +13 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding@pipe-c-hdmi-a-1-512x512.html
* igt@kms_vblank@pipe-d-wait-forked-busy-hang:
- {shard-dg1}: [PASS][6] -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-dg1-13/igt@kms_vblank@pipe-d-wait-forked-busy-hang.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-12/igt@kms_vblank@pipe-d-wait-forked-busy-hang.html
New tests
---------
New tests have been introduced between CI_DRM_11803_full and IGTPW_7381_full:
### New IGT tests (23) ###
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-128x128:
- Statuses : 2 pass(s)
- Exec time: [2.17, 5.45] s
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-128x42:
- Statuses : 2 pass(s)
- Exec time: [2.17, 5.51] s
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-256x256:
- Statuses : 2 pass(s)
- Exec time: [2.17, 5.62] s
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-256x85:
- Statuses : 2 pass(s)
- Exec time: [2.17, 5.47] s
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-32x10:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.02] s
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-32x32:
- Statuses : 2 skip(s)
- Exec time: [0.02] s
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-512x170:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-512x512:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-64x21:
- Statuses : 2 pass(s)
- Exec time: [2.17, 5.51] s
* igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-64x64:
- Statuses : 2 pass(s)
- Exec time: [2.16, 5.52] s
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [1.16] s
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [1.02] s
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [1.01] s
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [1.02] s
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.62] s
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_pipe_crc_basic@read-crc@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_pipe_crc_basic@read-crc@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.46] s
* igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.46] s
Known issues
------------
Here are the changes found in IGTPW_7381_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-inplace:
- shard-tglb: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#5325])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@gem_ccs@block-copy-inplace.html
* igt@gem_ctx_persistence@legacy-engines-mixed:
- shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed.html
* igt@gem_eio@in-flight-suspend:
- shard-apl: NOTRUN -> [DMESG-WARN][10] ([i915#180])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl8/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-iclb: [PASS][11] -> [SKIP][12] ([i915#4525]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb4/igt@gem_exec_balancer@parallel-out-fence.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb8/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: [PASS][13] -> [FAIL][14] ([i915#2842])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-glk5/igt@gem_exec_fair@basic-none-solo@rcs0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk8/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none@vcs1:
- shard-iclb: NOTRUN -> [FAIL][15] ([i915#2842])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb1/igt@gem_exec_fair@basic-none@vcs1.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-tglb: [PASS][16] -> [FAIL][17] ([i915#2842]) +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-tglb7/igt@gem_exec_fair@basic-pace@vcs1.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-kbl: [PASS][18] -> [FAIL][19] ([i915#2842]) +3 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-sync@rcs0:
- shard-tglb: [PASS][20] -> [SKIP][21] ([i915#2848])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-tglb6/igt@gem_exec_fair@basic-sync@rcs0.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb6/igt@gem_exec_fair@basic-sync@rcs0.html
* igt@gem_exec_params@no-blt:
- shard-tglb: NOTRUN -> [SKIP][22] ([fdo#109283])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb1/igt@gem_exec_params@no-blt.html
* igt@gem_exec_whisper@basic-fds-priority-all:
- shard-glk: [PASS][23] -> [DMESG-WARN][24] ([i915#118]) +1 similar issue
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-glk9/igt@gem_exec_whisper@basic-fds-priority-all.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk8/igt@gem_exec_whisper@basic-fds-priority-all.html
* igt@gem_lmem_swapping@random:
- shard-tglb: NOTRUN -> [SKIP][25] ([i915#4613]) +2 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb6/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@verify-random:
- shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#4613])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk8/igt@gem_lmem_swapping@verify-random.html
- shard-kbl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl3/igt@gem_lmem_swapping@verify-random.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglb: NOTRUN -> [WARN][28] ([i915#2658])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglb: NOTRUN -> [SKIP][29] ([i915#4270]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
- shard-iclb: NOTRUN -> [SKIP][30] ([i915#4270])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][31] ([fdo#109271]) +90 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
- shard-iclb: NOTRUN -> [SKIP][32] ([i915#768])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_userptr_blits@access-control:
- shard-iclb: NOTRUN -> [SKIP][33] ([i915#3297])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb7/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@input-checking:
- shard-tglb: NOTRUN -> [DMESG-WARN][34] ([i915#4991])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb6/igt@gem_userptr_blits@input-checking.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglb: NOTRUN -> [SKIP][35] ([i915#3297]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb1/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-kbl: [PASS][36] -> [DMESG-WARN][37] ([i915#180]) +2 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglb: NOTRUN -> [SKIP][38] ([i915#2527] / [i915#2856]) +2 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-iclb: NOTRUN -> [SKIP][39] ([i915#2856])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb2/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-tglb: NOTRUN -> [SKIP][40] ([i915#1904])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb3/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_dc@dc6-dpms:
- shard-tglb: NOTRUN -> [FAIL][41] ([i915#454])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb1/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][42] -> [SKIP][43] ([fdo#109271])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109289]) +1 similar issue
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109289])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-tglb: NOTRUN -> [SKIP][46] ([fdo#111644] / [i915#1397] / [i915#2411])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb1/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglb: NOTRUN -> [SKIP][47] ([i915#3826])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-iclb: NOTRUN -> [SKIP][48] ([i915#3826])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][49] ([i915#5286]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111614]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][51] ([fdo#111615]) +5 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][52] ([i915#3689] / [i915#3886]) +3 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb2/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][53] ([i915#6095])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-kbl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3886]) +5 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl3/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#3886]) +3 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl1/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
- shard-glk: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#3886]) +4 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk2/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
- shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109278] / [i915#3886]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb5/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][58] ([fdo#111615] / [i915#3689])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb6/igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][59] ([i915#3689] / [i915#6095]) +6 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:
- shard-kbl: NOTRUN -> [SKIP][60] ([fdo#109271]) +105 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][61] ([i915#3689]) +6 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-tglb: NOTRUN -> [SKIP][62] ([i915#3742])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium@dp-hpd-for-each-pipe:
- shard-glk: NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +9 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk8/igt@kms_chamelium@dp-hpd-for-each-pipe.html
* igt@kms_chamelium@hdmi-crc-nonplanar-formats:
- shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +6 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl8/igt@kms_chamelium@hdmi-crc-nonplanar-formats.html
- shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109284] / [fdo#111827]) +11 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb7/igt@kms_chamelium@hdmi-crc-nonplanar-formats.html
* igt@kms_color@pipe-a-deep-color:
- shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109278] / [i915#3555])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb1/igt@kms_color@pipe-a-deep-color.html
* igt@kms_color@pipe-d-ctm-0-5:
- shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109278] / [i915#1149])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb8/igt@kms_color@pipe-d-ctm-0-5.html
* igt@kms_color_chamelium@pipe-a-degamma:
- shard-snb: NOTRUN -> [SKIP][68] ([fdo#109271] / [fdo#111827]) +5 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-snb4/igt@kms_color_chamelium@pipe-a-degamma.html
* igt@kms_color_chamelium@pipe-a-gamma:
- shard-kbl: NOTRUN -> [SKIP][69] ([fdo#109271] / [fdo#111827]) +12 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl3/igt@kms_color_chamelium@pipe-a-gamma.html
* igt@kms_color_chamelium@pipe-b-ctm-0-5:
- shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109284] / [fdo#111827]) +4 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb7/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
* igt@kms_color_chamelium@pipe-d-degamma:
- shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109278] / [fdo#109284] / [fdo#111827])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb4/igt@kms_color_chamelium@pipe-d-degamma.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglb: NOTRUN -> [SKIP][72] ([i915#1063]) +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@kms_content_protection@atomic-dpms.html
* {igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-512x512} (NEW):
- {shard-tglu}: NOTRUN -> [SKIP][73] ([i915#3359]) +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding@pipe-d-hdmi-a-1-512x512.html
* igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglb: NOTRUN -> [SKIP][74] ([i915#3528])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled:
- shard-tglb: NOTRUN -> [SKIP][75] ([i915#5287])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb6/igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-iclb: NOTRUN -> [SKIP][76] ([fdo#109274]) +1 similar issue
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb3/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglb: NOTRUN -> [SKIP][77] ([fdo#109274] / [fdo#111825]) +6 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][78] -> [FAIL][79] ([i915#79]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp1:
- shard-apl: [PASS][80] -> [FAIL][81] ([i915#79])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-apl8/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl8/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
- shard-apl: [PASS][82] -> [DMESG-WARN][83] ([i915#180]) +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-iclb: NOTRUN -> [SKIP][84] ([fdo#109280]) +7 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][85] ([fdo#109271]) +83 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-tglb: NOTRUN -> [SKIP][86] ([fdo#109280] / [fdo#111825]) +18 similar issues
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglb: NOTRUN -> [SKIP][87] ([i915#3555]) +6 similar issues
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@kms_hdr@bpc-switch-dpms.html
- shard-iclb: NOTRUN -> [SKIP][88] ([i915#3555])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb4/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
- shard-kbl: NOTRUN -> [FAIL][89] ([i915#1188])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl4/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
- shard-apl: NOTRUN -> [FAIL][90] ([i915#265])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl1/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
- shard-glk: NOTRUN -> [FAIL][91] ([i915#265]) +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
- shard-kbl: NOTRUN -> [FAIL][92] ([i915#265])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
* igt@kms_plane_multiple@atomic-pipe-a-tiling-4:
- shard-tglb: NOTRUN -> [SKIP][93] ([i915#5288])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@kms_plane_multiple@atomic-pipe-a-tiling-4.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1:
- shard-tglb: NOTRUN -> [SKIP][94] ([i915#5176]) +7 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb7/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1.html
- shard-iclb: NOTRUN -> [SKIP][95] ([i915#5176]) +2 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb1/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1:
- shard-tglb: NOTRUN -> [SKIP][96] ([i915#5235]) +7 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
- shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271]) +65 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
- shard-iclb: NOTRUN -> [SKIP][98] ([i915#5235]) +2 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-apl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#658])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl4/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
- shard-tglb: NOTRUN -> [SKIP][100] ([i915#2920])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
- shard-glk: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#658]) +1 similar issue
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk1/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
- shard-iclb: NOTRUN -> [SKIP][102] ([i915#658])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb5/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-kbl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#658]) +2 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-tglb: NOTRUN -> [FAIL][104] ([i915#132] / [i915#3467]) +3 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb7/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_psr@psr2_sprite_plane_onoff:
- shard-iclb: NOTRUN -> [SKIP][105] ([fdo#109441])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb5/igt@kms_psr@psr2_sprite_plane_onoff.html
* igt@kms_psr@psr2_suspend:
- shard-iclb: [PASS][106] -> [SKIP][107] ([fdo#109441]) +1 similar issue
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb2/igt@kms_psr@psr2_suspend.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb6/igt@kms_psr@psr2_suspend.html
* igt@kms_vblank@pipe-d-wait-forked:
- shard-iclb: NOTRUN -> [SKIP][108] ([fdo#109278]) +13 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb3/igt@kms_vblank@pipe-d-wait-forked.html
* igt@nouveau_crc@pipe-b-source-outp-inactive:
- shard-tglb: NOTRUN -> [SKIP][109] ([i915#2530]) +1 similar issue
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@nouveau_crc@pipe-b-source-outp-inactive.html
* igt@perf@polling-parameterized:
- shard-glk: [PASS][110] -> [FAIL][111] ([i915#5639])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-glk3/igt@perf@polling-parameterized.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk9/igt@perf@polling-parameterized.html
* igt@prime_nv_pcopy@test3_5:
- shard-tglb: NOTRUN -> [SKIP][112] ([fdo#109291]) +2 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb2/igt@prime_nv_pcopy@test3_5.html
* igt@prime_nv_test@nv_write_i915_gtt_mmap_read:
- shard-iclb: NOTRUN -> [SKIP][113] ([fdo#109291]) +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb6/igt@prime_nv_test@nv_write_i915_gtt_mmap_read.html
* igt@sysfs_clients@fair-0:
- shard-tglb: NOTRUN -> [SKIP][114] ([i915#2994]) +1 similar issue
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb7/igt@sysfs_clients@fair-0.html
* igt@sysfs_clients@split-25:
- shard-kbl: NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#2994]) +1 similar issue
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl1/igt@sysfs_clients@split-25.html
- shard-glk: NOTRUN -> [SKIP][116] ([fdo#109271] / [i915#2994])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk8/igt@sysfs_clients@split-25.html
* igt@tools_test@sysfs_l3_parity:
- shard-tglb: NOTRUN -> [SKIP][117] ([fdo#109307])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb7/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@feature_discovery@psr2:
- shard-iclb: [SKIP][118] ([i915#658]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb8/igt@feature_discovery@psr2.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb2/igt@feature_discovery@psr2.html
* igt@gem_create@create-ext-placement-all:
- {shard-dg1}: [TIMEOUT][120] -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-dg1-19/igt@gem_create@create-ext-placement-all.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-17/igt@gem_create@create-ext-placement-all.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-kbl: [DMESG-WARN][122] ([i915#180]) -> [PASS][123] +3 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_persistence@engines-hang@bcs0:
- {shard-rkl}: [SKIP][124] ([i915#6252]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-5/igt@gem_ctx_persistence@engines-hang@bcs0.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-1/igt@gem_ctx_persistence@engines-hang@bcs0.html
* igt@gem_ctx_persistence@engines-hang@rcs0:
- {shard-dg1}: [FAIL][126] ([i915#4883]) -> [PASS][127] +1 similar issue
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-dg1-13/igt@gem_ctx_persistence@engines-hang@rcs0.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-16/igt@gem_ctx_persistence@engines-hang@rcs0.html
* igt@gem_ctx_persistence@hostile:
- {shard-rkl}: [FAIL][128] ([i915#2410]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-1/igt@gem_ctx_persistence@hostile.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-5/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@in-flight-contexts-10ms:
- {shard-tglu}: [TIMEOUT][130] ([i915#3063]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-tglu-6/igt@gem_eio@in-flight-contexts-10ms.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglu-5/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_eio@kms:
- shard-tglb: [FAIL][132] ([i915#5784]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-tglb3/igt@gem_eio@kms.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb7/igt@gem_eio@kms.html
- {shard-dg1}: [FAIL][134] ([i915#5784]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-dg1-12/igt@gem_eio@kms.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-19/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-iclb: [SKIP][136] ([i915#4525]) -> [PASS][137] +2 similar issues
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb5/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb2/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglb: [FAIL][138] ([i915#2842]) -> [PASS][139] +1 similar issue
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html
- shard-iclb: [FAIL][140] ([i915#2842]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb3/igt@gem_exec_fair@basic-none-share@rcs0.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb6/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-glk: [FAIL][142] ([i915#2842]) -> [PASS][143] +1 similar issue
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-glk1/igt@gem_exec_fair@basic-none@vcs0.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk1/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fence@basic-busy@bcs0:
- {shard-rkl}: [SKIP][144] ([i915#6251]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-5/igt@gem_exec_fence@basic-busy@bcs0.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-2/igt@gem_exec_fence@basic-busy@bcs0.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- {shard-rkl}: [SKIP][146] ([i915#3281]) -> [PASS][147] +9 similar issues
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- {shard-dg1}: [DMESG-WARN][148] ([i915#4936]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- {shard-rkl}: [SKIP][150] ([i915#3282]) -> [PASS][151] +7 similar issues
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-uncached.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- {shard-rkl}: [SKIP][152] ([i915#2527]) -> [PASS][153] +1 similar issue
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_rps@min-max-config-idle:
- {shard-rkl}: [FAIL][154] ([i915#4016]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-1/igt@i915_pm_rps@min-max-config-idle.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-1/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- {shard-rkl}: [SKIP][156] ([i915#4387]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-1/igt@i915_pm_sseu@full-enable.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@live@gt_pm:
- {shard-rkl}: [DMESG-FAIL][158] ([i915#4258]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-6/igt@i915_selftest@live@gt_pm.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-2/igt@i915_selftest@live@gt_pm.html
* igt@kms_color@pipe-c-invalid-ctm-matrix-sizes:
- {shard-rkl}: [SKIP][160] ([i915#4070]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-rkl-1/igt@kms_color@pipe-c-invalid-ctm-matrix-sizes.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-rkl-5/igt@kms_color@pipe-c-invalid-ctm-matrix-sizes.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-glk: [FAIL][162] ([i915#2346]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-1:
- shard-glk: [SKIP][164] ([fdo#109271]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-glk8/igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-1.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-glk3/igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-1.html
* igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
- {shard-dg1}: [INCOMPLETE][166] -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-dg1-19/igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-19/igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-apl: [DMESG-WARN][168] ([i915#180]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-iclb: [SKIP][170] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb5/igt@kms_psr2_su@page_flip-xrgb8888.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2_primary_blt:
- shard-iclb: [SKIP][172] ([fdo#109441]) -> [PASS][173] +2 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb5/igt@kms_psr@psr2_primary_blt.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglb: [SKIP][174] ([i915#5519]) -> [PASS][175] +1 similar issue
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-iclb: [SKIP][176] ([i915#5519]) -> [PASS][177] +1 similar issue
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@perf_pmu@all-busy-idle-check-all:
- {shard-dg1}: [FAIL][178] ([i915#5234]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html
* igt@sysfs_heartbeat_interval@precise@rcs0:
- {shard-dg1}: [FAIL][180] ([i915#1755]) -> [PASS][181] +3 similar issues
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-dg1-19/igt@sysfs_heartbeat_interval@precise@rcs0.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-dg1-13/igt@sysfs_heartbeat_interval@precise@rcs0.html
#### Warnings ####
* igt@gem_eio@unwedge-stress:
- shard-tglb: [TIMEOUT][182] ([i915#3063]) -> [FAIL][183] ([i915#5784])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-tglb7/igt@gem_eio@unwedge-stress.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-tglb1/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-iclb: [FAIL][184] ([i915#2842]) -> [FAIL][185] ([i915#2852])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb4/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-kbl: [INCOMPLETE][186] ([i915#180] / [i915#4939]) -> [FAIL][187] ([i915#4767])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
- shard-kbl: [DMESG-FAIL][188] ([i915#180]) -> [FAIL][189] ([i915#1188])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl6/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl1/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-iclb: [SKIP][190] ([i915#2920]) -> [SKIP][191] ([i915#658]) +1 similar issue
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-iclb6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@runner@aborted:
- shard-apl: ([FAIL][192], [FAIL][193], [FAIL][194]) ([i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][195], [FAIL][196], [FAIL][197]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-apl8/igt@runner@aborted.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-apl1/igt@runner@aborted.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-apl1/igt@runner@aborted.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl8/igt@runner@aborted.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl2/igt@runner@aborted.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-apl8/igt@runner@aborted.html
- shard-kbl: ([FAIL][198], [FAIL][199], [FAIL][200], [FAIL][201], [FAIL][202]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#92]) -> ([FAIL][203], [FAIL][204], [FAIL][205], [FAIL][206], [FAIL][207]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl3/igt@runner@aborted.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl7/igt@runner@aborted.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl6/igt@runner@aborted.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl6/igt@runner@aborted.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11803/shard-kbl6/igt@runner@aborted.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl1/igt@runner@aborted.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl6/igt@runner@aborted.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl6/igt@runner@aborted.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl4/igt@runner@aborted.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/shard-kbl6/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2848]: https://gitlab.freedesktop.org/drm/intel/issues/2848
[i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[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#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[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#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[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#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4462]: https://gitlab.freedesktop.org/drm/intel/issues/4462
[i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
[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#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939
[i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174
[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#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5264]: https://gitlab.freedesktop.org/drm/intel/issues/5264
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5775]: https://gitlab.freedesktop.org/drm/intel/issues/5775
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6076]: https://gitlab.freedesktop.org/drm/intel/issues/6076
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140
[i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6541 -> IGTPW_7381
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_11803: 23f2707225ca8a6c43526d1d7c46a7dd1a5f02cf @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7381: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7381/index.html
IGT_6541: 02153f109bd422d93cfce7f5aa9d7b0e22fab13c @ 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_7381/index.html
[-- Attachment #2: Type: text/html, Size: 64604 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-06-27 19:27 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-24 10:58 [igt-dev] [PATCH i-g-t v6] tests/kms_flip: Skip test only for invalid combination Jeevan B
2022-06-24 11:31 ` Karthik B S
2022-06-24 11:50 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: Skip test only for invalid combination (rev6) Patchwork
2022-06-27 19:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.