* [igt-dev] [PATCH i-g-t] runner: Make the result an incomplete if a test is killed due to taint
@ 2020-01-29 13:56 Petri Latvala
2020-01-29 14:01 ` Chris Wilson
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Petri Latvala @ 2020-01-29 13:56 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala
If we're checking for taints, we kill the test as soon as we notice a
taint. Out of the box, such killing will get marked as such and yields
a 'timeout' result, which is misleading. The test didn't spend too
much time, it just did nasties.
Make sure taint-killing results in an 'incomplete' result
instead. It's still not completely truthful for the state of the
testing but closer than a 'timeout'. And stands out more in CI result
analysis.
Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
---
runner/executor.c | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/runner/executor.c b/runner/executor.c
index ca9a12e3..dbe6fa57 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -1010,8 +1010,26 @@ static int monitor_output(pid_t child,
time = 0.0;
if (!aborting) {
+ const char *exitline;
+
+ exitline = killed ? EXECUTOR_TIMEOUT : EXECUTOR_EXIT;
+
+ /* If we're stopping because we killed
+ * the test for tainting, let's not
+ * call it a timeout. Since the test
+ * execution was still going on, we
+ * probably didn't yet get the subtest
+ * result line printed. Such a case is
+ * parsed as an incomplete unless the
+ * journal says timeout, ergo to make
+ * the result an incomplete we avoid
+ * journaling a timeout here.
+ */
+ if (is_tainted(taints))
+ exitline = EXECUTOR_EXIT;
+
dprintf(outputs[_F_JOURNAL], "%s%d (%.3fs)\n",
- killed ? EXECUTOR_TIMEOUT : EXECUTOR_EXIT,
+ exitline,
status, time);
if (settings->sync) {
fdatasync(outputs[_F_JOURNAL]);
--
2.20.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] runner: Make the result an incomplete if a test is killed due to taint
2020-01-29 13:56 [igt-dev] [PATCH i-g-t] runner: Make the result an incomplete if a test is killed due to taint Petri Latvala
@ 2020-01-29 14:01 ` Chris Wilson
2020-01-29 14:13 ` Mika Kuoppala
2020-01-29 16:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2020-02-01 2:05 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 1 reply; 7+ messages in thread
From: Chris Wilson @ 2020-01-29 14:01 UTC (permalink / raw)
To: Petri Latvala, igt-dev; +Cc: Petri Latvala
Quoting Petri Latvala (2020-01-29 13:56:19)
> If we're checking for taints, we kill the test as soon as we notice a
> taint. Out of the box, such killing will get marked as such and yields
> a 'timeout' result, which is misleading. The test didn't spend too
> much time, it just did nasties.
>
> Make sure taint-killing results in an 'incomplete' result
> instead. It's still not completely truthful for the state of the
> testing but closer than a 'timeout'. And stands out more in CI result
> analysis.
>
> Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
Incomplete has been synonymous in my mind with the "kernel oopsed" so it
worksforme. Even if the HW dies, everyone blames the kernel for letting
it die!
Having the "test ran slowly for 360s+" timeout be distinct from a death
is important for me when scanning the results, so
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] runner: Make the result an incomplete if a test is killed due to taint
2020-01-29 14:01 ` Chris Wilson
@ 2020-01-29 14:13 ` Mika Kuoppala
2020-01-29 14:27 ` Chris Wilson
0 siblings, 1 reply; 7+ messages in thread
From: Mika Kuoppala @ 2020-01-29 14:13 UTC (permalink / raw)
To: Chris Wilson, Petri Latvala, igt-dev; +Cc: Petri Latvala
Chris Wilson <chris@chris-wilson.co.uk> writes:
> Quoting Petri Latvala (2020-01-29 13:56:19)
>> If we're checking for taints, we kill the test as soon as we notice a
>> taint. Out of the box, such killing will get marked as such and yields
>> a 'timeout' result, which is misleading. The test didn't spend too
>> much time, it just did nasties.
>>
>> Make sure taint-killing results in an 'incomplete' result
>> instead. It's still not completely truthful for the state of the
>> testing but closer than a 'timeout'. And stands out more in CI result
>> analysis.
>>
>> Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
>> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
>> Cc: Chris Wilson <chris@chris-wilson.co.uk>
>
> Incomplete has been synonymous in my mind with the "kernel oopsed" so it
> worksforme. Even if the HW dies, everyone blames the kernel for letting
> it die!
>
So with this patch, we can now assume 'incomplete' is always
atleast oops/bug_on or a more catastrophics system hang?
-Mika
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] runner: Make the result an incomplete if a test is killed due to taint
2020-01-29 14:13 ` Mika Kuoppala
@ 2020-01-29 14:27 ` Chris Wilson
0 siblings, 0 replies; 7+ messages in thread
From: Chris Wilson @ 2020-01-29 14:27 UTC (permalink / raw)
To: Mika Kuoppala, Petri Latvala, igt-dev; +Cc: Petri Latvala
Quoting Mika Kuoppala (2020-01-29 14:13:36)
> Chris Wilson <chris@chris-wilson.co.uk> writes:
>
> > Quoting Petri Latvala (2020-01-29 13:56:19)
> >> If we're checking for taints, we kill the test as soon as we notice a
> >> taint. Out of the box, such killing will get marked as such and yields
> >> a 'timeout' result, which is misleading. The test didn't spend too
> >> much time, it just did nasties.
> >>
> >> Make sure taint-killing results in an 'incomplete' result
> >> instead. It's still not completely truthful for the state of the
> >> testing but closer than a 'timeout'. And stands out more in CI result
> >> analysis.
> >>
> >> Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
> >> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> >> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> >
> > Incomplete has been synonymous in my mind with the "kernel oopsed" so it
> > worksforme. Even if the HW dies, everyone blames the kernel for letting
> > it die!
> >
>
> So with this patch, we can now assume 'incomplete' is always
> atleast oops/bug_on or a more catastrophics system hang?
Somewhere between oops and Jenkins!
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for runner: Make the result an incomplete if a test is killed due to taint
2020-01-29 13:56 [igt-dev] [PATCH i-g-t] runner: Make the result an incomplete if a test is killed due to taint Petri Latvala
2020-01-29 14:01 ` Chris Wilson
@ 2020-01-29 16:37 ` Patchwork
2020-01-30 8:57 ` Petri Latvala
2020-02-01 2:05 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2020-01-29 16:37 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
== Series Details ==
Series: runner: Make the result an incomplete if a test is killed due to taint
URL : https://patchwork.freedesktop.org/series/72722/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7838 -> IGTPW_4028
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/index.html
Known issues
------------
Here are the changes found in IGTPW_4028 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live_gt_heartbeat:
- fi-tgl-y: [PASS][1] -> [DMESG-FAIL][2] ([CI#94])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-tgl-y/igt@i915_selftest@live_gt_heartbeat.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-tgl-y/igt@i915_selftest@live_gt_heartbeat.html
* igt@prime_self_import@basic-with_one_bo_two_files:
- fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([CI#94] / [i915#402]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html
#### Possible fixes ####
* igt@gem_close_race@basic-threads:
- fi-byt-j1900: [TIMEOUT][5] ([fdo#112271] / [i915#816]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-byt-j1900/igt@gem_close_race@basic-threads.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-byt-j1900/igt@gem_close_race@basic-threads.html
* igt@i915_selftest@live_blt:
- fi-hsw-4770r: [DMESG-FAIL][7] ([i915#725]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-hsw-4770r/igt@i915_selftest@live_blt.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-hsw-4770r/igt@i915_selftest@live_blt.html
* igt@i915_selftest@live_gem_contexts:
- fi-cfl-8700k: [INCOMPLETE][9] ([i915#424]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-cfl-8700k/igt@i915_selftest@live_gem_contexts.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-cfl-8700k/igt@i915_selftest@live_gem_contexts.html
* igt@i915_selftest@live_gtt:
- fi-bdw-5557u: [TIMEOUT][11] ([fdo#112271]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-bdw-5557u/igt@i915_selftest@live_gtt.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-bdw-5557u/igt@i915_selftest@live_gtt.html
* igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:
- fi-icl-dsi: [DMESG-WARN][13] ([i915#109]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-icl-dsi/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-icl-dsi/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html
* igt@prime_self_import@basic-llseek-size:
- fi-tgl-y: [DMESG-WARN][15] ([CI#94] / [i915#402]) -> [PASS][16] +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html
#### Warnings ####
* igt@gem_exec_suspend@basic-s3:
- fi-cml-s: [TIMEOUT][17] -> [INCOMPLETE][18] ([i915#283])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-cml-s/igt@gem_exec_suspend@basic-s3.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-cml-s/igt@gem_exec_suspend@basic-s3.html
* igt@i915_selftest@live_blt:
- fi-hsw-4770: [DMESG-FAIL][19] ([i915#553] / [i915#725]) -> [DMESG-FAIL][20] ([i915#563])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-hsw-4770/igt@i915_selftest@live_blt.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-hsw-4770/igt@i915_selftest@live_blt.html
* igt@runner@aborted:
- fi-byt-j1900: [FAIL][21] ([i915#816]) -> [FAIL][22] ([i915#999])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-byt-j1900/igt@runner@aborted.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-byt-j1900/igt@runner@aborted.html
[CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94
[fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
[i915#109]: https://gitlab.freedesktop.org/drm/intel/issues/109
[i915#283]: https://gitlab.freedesktop.org/drm/intel/issues/283
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#424]: https://gitlab.freedesktop.org/drm/intel/issues/424
[i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
[i915#563]: https://gitlab.freedesktop.org/drm/intel/issues/563
[i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
[i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816
[i915#999]: https://gitlab.freedesktop.org/drm/intel/issues/999
Participating hosts (50 -> 46)
------------------------------
Additional (1): fi-byt-n2820
Missing (5): fi-ilk-m540 fi-hsw-4200u fi-kbl-7560u fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5404 -> IGTPW_4028
CI-20190529: 20190529
CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4028: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/index.html
IGT_5404: 4147bab8e3dcaf11bd657b5fb4c109708e94e60c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] ✓ Fi.CI.BAT: success for runner: Make the result an incomplete if a test is killed due to taint
2020-01-29 16:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2020-01-30 8:57 ` Petri Latvala
0 siblings, 0 replies; 7+ messages in thread
From: Petri Latvala @ 2020-01-30 8:57 UTC (permalink / raw)
To: igt-dev
On Wed, Jan 29, 2020 at 04:37:04PM +0000, Patchwork wrote:
> #### Warnings ####
>
> * igt@gem_exec_suspend@basic-s3:
> - fi-cml-s: [TIMEOUT][17] -> [INCOMPLETE][18] ([i915#283])
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-cml-s/igt@gem_exec_suspend@basic-s3.html
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/fi-cml-s/igt@gem_exec_suspend@basic-s3.html
And here's the effect in action.
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for runner: Make the result an incomplete if a test is killed due to taint
2020-01-29 13:56 [igt-dev] [PATCH i-g-t] runner: Make the result an incomplete if a test is killed due to taint Petri Latvala
2020-01-29 14:01 ` Chris Wilson
2020-01-29 16:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2020-02-01 2:05 ` Patchwork
2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-02-01 2:05 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
== Series Details ==
Series: runner: Make the result an incomplete if a test is killed due to taint
URL : https://patchwork.freedesktop.org/series/72722/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7838_full -> IGTPW_4028_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/index.html
Known issues
------------
Here are the changes found in IGTPW_4028_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_persistence@vcs1-queued:
- shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#109276] / [fdo#112080])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb4/igt@gem_ctx_persistence@vcs1-queued.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb7/igt@gem_ctx_persistence@vcs1-queued.html
* igt@gem_exec_parallel@vcs1-fds:
- shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#112080]) +15 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb4/igt@gem_exec_parallel@vcs1-fds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb7/igt@gem_exec_parallel@vcs1-fds.html
* igt@gem_exec_schedule@pi-shared-iova-bsd:
- shard-iclb: [PASS][5] -> [SKIP][6] ([i915#677]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb8/igt@gem_exec_schedule@pi-shared-iova-bsd.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb4/igt@gem_exec_schedule@pi-shared-iova-bsd.html
* igt@gem_exec_schedule@pi-shared-iova-bsd2:
- shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276]) +18 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb4/igt@gem_exec_schedule@pi-shared-iova-bsd2.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb7/igt@gem_exec_schedule@pi-shared-iova-bsd2.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd:
- shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#112146]) +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb8/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb2/igt@gem_exec_schedule@preempt-queue-contexts-chain-bsd.html
* igt@gem_workarounds@suspend-resume-context:
- shard-apl: [PASS][11] -> [DMESG-WARN][12] ([i915#180]) +4 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl7/igt@gem_workarounds@suspend-resume-context.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_rps@waitboost:
- shard-iclb: [PASS][13] -> [FAIL][14] ([i915#413])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@i915_pm_rps@waitboost.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb2/igt@i915_pm_rps@waitboost.html
* igt@i915_selftest@live_blt:
- shard-hsw: [PASS][15] -> [DMESG-FAIL][16] ([i915#725])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw1/igt@i915_selftest@live_blt.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-hsw1/igt@i915_selftest@live_blt.html
* igt@kms_color@pipe-b-degamma:
- shard-kbl: [PASS][17] -> [FAIL][18] ([i915#71])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl7/igt@kms_color@pipe-b-degamma.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-kbl1/igt@kms_color@pipe-b-degamma.html
- shard-apl: [PASS][19] -> [FAIL][20] ([i915#71])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl4/igt@kms_color@pipe-b-degamma.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-apl7/igt@kms_color@pipe-b-degamma.html
- shard-glk: [PASS][21] -> [FAIL][22] ([i915#71])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-glk9/igt@kms_color@pipe-b-degamma.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-glk9/igt@kms_color@pipe-b-degamma.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
- shard-kbl: [PASS][23] -> [DMESG-WARN][24] ([i915#180]) +5 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-tglb: [PASS][25] -> [SKIP][26] ([i915#668]) +3 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-tglb7/igt@kms_psr@psr2_primary_mmap_cpu.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-tglb2/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109441]) +2 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_setmode@basic:
- shard-apl: [PASS][29] -> [FAIL][30] ([i915#31])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl1/igt@kms_setmode@basic.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-apl8/igt@kms_setmode@basic.html
#### Possible fixes ####
* igt@gem_busy@extended-parallel-vcs1:
- shard-iclb: [SKIP][31] ([fdo#112080]) -> [PASS][32] +12 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb7/igt@gem_busy@extended-parallel-vcs1.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb2/igt@gem_busy@extended-parallel-vcs1.html
* igt@gem_ctx_persistence@vcs1-mixed-process:
- shard-iclb: [SKIP][33] ([fdo#109276] / [fdo#112080]) -> [PASS][34] +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb3/igt@gem_ctx_persistence@vcs1-mixed-process.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb4/igt@gem_ctx_persistence@vcs1-mixed-process.html
* igt@gem_exec_balancer@hang:
- shard-iclb: [TIMEOUT][35] ([fdo#112271]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_exec_balancer@hang.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb4/igt@gem_exec_balancer@hang.html
* igt@gem_exec_schedule@preempt-other-chain-bsd:
- shard-iclb: [SKIP][37] ([fdo#112146]) -> [PASS][38] +5 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-hsw: [FAIL][39] ([i915#694]) -> [PASS][40] +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw5/igt@gem_partial_pwrite_pread@writes-after-reads.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-hsw8/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_persistent_relocs@forked-interruptible-thrash-inactive:
- shard-hsw: [FAIL][41] ([i915#520]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw6/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-hsw8/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-kbl: [FAIL][43] ([i915#644]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl3/igt@gem_ppgtt@flink-and-close-vma-leak.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-kbl7/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-apl: [DMESG-WARN][45] ([i915#180]) -> [PASS][46] +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-hsw: [DMESG-WARN][47] ([i915#44]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw5/igt@kms_atomic_transition@plane-all-modeset-transition.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-hsw2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_cursor_crc@pipe-a-cursor-suspend:
- shard-kbl: [DMESG-WARN][49] ([i915#180]) -> [PASS][50] +3 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-iclb: [TIMEOUT][51] -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb8/igt@kms_fbcon_fbt@psr-suspend.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_psr@psr2_basic:
- shard-iclb: [SKIP][53] ([fdo#109441]) -> [PASS][54] +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb5/igt@kms_psr@psr2_basic.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb2/igt@kms_psr@psr2_basic.html
* igt@prime_vgem@fence-wait-bsd2:
- shard-iclb: [SKIP][55] ([fdo#109276]) -> [PASS][56] +18 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb7/igt@prime_vgem@fence-wait-bsd2.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-nonpriv:
- shard-iclb: [FAIL][57] ([IGT#28]) -> [SKIP][58] ([fdo#112080]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html
* igt@gem_eio@in-flight-1us:
- shard-apl: [TIMEOUT][59] ([fdo#112271]) -> [INCOMPLETE][60] ([CI#80] / [fdo#103927])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl6/igt@gem_eio@in-flight-1us.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-apl8/igt@gem_eio@in-flight-1us.html
* igt@gem_tiled_blits@interruptible:
- shard-hsw: [FAIL][61] ([i915#694]) -> [FAIL][62] ([i915#818])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw1/igt@gem_tiled_blits@interruptible.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-hsw5/igt@gem_tiled_blits@interruptible.html
* igt@gem_tiled_blits@normal:
- shard-hsw: [FAIL][63] ([i915#818]) -> [FAIL][64] ([i915#694])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw5/igt@gem_tiled_blits@normal.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-hsw2/igt@gem_tiled_blits@normal.html
* igt@i915_pm_rpm@sysfs-read:
- shard-snb: [SKIP][65] ([fdo#109271]) -> [INCOMPLETE][66] ([i915#82])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-snb6/igt@i915_pm_rpm@sysfs-read.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-snb5/igt@i915_pm_rpm@sysfs-read.html
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [SKIP][67] ([fdo#109349]) -> [DMESG-WARN][68] ([fdo#107724])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80
[IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
[i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
[i915#520]: https://gitlab.freedesktop.org/drm/intel/issues/520
[i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
[i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
[i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
[i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
[i915#71]: https://gitlab.freedesktop.org/drm/intel/issues/71
[i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
[i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818
[i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5404 -> IGTPW_4028
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4028: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/index.html
IGT_5404: 4147bab8e3dcaf11bd657b5fb4c109708e94e60c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4028/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-02-01 2:05 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-29 13:56 [igt-dev] [PATCH i-g-t] runner: Make the result an incomplete if a test is killed due to taint Petri Latvala
2020-01-29 14:01 ` Chris Wilson
2020-01-29 14:13 ` Mika Kuoppala
2020-01-29 14:27 ` Chris Wilson
2020-01-29 16:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2020-01-30 8:57 ` Petri Latvala
2020-02-01 2:05 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox