* [PATCH i-g-t] meson: Make syncobj tests build
@ 2017-10-12 12:11 Ville Syrjala
2017-10-12 12:25 ` Petri Latvala
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Ville Syrjala @ 2017-10-12 12:11 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Include igt_syncobj.c in libigt so that tests/syncobj_basic actually
builds, and let's also build tests/syncobj_wait.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/meson.build | 1 +
tests/meson.build | 1 +
2 files changed, 2 insertions(+)
diff --git a/lib/meson.build b/lib/meson.build
index 42919eef52a8..4fa6fcfeb220 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -54,6 +54,7 @@ lib_sources = [
'igt_primes.c',
'igt_rand.c',
'igt_stats.c',
+ 'igt_syncobj.c',
'igt_sysfs.c',
'igt_vgem.c',
'instdone.c',
diff --git a/tests/meson.build b/tests/meson.build
index 85666f6d572e..835adc007e95 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -211,6 +211,7 @@ test_progs = [
'prime_vgem',
'sw_sync',
'syncobj_basic',
+ 'syncobj_wait',
'template',
'tools_test',
'vgem_basic',
--
2.13.6
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t] meson: Make syncobj tests build
2017-10-12 12:11 [PATCH i-g-t] meson: Make syncobj tests build Ville Syrjala
@ 2017-10-12 12:25 ` Petri Latvala
2017-10-12 12:33 ` Ville Syrjälä
2017-10-12 12:52 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-10-12 16:48 ` ✗ Fi.CI.IGT: warning " Patchwork
2 siblings, 1 reply; 5+ messages in thread
From: Petri Latvala @ 2017-10-12 12:25 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
On Thu, Oct 12, 2017 at 03:11:15PM +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Include igt_syncobj.c in libigt so that tests/syncobj_basic actually
> builds, and let's also build tests/syncobj_wait.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> lib/meson.build | 1 +
> tests/meson.build | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/lib/meson.build b/lib/meson.build
> index 42919eef52a8..4fa6fcfeb220 100644
> --- a/lib/meson.build
> +++ b/lib/meson.build
> @@ -54,6 +54,7 @@ lib_sources = [
> 'igt_primes.c',
> 'igt_rand.c',
> 'igt_stats.c',
> + 'igt_syncobj.c',
> 'igt_sysfs.c',
> 'igt_vgem.c',
> 'instdone.c',
Also update lib_headers.
Reviewed-by: Petri Latvala <petri.latvala@intel.com>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t] meson: Make syncobj tests build
2017-10-12 12:25 ` Petri Latvala
@ 2017-10-12 12:33 ` Ville Syrjälä
0 siblings, 0 replies; 5+ messages in thread
From: Ville Syrjälä @ 2017-10-12 12:33 UTC (permalink / raw)
To: Petri Latvala; +Cc: intel-gfx
On Thu, Oct 12, 2017 at 03:25:09PM +0300, Petri Latvala wrote:
> On Thu, Oct 12, 2017 at 03:11:15PM +0300, Ville Syrjala wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > Include igt_syncobj.c in libigt so that tests/syncobj_basic actually
> > builds, and let's also build tests/syncobj_wait.
> >
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > lib/meson.build | 1 +
> > tests/meson.build | 1 +
> > 2 files changed, 2 insertions(+)
> >
> > diff --git a/lib/meson.build b/lib/meson.build
> > index 42919eef52a8..4fa6fcfeb220 100644
> > --- a/lib/meson.build
> > +++ b/lib/meson.build
> > @@ -54,6 +54,7 @@ lib_sources = [
> > 'igt_primes.c',
> > 'igt_rand.c',
> > 'igt_stats.c',
> > + 'igt_syncobj.c',
> > 'igt_sysfs.c',
> > 'igt_vgem.c',
> > 'instdone.c',
>
> Also update lib_headers.
Fixed and pushed. Thanks for the review.
>
>
> Reviewed-by: Petri Latvala <petri.latvala@intel.com>
--
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Fi.CI.BAT: success for meson: Make syncobj tests build
2017-10-12 12:11 [PATCH i-g-t] meson: Make syncobj tests build Ville Syrjala
2017-10-12 12:25 ` Petri Latvala
@ 2017-10-12 12:52 ` Patchwork
2017-10-12 16:48 ` ✗ Fi.CI.IGT: warning " Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2017-10-12 12:52 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx
== Series Details ==
Series: meson: Make syncobj tests build
URL : https://patchwork.freedesktop.org/series/31813/
State : success
== Summary ==
IGT patchset tested on top of latest successful build
f0bfbad1cf1d01e65112310e95ba5ecba15133d1 benchmark/gem_busy: Compare polling with syncobj_wait
with latest DRM-Tip kernel build CI_DRM_3222
a869721e93a5 drm-tip: 2017y-10m-12d-08h-30m-31s UTC integration manifest
No testlist changes.
Test chamelium:
Subgroup dp-crc-fast:
pass -> DMESG-FAIL (fi-kbl-7500u) fdo#102514
fdo#102514 https://bugs.freedesktop.org/show_bug.cgi?id=102514
fi-bdw-5557u total:289 pass:268 dwarn:0 dfail:0 fail:0 skip:21 time:456s
fi-bdw-gvtdvm total:289 pass:265 dwarn:0 dfail:0 fail:0 skip:24 time:468s
fi-blb-e6850 total:289 pass:223 dwarn:1 dfail:0 fail:0 skip:65 time:395s
fi-bsw-n3050 total:289 pass:243 dwarn:0 dfail:0 fail:0 skip:46 time:572s
fi-bwr-2160 total:289 pass:183 dwarn:0 dfail:0 fail:0 skip:106 time:286s
fi-bxt-dsi total:289 pass:259 dwarn:0 dfail:0 fail:0 skip:30 time:528s
fi-bxt-j4205 total:289 pass:260 dwarn:0 dfail:0 fail:0 skip:29 time:524s
fi-byt-j1900 total:289 pass:253 dwarn:1 dfail:0 fail:0 skip:35 time:544s
fi-byt-n2820 total:289 pass:249 dwarn:1 dfail:0 fail:0 skip:39 time:530s
fi-cfl-s total:289 pass:253 dwarn:4 dfail:0 fail:0 skip:32 time:569s
fi-elk-e7500 total:289 pass:229 dwarn:0 dfail:0 fail:0 skip:60 time:434s
fi-gdg-551 total:289 pass:178 dwarn:1 dfail:0 fail:1 skip:109 time:275s
fi-glk-1 total:289 pass:261 dwarn:0 dfail:0 fail:0 skip:28 time:603s
fi-hsw-4770r total:289 pass:262 dwarn:0 dfail:0 fail:0 skip:27 time:437s
fi-ilk-650 total:289 pass:228 dwarn:0 dfail:0 fail:0 skip:61 time:462s
fi-ivb-3520m total:289 pass:260 dwarn:0 dfail:0 fail:0 skip:29 time:506s
fi-ivb-3770 total:289 pass:260 dwarn:0 dfail:0 fail:0 skip:29 time:479s
fi-kbl-7500u total:289 pass:263 dwarn:1 dfail:1 fail:0 skip:24 time:504s
fi-kbl-7567u total:289 pass:265 dwarn:4 dfail:0 fail:0 skip:20 time:493s
fi-kbl-r total:289 pass:262 dwarn:0 dfail:0 fail:0 skip:27 time:594s
fi-pnv-d510 total:289 pass:222 dwarn:1 dfail:0 fail:0 skip:66 time:666s
fi-skl-6260u total:289 pass:269 dwarn:0 dfail:0 fail:0 skip:20 time:468s
fi-skl-6700hq total:289 pass:263 dwarn:0 dfail:0 fail:0 skip:26 time:655s
fi-skl-6700k total:289 pass:265 dwarn:0 dfail:0 fail:0 skip:24 time:536s
fi-skl-6770hq total:289 pass:269 dwarn:0 dfail:0 fail:0 skip:20 time:515s
fi-skl-gvtdvm total:289 pass:266 dwarn:0 dfail:0 fail:0 skip:23 time:476s
fi-snb-2520m total:289 pass:250 dwarn:0 dfail:0 fail:0 skip:39 time:594s
fi-snb-2600 total:289 pass:249 dwarn:0 dfail:0 fail:0 skip:40 time:436s
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_338/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.IGT: warning for meson: Make syncobj tests build
2017-10-12 12:11 [PATCH i-g-t] meson: Make syncobj tests build Ville Syrjala
2017-10-12 12:25 ` Petri Latvala
2017-10-12 12:52 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2017-10-12 16:48 ` Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2017-10-12 16:48 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx
== Series Details ==
Series: meson: Make syncobj tests build
URL : https://patchwork.freedesktop.org/series/31813/
State : warning
== Summary ==
Test prime_self_import:
Subgroup reimport-vs-gem_close-race:
fail -> PASS (shard-hsw) fdo#102655 +1
Test kms_flip:
Subgroup dpms-vs-vblank-race-interruptible:
pass -> DMESG-WARN (shard-hsw)
Test kms_frontbuffer_tracking:
Subgroup fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
dmesg-warn -> PASS (shard-hsw) fdo#102614
fdo#102655 https://bugs.freedesktop.org/show_bug.cgi?id=102655
fdo#102614 https://bugs.freedesktop.org/show_bug.cgi?id=102614
shard-hsw total:2551 pass:1438 dwarn:1 dfail:0 fail:9 skip:1103 time:9646s
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_338/shards.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-10-12 16:48 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-12 12:11 [PATCH i-g-t] meson: Make syncobj tests build Ville Syrjala
2017-10-12 12:25 ` Petri Latvala
2017-10-12 12:33 ` Ville Syrjälä
2017-10-12 12:52 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-10-12 16:48 ` ✗ Fi.CI.IGT: warning " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox