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
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
einstalldocs
prune_libtool_files --modules
}
+
+multilib_src_test() {
+ unset GSETTINGS_BACKEND
+ emake check
+}