2016-08-21 16:01:14 +00:00
|
|
|
subdir('parser')
|
|
|
|
subdir('nodes')
|
|
|
|
subdir('style')
|
|
|
|
|
2017-10-18 00:48:16 +00:00
|
|
|
testexecdir = join_paths(installed_test_bindir, 'css')
|
|
|
|
testdatadir = join_paths(installed_test_datadir, 'css')
|
|
|
|
|
2017-10-10 03:35:19 +00:00
|
|
|
test_api = executable('api', 'api.c',
|
2017-10-18 00:48:16 +00:00
|
|
|
dependencies: libgtk_dep,
|
2017-10-10 03:35:19 +00:00
|
|
|
install: get_option('install-tests'),
|
2017-10-18 00:48:16 +00:00
|
|
|
install_dir: testexecdir)
|
|
|
|
test('api', test_api,
|
|
|
|
args: ['--tap', '-k' ],
|
2017-10-18 08:55:02 +00:00
|
|
|
env: [ 'GIO_USE_VOLUME_MONITOR=unix',
|
|
|
|
'GSETTINGS_BACKEND=memory',
|
|
|
|
'GTK_CSD=1',
|
|
|
|
'G_ENABLE_DIAGNOSTIC=0',
|
|
|
|
'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()),
|
|
|
|
'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir())
|
|
|
|
],
|
2017-10-18 00:48:16 +00:00
|
|
|
suite: 'css')
|
2017-10-10 03:35:19 +00:00
|
|
|
|
|
|
|
if get_option('install-tests')
|
|
|
|
conf = configuration_data()
|
|
|
|
conf.set('libexecdir', gtk_libexecdir)
|
|
|
|
configure_file(input: 'api.test.in',
|
|
|
|
output: 'api.test',
|
|
|
|
configuration: conf,
|
2017-10-18 00:48:16 +00:00
|
|
|
install_dir: testdatadir)
|
2017-10-10 03:35:19 +00:00
|
|
|
endif
|