summaryrefslogtreecommitdiff
path: root/tests/check/meson.build
blob: 7ebe8a8fc5fe855e3005c2caa9d13c198786b343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
tests = [
  [ 'elements/vaapipostproc' ],
]

test_deps = [gst_dep, gstbase_dep, gstvideo_dep, gstcheck_dep]
test_defines = [
  '-UG_DISABLE_ASSERT',
  '-UG_DISABLE_CAST_CHECKS',
  '-DGST_USE_UNSTABLE_API',
]

pluginsdirs = []
if gst_dep.type_name() == 'pkgconfig'
  pluginsdirs = [gst_dep.get_pkgconfig_variable('pluginsdir')]
endif

foreach t : tests
  fname = '@0@.c'.format(t.get(0))
  test_name = t.get(0).underscorify()
  extra_sources = [ ]
  extra_deps = [ ]
  env = environment()
  env.set('CK_DEFAULT_TIMEOUT', '20')
  env.set('GST_PLUGIN_SYSTEM_PATH_1_0', '')
  env.set('GST_PLUGIN_PATH_1_0', [meson.build_root()] + pluginsdirs)
  env.set('GST_REGISTRY', join_paths(meson.current_build_dir(), '@0@.registry'.format(test_name)))
  exe = executable(test_name, fname, extra_sources,
    include_directories : [configinc, libsinc],
    c_args : ['-DHAVE_CONFIG_H=1' ] + test_defines,
    dependencies : test_deps + extra_deps,
  )
  test(test_name, exe, env: env, timeout: 3 * 60)
endforeach