* [igt-dev] [PATCH i-g-t] igt/gem_render_copy_redux: Check for GEM before use
@ 2018-07-12 15:38 Chris Wilson
2018-07-12 18:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Chris Wilson @ 2018-07-12 15:38 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev
As render copy wants to use the GPU, we should make sure it is not
wedged first.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
tests/gem_render_copy_redux.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/gem_render_copy_redux.c b/tests/gem_render_copy_redux.c
index 27098ea6d..a861862d0 100644
--- a/tests/gem_render_copy_redux.c
+++ b/tests/gem_render_copy_redux.c
@@ -209,6 +209,7 @@ int main(int argc, char **argv)
igt_fixture {
data_init(&data);
+ igt_require_gem(data.fd);
}
igt_subtest("normal") {
--
2.18.0
_______________________________________________
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* [igt-dev] ✓ Fi.CI.BAT: success for igt/gem_render_copy_redux: Check for GEM before use
2018-07-12 15:38 [igt-dev] [PATCH i-g-t] igt/gem_render_copy_redux: Check for GEM before use Chris Wilson
@ 2018-07-12 18:48 ` Patchwork
2018-07-12 19:00 ` [igt-dev] [PATCH i-g-t] " Ville Syrjälä
2018-07-12 21:57 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2018-07-12 18:48 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: igt/gem_render_copy_redux: Check for GEM before use
URL : https://patchwork.freedesktop.org/series/46409/
State : success
== Summary ==
= CI Bug Log - changes from CI_DRM_4476 -> IGTPW_1568 =
== Summary - WARNING ==
Minor unknown changes coming with IGTPW_1568 need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_1568, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://patchwork.freedesktop.org/api/1.0/series/46409/revisions/1/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1568:
=== IGT changes ===
==== Warnings ====
igt@pm_rpm@basic-rte:
fi-hsw-peppy: SKIP -> PASS +1
fi-hsw-4770r: SKIP -> PASS +1
fi-bdw-5557u: SKIP -> PASS +1
fi-hsw-4770: SKIP -> PASS +1
== Known issues ==
Here are the changes found in IGTPW_1568 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@drv_module_reload@basic-no-display:
{fi-skl-iommu}: NOTRUN -> FAIL (fdo#106066) +2
==== Possible fixes ====
igt@kms_flip@basic-flip-vs-dpms:
fi-skl-6700hq: DMESG-WARN (fdo#105998) -> PASS
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998
fdo#106066 https://bugs.freedesktop.org/show_bug.cgi?id=106066
== Participating hosts (45 -> 42) ==
Additional (2): fi-byt-j1900 fi-skl-iommu
Missing (5): fi-ctg-p8600 fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-hsw-4200u
== Build changes ==
* IGT: IGT_4552 -> IGTPW_1568
CI_DRM_4476: b818fac0878147c6df45338cb515b9b7bd878b7f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1568: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1568/
IGT_4552: 5175aff31e00e17786ebb97aaaf25ddd38b5e72e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1568/issues.html
_______________________________________________
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* Re: [igt-dev] [PATCH i-g-t] igt/gem_render_copy_redux: Check for GEM before use
2018-07-12 15:38 [igt-dev] [PATCH i-g-t] igt/gem_render_copy_redux: Check for GEM before use Chris Wilson
2018-07-12 18:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2018-07-12 19:00 ` Ville Syrjälä
2018-07-12 21:57 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Ville Syrjälä @ 2018-07-12 19:00 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev, intel-gfx
On Thu, Jul 12, 2018 at 04:38:49PM +0100, Chris Wilson wrote:
> As render copy wants to use the GPU, we should make sure it is not
> wedged first.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> tests/gem_render_copy_redux.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/tests/gem_render_copy_redux.c b/tests/gem_render_copy_redux.c
> index 27098ea6d..a861862d0 100644
> --- a/tests/gem_render_copy_redux.c
> +++ b/tests/gem_render_copy_redux.c
> @@ -209,6 +209,7 @@ int main(int argc, char **argv)
>
> igt_fixture {
> data_init(&data);
> + igt_require_gem(data.fd);
> }
>
> igt_subtest("normal") {
> --
> 2.18.0
>
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
--
Ville Syrjälä
Intel
_______________________________________________
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: success for igt/gem_render_copy_redux: Check for GEM before use
2018-07-12 15:38 [igt-dev] [PATCH i-g-t] igt/gem_render_copy_redux: Check for GEM before use Chris Wilson
2018-07-12 18:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-07-12 19:00 ` [igt-dev] [PATCH i-g-t] " Ville Syrjälä
@ 2018-07-12 21:57 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2018-07-12 21:57 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: igt/gem_render_copy_redux: Check for GEM before use
URL : https://patchwork.freedesktop.org/series/46409/
State : success
== Summary ==
= CI Bug Log - changes from IGT_4552_full -> IGTPW_1568_full =
== Summary - WARNING ==
Minor unknown changes coming with IGTPW_1568_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_1568_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://patchwork.freedesktop.org/api/1.0/series/46409/revisions/1/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1568_full:
=== IGT changes ===
==== Warnings ====
igt@gem_exec_schedule@deep-bsd1:
shard-kbl: PASS -> SKIP +1
igt@gem_exec_schedule@deep-vebox:
shard-kbl: SKIP -> PASS
igt@pm_rpm@cursor:
shard-hsw: SKIP -> PASS +34
== Known issues ==
Here are the changes found in IGTPW_1568_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_exec_basic@readonly-blt:
shard-snb: PASS -> INCOMPLETE (fdo#105411)
igt@gem_exec_schedule@pi-ringfull-blt:
shard-glk: NOTRUN -> FAIL (fdo#103158)
igt@kms_flip@plain-flip-fb-recreate:
shard-glk: PASS -> FAIL (fdo#100368)
igt@kms_flip_tiling@flip-to-x-tiled:
shard-glk: PASS -> FAIL (fdo#107161)
igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
shard-snb: PASS -> FAIL (fdo#103166)
==== Possible fixes ====
igt@gem_exec_async@concurrent-writes-blt:
shard-snb: INCOMPLETE (fdo#105411) -> PASS
igt@gem_ppgtt@blt-vs-render-ctx0:
shard-kbl: INCOMPLETE (fdo#106023, fdo#103665) -> PASS
igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
shard-glk: FAIL (fdo#106509, fdo#105454) -> PASS
igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled:
shard-glk: FAIL -> PASS
igt@kms_flip@2x-flip-vs-expired-vblank:
shard-glk: FAIL (fdo#105189) -> PASS
igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
shard-hsw: FAIL (fdo#100368) -> PASS
igt@kms_flip_tiling@flip-to-y-tiled:
shard-glk: FAIL (fdo#103822, fdo#107161) -> PASS
igt@kms_flip_tiling@flip-y-tiled:
shard-glk: FAIL (fdo#107161) -> PASS
igt@testdisplay:
shard-glk: INCOMPLETE (k.org#198133, fdo#103359) -> PASS
fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
fdo#103158 https://bugs.freedesktop.org/show_bug.cgi?id=103158
fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166
fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359
fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
fdo#103822 https://bugs.freedesktop.org/show_bug.cgi?id=103822
fdo#105189 https://bugs.freedesktop.org/show_bug.cgi?id=105189
fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
fdo#105454 https://bugs.freedesktop.org/show_bug.cgi?id=105454
fdo#106023 https://bugs.freedesktop.org/show_bug.cgi?id=106023
fdo#106509 https://bugs.freedesktop.org/show_bug.cgi?id=106509
fdo#107161 https://bugs.freedesktop.org/show_bug.cgi?id=107161
k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133
== Participating hosts (5 -> 5) ==
No changes in participating hosts
== Build changes ==
* IGT: IGT_4552 -> IGTPW_1568
* Linux: CI_DRM_4475 -> CI_DRM_4476
CI_DRM_4475: 1b6f049d73237a170919604538e747b0282b0109 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_4476: b818fac0878147c6df45338cb515b9b7bd878b7f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1568: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1568/
IGT_4552: 5175aff31e00e17786ebb97aaaf25ddd38b5e72e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1568/shards.html
_______________________________________________
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:[~2018-07-12 21:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-12 15:38 [igt-dev] [PATCH i-g-t] igt/gem_render_copy_redux: Check for GEM before use Chris Wilson
2018-07-12 18:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-07-12 19:00 ` [igt-dev] [PATCH i-g-t] " Ville Syrjälä
2018-07-12 21:57 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).