2016-09-24 07:59:55 +00:00
|
|
|
# name, condition when to skip the test and extra dependencies
|
|
|
|
ugly_tests = [
|
|
|
|
[ 'elements/amrnbenc', not amrnb_dep.found() ],
|
|
|
|
[ 'elements/mpeg2dec', not mpeg2_dep.found() ],
|
|
|
|
[ 'elements/mpg123audiodec', not mpg123_dep.found() ],
|
|
|
|
[ 'elements/x264enc', not x264_dep.found() ],
|
|
|
|
[ 'elements/xingmux' ],
|
|
|
|
[ 'generic/states' ],
|
|
|
|
[ 'pipelines/lame', not lame_dep.found() ],
|
|
|
|
]
|
|
|
|
|
|
|
|
test_defines = [
|
|
|
|
'-UG_DISABLE_ASSERT',
|
|
|
|
'-UG_DISABLE_CAST_CHECKS',
|
|
|
|
'-DGST_CHECK_TEST_ENVIRONMENT_BEACON="GST_PLUGIN_LOADING_WHITELIST"',
|
2016-10-04 21:06:09 +00:00
|
|
|
'-DGST_TEST_FILES_PATH="' + meson.current_source_dir() + '/../files"',
|
2016-09-24 07:59:55 +00:00
|
|
|
'-DGST_USE_UNSTABLE_API',
|
|
|
|
]
|
|
|
|
|
2016-10-04 21:06:09 +00:00
|
|
|
pluginsdirs = [ ]
|
|
|
|
# FIXME: Use if not gst_dep.is_internal() when avalaible as we only support the
|
|
|
|
# case where GStreamer is another subproject here.
|
|
|
|
if not meson.is_subproject()
|
|
|
|
pkgconfig = find_program('pkg-config')
|
2016-10-23 23:35:23 +00:00
|
|
|
runcmd = run_command(pkgconfig, '--variable=pluginsdir', 'gstreamer-' + api_version)
|
2016-09-24 07:59:55 +00:00
|
|
|
|
2016-10-04 21:06:09 +00:00
|
|
|
if runcmd.returncode() == 0
|
|
|
|
pluginsdirs = runcmd.stdout().split()
|
|
|
|
else
|
|
|
|
error('Could not determine GStreamer core plugins directory for unit tests.')
|
|
|
|
endif
|
|
|
|
endif
|
2016-09-24 07:59:55 +00:00
|
|
|
|
|
|
|
test_deps = [gst_dep, gstbase_dep, gstcheck_dep, gstaudio_dep, gstapp_dep, gstfft_dep]
|
|
|
|
|
|
|
|
libm = cc.find_library('m', required : false)
|
|
|
|
|
|
|
|
# FIXME: valgrind_args: add suppressions $(top_srcdir)/common/gst.supp $(srcdir)/gst-plugins-ugly.supp
|
|
|
|
|
|
|
|
foreach t : ugly_tests
|
|
|
|
test_name = t.get(0)
|
|
|
|
extra_deps = [ ]
|
|
|
|
if t.length() == 3
|
|
|
|
extra_deps = t.get(2)
|
|
|
|
skip_test = t.get(1)
|
|
|
|
elif t.length() == 2
|
|
|
|
skip_test = t.get(1)
|
|
|
|
else
|
|
|
|
skip_test = false
|
|
|
|
endif
|
|
|
|
if not skip_test
|
|
|
|
exe = executable(test_name, '@0@.c'.format(test_name),
|
|
|
|
include_directories : [configinc],
|
|
|
|
c_args : ['-DHAVE_CONFIG_H=1' ] + test_defines,
|
|
|
|
dependencies : [libm] + test_deps + extra_deps,
|
|
|
|
)
|
2016-10-04 21:06:09 +00:00
|
|
|
|
|
|
|
env = environment()
|
|
|
|
env.set('GST_PLUGIN_SYSTEM_PATH_1_0', '')
|
|
|
|
env.set('CK_DEFAULT_TIMEOUT', '20')
|
|
|
|
env.set('GST_PLUGIN_LOADING_WHITELIST', 'gstreamer', 'gst-plugins-base',
|
|
|
|
'gst-plugins-good', 'gst-plugins-ugly@' + meson.build_root(), separator=':')
|
|
|
|
env.set('GST_PLUGIN_PATH_1_0', meson.build_root())
|
|
|
|
|
|
|
|
foreach plugindir: pluginsdirs
|
|
|
|
env.append('GST_PLUGIN_PATH_1_0', plugindir)
|
|
|
|
endforeach
|
|
|
|
env.set('GST_REGISTRY', '@0@/@1@.registry'.format(meson.current_build_dir(), test_name))
|
|
|
|
test(test_name, exe, env: env, timeout: 3 * 60)
|
2016-09-24 07:59:55 +00:00
|
|
|
endif
|
|
|
|
endforeach
|