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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
enable_installed_tests = get_option('installed_tests') and not meson.is_subproject()
installed_testdir = get_option('libexecdir') / 'installed-tests' / meson.project_name()
installed_tests_metadir = get_option('datadir') / 'installed-tests' / meson.project_name()
test_programs = [
[
'test-proxy',
executable(
'test-proxy',
'test-proxy.c',
dependencies : common_deps,
include_directories : common_include_directories,
install : enable_installed_tests,
install_dir : installed_testdir,
),
],
]
test_env = environment()
test_env.set('DBUS_PROXY', dbus_proxy.full_path())
test_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
test_env.set('G_TEST_SRCDIR', meson.current_source_dir())
foreach pair : test_programs
name = pair[0]
test_program = pair[1]
if meson.version().version_compare('>=0.50.0')
test(
name,
test_program,
env : test_env,
protocol : 'tap',
)
else
test(
name,
test_program,
env : test_env,
)
endif
if enable_installed_tests
configure_file(
input : 'tap.test.in',
output : name + '.test',
configuration : {
'basename' : name,
'installed_testdir' : get_option('prefix') / installed_testdir,
},
install_dir : installed_tests_metadir,
)
endif
endforeach
|