* [igt-dev] [PATCH i-g-t] runner: Handle graceful exit regardless of log level
@ 2021-02-08 10:24 Petri Latvala
2021-02-08 10:28 ` Chris Wilson
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Petri Latvala @ 2021-02-08 10:24 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala, Chris Wilson
The SIGHUP handling was incorrectly done only when log level was at
least 'normal'.
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Arkadiusz Hiler <arek@hiler.eu>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
---
runner/executor.c | 52 ++++++++++++++++++++++-------------------------
1 file changed, 24 insertions(+), 28 deletions(-)
diff --git a/runner/executor.c b/runner/executor.c
index 3ca2d20a..9b582179 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -1008,37 +1008,33 @@ static int monitor_output(pid_t child,
get_cmdline(siginfo.ssi_pid, comm, sizeof(comm)),
siginfo.ssi_pid,
strsignal(siginfo.ssi_signo));
+ }
- if (siginfo.ssi_signo == SIGHUP) {
- /*
- * If taken down with
- * SIGHUP, arrange the
- * current test to be
- * marked as notrun
- * instead of
- * incomplete. For
- * other signals we
- * don't need to do
- * anything, the lack
- * of a completion
- * marker of any kind
- * in the logs will
- * mark those tests as
- * incomplete. Note
- * that since we set
- * 'aborting' to true
- * we're going to skip
- * all other journal
- * writes later.
- */
+ if (siginfo.ssi_signo == SIGHUP) {
+ /*
+ * If taken down with SIGHUP,
+ * arrange the current test to
+ * be marked as notrun instead
+ * of incomplete. For other
+ * signals we don't need to do
+ * anything, the lack of a
+ * completion marker of any
+ * kind in the logs will mark
+ * those tests as
+ * incomplete. Note that since
+ * we set 'aborting' to true
+ * we're going to skip all
+ * other journal writes later.
+ */
+ if (settings->log_level >= LOG_LEVEL_NORMAL)
outf("Exiting gracefully, currently running test will have a 'notrun' result\n");
- dprintf(outputs[_F_JOURNAL], "%s%d (%.3fs)\n",
- EXECUTOR_EXIT,
- -SIGHUP, 0.0);
- if (settings->sync)
- fdatasync(outputs[_F_JOURNAL]);
- }
+
+ dprintf(outputs[_F_JOURNAL], "%s%d (%.3fs)\n",
+ EXECUTOR_EXIT,
+ -SIGHUP, 0.0);
+ if (settings->sync)
+ fdatasync(outputs[_F_JOURNAL]);
}
aborting = true;
--
2.29.2
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] runner: Handle graceful exit regardless of log level
2021-02-08 10:24 [igt-dev] [PATCH i-g-t] runner: Handle graceful exit regardless of log level Petri Latvala
@ 2021-02-08 10:28 ` Chris Wilson
2021-02-08 14:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-02-08 19:29 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Chris Wilson @ 2021-02-08 10:28 UTC (permalink / raw)
To: Petri Latvala, igt-dev; +Cc: Petri Latvala
Quoting Petri Latvala (2021-02-08 10:24:39)
> The SIGHUP handling was incorrectly done only when log level was at
> least 'normal'.
Ah _log_ level. Now only the outf() is under the verbosity flag.
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> Cc: Arkadiusz Hiler <arek@hiler.eu>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
but I may have said the same before without spotting it last time.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for runner: Handle graceful exit regardless of log level
2021-02-08 10:24 [igt-dev] [PATCH i-g-t] runner: Handle graceful exit regardless of log level Petri Latvala
2021-02-08 10:28 ` Chris Wilson
@ 2021-02-08 14:37 ` Patchwork
2021-02-08 19:29 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2021-02-08 14:37 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 5013 bytes --]
== Series Details ==
Series: runner: Handle graceful exit regardless of log level
URL : https://patchwork.freedesktop.org/series/86836/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9747 -> IGTPW_5490
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/index.html
Known issues
------------
Here are the changes found in IGTPW_5490 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@sync-fork-gfx0:
- fi-cfl-8700k: NOTRUN -> [SKIP][1] ([fdo#109271]) +25 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-cfl-8700k/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html
* igt@debugfs_test@read_all_entries:
- fi-tgl-y: [PASS][2] -> [DMESG-WARN][3] ([i915#1982] / [i915#402])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/fi-tgl-y/igt@debugfs_test@read_all_entries.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-tgl-y/igt@debugfs_test@read_all_entries.html
* igt@gem_exec_fence@basic-busy@bcs0:
- fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271]) +23 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#2190])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
- fi-cfl-8700k: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-cfl-8700k/igt@gem_huc_copy@huc-copy.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][7] ([i915#1886] / [i915#2291])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-kbl-soraka: NOTRUN -> [SKIP][8] ([fdo#109271] / [fdo#111827]) +8 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@vga-edid-read:
- fi-cfl-8700k: NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#111827]) +8 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-cfl-8700k/igt@kms_chamelium@vga-edid-read.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
- fi-cfl-8700k: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#533])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-cfl-8700k/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
- fi-kbl-soraka: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#533])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
* igt@prime_self_import@basic-with_one_bo_two_files:
- fi-tgl-y: [PASS][12] -> [DMESG-WARN][13] ([i915#402]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html
#### Possible fixes ####
* igt@prime_self_import@basic-with_two_bos:
- fi-tgl-y: [DMESG-WARN][14] ([i915#402]) -> [PASS][15] +1 similar issue
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/fi-tgl-y/igt@prime_self_import@basic-with_two_bos.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/fi-tgl-y/igt@prime_self_import@basic-with_two_bos.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
Participating hosts (42 -> 37)
------------------------------
Additional (2): fi-kbl-soraka fi-cfl-8700k
Missing (7): fi-jsl-1 fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5998 -> IGTPW_5490
CI-20190529: 20190529
CI_DRM_9747: 65d67e70f9f78c7f8c2796956fdbdb69cffc7c98 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5490: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/index.html
IGT_5998: b0160aad9e547d2205341e0b6783e12aa143566e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/index.html
[-- Attachment #1.2: Type: text/html, Size: 6676 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for runner: Handle graceful exit regardless of log level
2021-02-08 10:24 [igt-dev] [PATCH i-g-t] runner: Handle graceful exit regardless of log level Petri Latvala
2021-02-08 10:28 ` Chris Wilson
2021-02-08 14:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-02-08 19:29 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2021-02-08 19:29 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 30270 bytes --]
== Series Details ==
Series: runner: Handle graceful exit regardless of log level
URL : https://patchwork.freedesktop.org/series/86836/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_9747_full -> IGTPW_5490_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_5490_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5490_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_5490/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_5490_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-glk: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-glk4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
Known issues
------------
Here are the changes found in IGTPW_5490_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@feature_discovery@chamelium:
- shard-tglb: NOTRUN -> [SKIP][3] ([fdo#111827])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb6/igt@feature_discovery@chamelium.html
* igt@gem_ctx_exec@basic-close-race:
- shard-iclb: [PASS][4] -> [INCOMPLETE][5] ([i915#1895])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-iclb8/igt@gem_ctx_exec@basic-close-race.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb6/igt@gem_ctx_exec@basic-close-race.html
* igt@gem_eio@unwedge-stress:
- shard-tglb: [PASS][6] -> [TIMEOUT][7] ([i915#1037] / [i915#3063])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-tglb5/igt@gem_eio@unwedge-stress.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb5/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@hang:
- shard-iclb: [PASS][8] -> [INCOMPLETE][9] ([i915#1895] / [i915#2295] / [i915#3031])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-iclb8/igt@gem_exec_balancer@hang.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb4/igt@gem_exec_balancer@hang.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-kbl: [PASS][10] -> [SKIP][11] ([fdo#109271])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-kbl7/igt@gem_exec_fair@basic-flow@rcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl4/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gem_exec_fair@basic-none@vcs1:
- shard-kbl: [PASS][12] -> [FAIL][13] ([i915#2842])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-kbl6/igt@gem_exec_fair@basic-none@vcs1.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl7/igt@gem_exec_fair@basic-none@vcs1.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][14] -> [FAIL][15] ([i915#2842])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglb: NOTRUN -> [FAIL][16] ([i915#2842]) +4 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-iclb: NOTRUN -> [FAIL][17] ([i915#2842]) +3 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_reloc@basic-many-active@rcs0:
- shard-tglb: NOTRUN -> [FAIL][18] ([i915#2389]) +4 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb7/igt@gem_exec_reloc@basic-many-active@rcs0.html
- shard-snb: NOTRUN -> [FAIL][19] ([i915#2389]) +2 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-snb7/igt@gem_exec_reloc@basic-many-active@rcs0.html
* igt@gem_exec_reloc@basic-many-active@vcs0:
- shard-kbl: NOTRUN -> [FAIL][20] ([i915#2389]) +4 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl4/igt@gem_exec_reloc@basic-many-active@vcs0.html
* igt@gem_exec_reloc@basic-parallel:
- shard-kbl: NOTRUN -> [TIMEOUT][21] ([i915#1729])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl2/igt@gem_exec_reloc@basic-parallel.html
- shard-apl: NOTRUN -> [TIMEOUT][22] ([i915#1729])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl7/igt@gem_exec_reloc@basic-parallel.html
* igt@gem_exec_reloc@basic-wide-active@vcs1:
- shard-iclb: NOTRUN -> [FAIL][23] ([i915#2389]) +4 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb1/igt@gem_exec_reloc@basic-wide-active@vcs1.html
* igt@gem_exec_schedule@u-fairslice@rcs0:
- shard-apl: [PASS][24] -> [DMESG-WARN][25] ([i915#1610])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-apl2/igt@gem_exec_schedule@u-fairslice@rcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl3/igt@gem_exec_schedule@u-fairslice@rcs0.html
- shard-iclb: [PASS][26] -> [DMESG-WARN][27] ([i915#2803])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-iclb4/igt@gem_exec_schedule@u-fairslice@rcs0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb8/igt@gem_exec_schedule@u-fairslice@rcs0.html
* igt@gem_exec_whisper@basic-queues-forked-all:
- shard-iclb: [PASS][28] -> [INCOMPLETE][29] ([i915#2295])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-iclb6/igt@gem_exec_whisper@basic-queues-forked-all.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb1/igt@gem_exec_whisper@basic-queues-forked-all.html
* igt@gem_pread@exhaustion:
- shard-tglb: NOTRUN -> [WARN][30] ([i915#2658])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb5/igt@gem_pread@exhaustion.html
- shard-glk: NOTRUN -> [WARN][31] ([i915#2658])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk9/igt@gem_pread@exhaustion.html
- shard-apl: NOTRUN -> [WARN][32] ([i915#2658])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl8/igt@gem_pread@exhaustion.html
- shard-iclb: NOTRUN -> [WARN][33] ([i915#2658])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb3/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][34] ([i915#2658])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-snb2/igt@gem_pread@exhaustion.html
- shard-kbl: NOTRUN -> [WARN][35] ([i915#2658])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl2/igt@gem_pread@exhaustion.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-kbl: NOTRUN -> [SKIP][36] ([fdo#109271]) +124 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
- shard-iclb: NOTRUN -> [SKIP][37] ([i915#768]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-glk: NOTRUN -> [SKIP][38] ([fdo#109271]) +70 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109312])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb3/igt@gem_softpin@evict-snoop.html
- shard-tglb: NOTRUN -> [SKIP][40] ([fdo#109312])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb8/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@process-exit-mmap-busy@wc:
- shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#1699]) +3 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl6/igt@gem_userptr_blits@process-exit-mmap-busy@wc.html
* igt@gem_vm_create@destroy-race:
- shard-tglb: [PASS][42] -> [TIMEOUT][43] ([i915#2795])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-tglb6/igt@gem_vm_create@destroy-race.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb6/igt@gem_vm_create@destroy-race.html
* igt@gen7_exec_parse@basic-allocation:
- shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109289]) +5 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb2/igt@gen7_exec_parse@basic-allocation.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglb: NOTRUN -> [SKIP][45] ([fdo#112306])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb3/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-iclb: NOTRUN -> [SKIP][46] ([fdo#112306])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb1/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
- shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#1937])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-apl: NOTRUN -> [SKIP][48] ([fdo#109271]) +169 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl8/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglb: NOTRUN -> [SKIP][49] ([i915#404])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-iclb: NOTRUN -> [SKIP][50] ([i915#404])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-iclb: NOTRUN -> [SKIP][51] ([fdo#110725] / [fdo#111614])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb4/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-tglb: NOTRUN -> [SKIP][52] ([fdo#111614])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb2/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-iclb: NOTRUN -> [SKIP][53] ([fdo#110723])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
- shard-tglb: NOTRUN -> [SKIP][54] ([fdo#111615]) +2 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_chamelium@hdmi-edid-change-during-suspend:
- shard-apl: NOTRUN -> [SKIP][55] ([fdo#109271] / [fdo#111827]) +14 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl6/igt@kms_chamelium@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium@vga-hpd-for-each-pipe:
- shard-kbl: NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +10 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl2/igt@kms_chamelium@vga-hpd-for-each-pipe.html
- shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109284] / [fdo#111827]) +4 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb3/igt@kms_chamelium@vga-hpd-for-each-pipe.html
* igt@kms_color@pipe-a-ctm-0-25:
- shard-glk: [PASS][58] -> [DMESG-WARN][59] ([i915#118] / [i915#95])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-glk8/igt@kms_color@pipe-a-ctm-0-25.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk6/igt@kms_color@pipe-a-ctm-0-25.html
* igt@kms_color@pipe-a-ctm-0-75:
- shard-iclb: NOTRUN -> [FAIL][60] ([i915#1149] / [i915#315])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb6/igt@kms_color@pipe-a-ctm-0-75.html
- shard-tglb: NOTRUN -> [FAIL][61] ([i915#1149] / [i915#315])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb6/igt@kms_color@pipe-a-ctm-0-75.html
* igt@kms_color@pipe-d-ctm-max:
- shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109278] / [i915#1149]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb7/igt@kms_color@pipe-d-ctm-max.html
* igt@kms_color_chamelium@pipe-a-ctm-0-75:
- shard-snb: NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +5 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-snb2/igt@kms_color_chamelium@pipe-a-ctm-0-75.html
* igt@kms_color_chamelium@pipe-d-ctm-0-25:
- shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +7 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk8/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
- shard-iclb: NOTRUN -> [SKIP][65] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb7/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
* igt@kms_color_chamelium@pipe-d-ctm-max:
- shard-tglb: NOTRUN -> [SKIP][66] ([fdo#109284] / [fdo#111827]) +13 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb2/igt@kms_color_chamelium@pipe-d-ctm-max.html
* igt@kms_content_protection@atomic-dpms:
- shard-apl: NOTRUN -> [TIMEOUT][67] ([i915#1319]) +1 similar issue
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl4/igt@kms_content_protection@atomic-dpms.html
- shard-tglb: NOTRUN -> [SKIP][68] ([fdo#111828]) +2 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy:
- shard-iclb: NOTRUN -> [SKIP][69] ([fdo#109300] / [fdo#111066]) +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb5/igt@kms_content_protection@legacy.html
- shard-kbl: NOTRUN -> [TIMEOUT][70] ([i915#1319]) +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl6/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109279]) +1 similar issue
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement.html
- shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109278] / [fdo#109279]) +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb2/igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement.html
* igt@kms_cursor_crc@pipe-c-cursor-64x64-random:
- shard-kbl: [PASS][73] -> [FAIL][74] ([i915#54])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html
- shard-apl: [PASS][75] -> [FAIL][76] ([i915#54])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-apl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-random.html
* igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
- shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109278]) +10 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109274] / [fdo#109278])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@pipe-d-single-bo:
- shard-glk: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk7/igt@kms_cursor_legacy@pipe-d-single-bo.html
- shard-kbl: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#533]) +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl2/igt@kms_cursor_legacy@pipe-d-single-bo.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-tglb: NOTRUN -> [SKIP][81] ([i915#426])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb7/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][82] -> [FAIL][83] ([i915#79])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglb: NOTRUN -> [SKIP][84] ([fdo#111825]) +31 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb6/igt@kms_flip@2x-plain-flip-ts-check.html
- shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109274]) +3 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb4/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-tglb: [PASS][86] -> [FAIL][87] ([i915#2598])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-suspend@c-dp1:
- shard-apl: NOTRUN -> [DMESG-WARN][88] ([i915#180])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl4/igt@kms_flip@flip-vs-suspend@c-dp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:
- shard-apl: NOTRUN -> [FAIL][89] ([i915#2641])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html
- shard-kbl: NOTRUN -> [FAIL][90] ([i915#2641])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [FAIL][91] ([i915#2546]) +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-snb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite:
- shard-snb: NOTRUN -> [SKIP][92] ([fdo#109271]) +84 similar issues
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack:
- shard-iclb: NOTRUN -> [SKIP][93] ([fdo#109280]) +20 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-apl: [PASS][94] -> [DMESG-WARN][95] ([i915#180]) +1 similar issue
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-apl1/igt@kms_hdr@bpc-switch-suspend.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl8/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglb: NOTRUN -> [SKIP][96] ([i915#1187])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
- shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#533]) +1 similar issue
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl2/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
* igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][98] ([fdo#108145] / [i915#265]) +1 similar issue
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk9/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html
- shard-apl: NOTRUN -> [FAIL][99] ([fdo#108145] / [i915#265]) +2 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html
- shard-kbl: NOTRUN -> [FAIL][100] ([fdo#108145] / [i915#265]) +1 similar issue
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html
* igt@kms_plane_cursor@pipe-b-primary-size-256:
- shard-glk: [PASS][101] -> [FAIL][102] ([i915#2657]) +1 similar issue
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-glk3/igt@kms_plane_cursor@pipe-b-primary-size-256.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk6/igt@kms_plane_cursor@pipe-b-primary-size-256.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4:
- shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#658]) +2 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html
- shard-kbl: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#658]) +1 similar issue
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html
* igt@kms_psr2_su@page_flip:
- shard-iclb: [PASS][105] -> [SKIP][106] ([fdo#109642] / [fdo#111068] / [i915#658])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-iclb2/igt@kms_psr2_su@page_flip.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb1/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: NOTRUN -> [SKIP][107] ([fdo#109441]) +2 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html
* igt@kms_psr@psr2_sprite_blt:
- shard-iclb: [PASS][108] -> [SKIP][109] ([fdo#109441])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb6/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#2437]) +1 similar issue
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl3/igt@kms_writeback@writeback-check-output.html
- shard-iclb: NOTRUN -> [SKIP][111] ([i915#2437])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb5/igt@kms_writeback@writeback-check-output.html
- shard-tglb: NOTRUN -> [SKIP][112] ([i915#2437])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb2/igt@kms_writeback@writeback-check-output.html
- shard-glk: NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#2437])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk6/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-kbl: NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#2437]) +1 similar issue
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl7/igt@kms_writeback@writeback-fb-id.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-iclb: NOTRUN -> [SKIP][115] ([fdo#109289]) +5 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb1/igt@perf@unprivileged-single-ctx-counters.html
* igt@prime_nv_pcopy@test1_micro:
- shard-tglb: NOTRUN -> [SKIP][116] ([fdo#109291]) +3 similar issues
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb2/igt@prime_nv_pcopy@test1_micro.html
* igt@prime_nv_test@i915_import_pread_pwrite:
- shard-iclb: NOTRUN -> [SKIP][117] ([fdo#109291]) +2 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb2/igt@prime_nv_test@i915_import_pread_pwrite.html
* igt@sysfs_clients@recycle:
- shard-iclb: [PASS][118] -> [FAIL][119] ([i915#3028])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-iclb7/igt@sysfs_clients@recycle.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb8/igt@sysfs_clients@recycle.html
- shard-kbl: [PASS][120] -> [FAIL][121] ([i915#3028])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-kbl4/igt@sysfs_clients@recycle.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl7/igt@sysfs_clients@recycle.html
* igt@sysfs_clients@split-10@bcs0:
- shard-glk: [PASS][122] -> [SKIP][123] ([fdo#109271] / [i915#3026])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-glk9/igt@sysfs_clients@split-10@bcs0.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk3/igt@sysfs_clients@split-10@bcs0.html
#### Possible fixes ####
* igt@gem_eio@in-flight-contexts-1us:
- shard-tglb: [TIMEOUT][124] -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-tglb3/igt@gem_eio@in-flight-contexts-1us.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-tglb1/igt@gem_eio@in-flight-contexts-1us.html
* igt@gem_eio@in-flight-suspend:
- shard-apl: [DMESG-WARN][126] ([i915#1037] / [i915#180]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-apl8/igt@gem_eio@in-flight-suspend.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl7/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [FAIL][128] ([i915#2846]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-glk6/igt@gem_exec_fair@basic-deadline.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-kbl: [FAIL][130] ([i915#2842]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-kbl6/igt@gem_exec_fair@basic-none@rcs0.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl7/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [FAIL][132] ([i915#2842]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-iclb: [FAIL][134] ([i915#2849]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_schedule@u-fairslice@rcs0:
- shard-kbl: [DMESG-WARN][136] ([i915#1610] / [i915#2803]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-kbl4/igt@gem_exec_schedule@u-fairslice@rcs0.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl7/igt@gem_exec_schedule@u-fairslice@rcs0.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-glk: [FAIL][138] ([i915#644]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-glk2/igt@gem_ppgtt@flink-and-close-vma-leak.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-apl: [DMESG-WARN][140] ([i915#180]) -> [PASS][141] +1 similar issue
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_color@pipe-c-legacy-gamma-reset:
- shard-kbl: [FAIL][142] ([i915#2964]) -> [PASS][143] +1 similar issue
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-kbl1/igt@kms_color@pipe-c-legacy-gamma-reset.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-kbl1/igt@kms_color@pipe-c-legacy-gamma-reset.html
- shard-apl: [FAIL][144] ([i915#2964]) -> [PASS][145] +1 similar issue
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9747/shard-apl6/igt@kms_color@pipe-c-legacy-gamma-reset.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/shard-apl6/igt@kms_color@pipe-c-legacy-gamma-reset.html
- shard-glk: [FAIL][146] ([i915#2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5490/index.html
[-- Attachment #1.2: Type: text/html, Size: 33691 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-02-08 19:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-08 10:24 [igt-dev] [PATCH i-g-t] runner: Handle graceful exit regardless of log level Petri Latvala
2021-02-08 10:28 ` Chris Wilson
2021-02-08 14:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-02-08 19:29 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox