2017-07-17 11:54:28 +02:00
|
|
|
marshalers_h = custom_target('marshalers_h',
|
|
|
|
output : 'marshalers.h',
|
|
|
|
input : 'marshalers.list',
|
|
|
|
command : [
|
|
|
|
python, glib_genmarshal,
|
|
|
|
'--prefix=test',
|
|
|
|
'--valist-marshallers',
|
|
|
|
'--output=@OUTPUT@',
|
|
|
|
'--quiet',
|
|
|
|
'--header',
|
|
|
|
'@INPUT@',
|
|
|
|
],
|
|
|
|
)
|
|
|
|
marshalers_c = custom_target('marshalers_c',
|
|
|
|
output : 'marshalers.c',
|
|
|
|
input : 'marshalers.list',
|
|
|
|
command : [
|
|
|
|
python, glib_genmarshal,
|
|
|
|
'--prefix=test',
|
|
|
|
'--valist-marshallers',
|
|
|
|
'--include-header=marshalers.h',
|
|
|
|
'--output=@OUTPUT@',
|
|
|
|
'--quiet',
|
|
|
|
'--body',
|
|
|
|
'@INPUT@',
|
|
|
|
],
|
|
|
|
)
|
2016-03-07 12:13:24 +01:00
|
|
|
|
2018-08-15 15:45:06 +02:00
|
|
|
gobject_tests = {
|
|
|
|
'qdata' : {},
|
|
|
|
'boxed' : {},
|
2021-12-13 16:06:47 +01:00
|
|
|
'cxx' : {
|
|
|
|
'source' : ['cxx.cpp'],
|
|
|
|
},
|
2018-08-15 15:45:06 +02:00
|
|
|
'enums' : {},
|
|
|
|
'param' : {},
|
|
|
|
'threadtests' : {},
|
|
|
|
'dynamictests' : {},
|
|
|
|
'binding' : {},
|
2021-08-27 01:32:32 +02:00
|
|
|
'bindinggroup' : {},
|
2018-08-15 15:45:06 +02:00
|
|
|
'properties' : {},
|
|
|
|
'reference' : {},
|
2018-10-23 05:53:58 +02:00
|
|
|
'flags' : {},
|
2018-08-15 15:45:06 +02:00
|
|
|
'value' : {},
|
|
|
|
'type' : {},
|
|
|
|
'gobject-private' : {
|
|
|
|
'source' : 'private.c',
|
|
|
|
},
|
|
|
|
'closure' : {},
|
2019-02-27 12:48:29 +01:00
|
|
|
'closure-refcount' : { 'suite': ['slow'] },
|
2018-08-15 15:45:06 +02:00
|
|
|
'object' : {},
|
|
|
|
'signal-handler' : {},
|
|
|
|
'ifaceproperties' : {},
|
|
|
|
'signals' : {
|
|
|
|
'source' : ['signals.c', marshalers_h, marshalers_c],
|
|
|
|
},
|
2021-08-27 22:01:00 +02:00
|
|
|
'signalgroup' : {},
|
2019-07-29 14:45:21 +02:00
|
|
|
'testing' : {},
|
2021-07-26 21:10:46 +02:00
|
|
|
'type-flags' : {},
|
2018-08-15 15:45:06 +02:00
|
|
|
}
|
|
|
|
|
2018-10-24 02:43:01 +02:00
|
|
|
if cc.get_id() != 'msvc'
|
|
|
|
gobject_tests += {'autoptr' : {}}
|
|
|
|
endif
|
|
|
|
|
2019-06-07 19:03:10 +02:00
|
|
|
python_tests = [
|
2019-06-07 19:52:00 +02:00
|
|
|
'genmarshal.py',
|
2019-06-07 19:03:10 +02:00
|
|
|
'mkenums.py',
|
|
|
|
]
|
|
|
|
|
2018-08-15 15:45:06 +02:00
|
|
|
# FIXME: put common bits of test environment() in one location
|
|
|
|
# Not entirely random of course, but at least it changes over time
|
|
|
|
random_number = minor_version + meson.version().split('.').get(1).to_int()
|
|
|
|
|
|
|
|
test_env = environment()
|
|
|
|
test_env.set('G_TEST_SRCDIR', meson.current_source_dir())
|
|
|
|
test_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
|
|
|
|
test_env.set('G_DEBUG', 'gc-friendly')
|
|
|
|
test_env.set('MALLOC_CHECK_', '2')
|
|
|
|
test_env.set('MALLOC_PERTURB_', '@0@'.format(random_number % 256))
|
|
|
|
|
|
|
|
test_deps = [libm, thread_dep, libglib_dep, libgobject_dep]
|
2019-03-05 11:55:19 +01:00
|
|
|
test_cargs = ['-DG_LOG_DOMAIN="GLib-GObject"', '-UG_DISABLE_ASSERT']
|
2018-08-15 15:45:06 +02:00
|
|
|
|
|
|
|
foreach test_name, extra_args : gobject_tests
|
|
|
|
source = extra_args.get('source', test_name + '.c')
|
|
|
|
install = installed_tests_enabled and extra_args.get('install', true)
|
|
|
|
|
|
|
|
if install
|
|
|
|
test_conf = configuration_data()
|
|
|
|
test_conf.set('installed_tests_dir', installed_tests_execdir)
|
|
|
|
test_conf.set('program', test_name)
|
2019-02-12 12:29:10 +01:00
|
|
|
test_conf.set('env', '')
|
2018-08-15 15:45:06 +02:00
|
|
|
configure_file(
|
2018-09-23 19:44:15 +02:00
|
|
|
input: installed_tests_template_tap,
|
2018-08-15 15:45:06 +02:00
|
|
|
output: test_name + '.test',
|
|
|
|
install_dir: installed_tests_metadir,
|
|
|
|
configuration: test_conf
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
exe = executable(test_name, source,
|
|
|
|
c_args : test_cargs + extra_args.get('c_args', []),
|
|
|
|
dependencies : test_deps + extra_args.get('dependencies', []),
|
|
|
|
install_dir: installed_tests_execdir,
|
|
|
|
install: install,
|
|
|
|
)
|
|
|
|
|
|
|
|
suite = ['gobject'] + extra_args.get('suite', [])
|
2018-11-01 10:35:17 +01:00
|
|
|
timeout = suite.contains('slow') ? test_timeout_slow : test_timeout
|
2019-02-27 12:48:29 +01:00
|
|
|
|
|
|
|
# FIXME: https://gitlab.gnome.org/GNOME/glib/issues/1316
|
|
|
|
# aka https://bugs.debian.org/880883
|
2020-02-13 17:40:30 +01:00
|
|
|
if test_name == 'closure-refcount' and ['arm', 'aarch64'].contains(host_machine.cpu_family())
|
2019-02-27 12:48:29 +01:00
|
|
|
timeout = timeout * 10
|
|
|
|
endif
|
|
|
|
|
2019-05-14 13:41:30 +02:00
|
|
|
test(test_name, exe, env : test_env, timeout : timeout, suite : suite)
|
2018-08-15 15:45:06 +02:00
|
|
|
endforeach
|
2018-05-02 12:05:20 +02:00
|
|
|
|
2019-06-07 19:03:10 +02:00
|
|
|
foreach test_name : python_tests
|
|
|
|
test(
|
|
|
|
test_name,
|
|
|
|
python,
|
2019-06-20 10:25:59 +02:00
|
|
|
args: ['-B', files(test_name)],
|
2019-06-07 19:03:10 +02:00
|
|
|
env: test_env,
|
2018-06-27 11:00:56 +02:00
|
|
|
suite: ['gobject', 'no-valgrind'],
|
2019-06-07 19:03:10 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
if installed_tests_enabled
|
|
|
|
install_data(
|
|
|
|
files(test_name),
|
|
|
|
install_dir: installed_tests_execdir,
|
|
|
|
install_mode: 'rwxr-xr-x',
|
|
|
|
)
|
|
|
|
|
|
|
|
test_conf = configuration_data()
|
|
|
|
test_conf.set('installed_tests_dir', installed_tests_execdir)
|
|
|
|
test_conf.set('program', test_name)
|
|
|
|
test_conf.set('env', '')
|
|
|
|
configure_file(
|
|
|
|
input: installed_tests_template_tap,
|
|
|
|
output: test_name + '.test',
|
|
|
|
install_dir: installed_tests_metadir,
|
|
|
|
configuration: test_conf,
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
# TAP test runner for Python tests
|
|
|
|
if installed_tests_enabled
|
|
|
|
install_data(
|
|
|
|
files('taptestrunner.py'),
|
|
|
|
install_dir: installed_tests_execdir,
|
|
|
|
)
|
|
|
|
endif
|