diff options
author | Mart Raudsepp <leio@gentoo.org> | 2018-06-15 04:09:44 +0300 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2018-06-16 21:24:32 +0300 |
commit | 919a186c7a245dfab7b3a2d3c4b223e50a68ac32 (patch) | |
tree | 5b22474706fd8cb996fcb03426cc534f28dd5046 /media-libs/gst-plugins-base | |
parent | media-libs/gstreamer: disable building of unused benchmarks (diff) | |
download | gentoo-919a186c7a245dfab7b3a2d3c4b223e50a68ac32.tar.gz gentoo-919a186c7a245dfab7b3a2d3c4b223e50a68ac32.tar.bz2 gentoo-919a186c7a245dfab7b3a2d3c4b223e50a68ac32.zip |
media-libs/gst-plugins-base-1.14: skip opengl tests, fix the rest to pass
OpenGL tests fail with EGL init trouble, like they did in gst-plugins-bad
(if the whole testsuite wouldn't be restricted), so disable the opengl tests
for now. Ideally we'd get them to work without skipping, but that's a battle
for a much much rainier day.
Other failures happening on my machine were caused by GSETTINGS_BACKEND=dconf
export from env.d due to having dconf installed, so unset it to use memory
backend by GSettings.
Apparently there were more test failures under some conditions for 1.12, but
I couldn't reproduce those in 1.14, and probably not with 1.12 either. Those
will need to be rechecked by people having the failures or new +1's.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'media-libs/gst-plugins-base')
-rw-r--r-- | media-libs/gst-plugins-base/gst-plugins-base-1.14.1.ebuild | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/media-libs/gst-plugins-base/gst-plugins-base-1.14.1.ebuild b/media-libs/gst-plugins-base/gst-plugins-base-1.14.1.ebuild index 028cc25b9e4b..3de62a437934 100644 --- a/media-libs/gst-plugins-base/gst-plugins-base-1.14.1.ebuild +++ b/media-libs/gst-plugins-base/gst-plugins-base-1.14.1.ebuild @@ -88,6 +88,12 @@ DEPEND="${RDEPEND} X? ( x11-base/xorg-proto ) " +src_prepare() { + # Disable GL tests for now; prone to fail with EGL_NOT_INITIALIZED, etc + sed -i -e '/^@USE_GL_TRUE@/d' tests/check/Makefile.in + default +} + multilib_src_configure() { filter-flags -mno-sse -mno-sse2 -mno-sse4.1 #610340 @@ -167,3 +173,8 @@ multilib_src_install_all() { einstalldocs prune_libtool_files --modules } + +multilib_src_test() { + unset GSETTINGS_BACKEND + emake check +} |