forked from AuroraMiddleware/gtk
0af6630521
Use a single environment variable for everything: - select the ATContext implementation - select the test ATContext - disable ATContext entirely We use the same pattern as GSK_RENDERER, GTK_DEBUG, etc. The documentation needs to be updated to include the environment variable.
88 lines
2.3 KiB
Meson
88 lines
2.3 KiB
Meson
nodetest_env = environment()
|
|
nodetest_env.set('GTK_A11Y', 'test')
|
|
nodetest_env.set('GSK_RENDERER', 'cairo')
|
|
nodetest_env.set('G_TEST_SRCDIR', meson.current_source_dir())
|
|
nodetest_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
|
|
nodetest_env.set('GIO_USE_VFS', 'local')
|
|
nodetest_env.set('GSETTINGS_BACKEND', 'memory')
|
|
nodetest_env.set('G_ENABLE_DIAGNOSTIC', '0')
|
|
|
|
testexecdir = join_paths(installed_test_bindir, 'css', 'nodes')
|
|
testdatadir = join_paths(installed_test_datadir, 'css')
|
|
|
|
test_nodes = executable('test-css-nodes', 'test-css-nodes.c',
|
|
c_args: common_cflags,
|
|
install: get_option('install-tests'),
|
|
install_dir: testexecdir,
|
|
dependencies: libgtk_dep)
|
|
test('nodes', test_nodes,
|
|
args: [ '--tap', '-k' ],
|
|
protocol: 'tap',
|
|
env: nodetest_env,
|
|
suite: 'css',
|
|
)
|
|
|
|
test_data = [
|
|
'box.ltr.nodes',
|
|
'box.ltr.ui',
|
|
'box.rtl.nodes',
|
|
'box.rtl.ui',
|
|
'buttons.nodes',
|
|
'buttons.ui',
|
|
'checkbutton.ltr.nodes',
|
|
'checkbutton.ltr.ui',
|
|
'checkbutton.rtl.nodes',
|
|
'checkbutton.rtl.ui',
|
|
'combobox.nodes',
|
|
'combobox.ui',
|
|
'entries.nodes',
|
|
'entries.ui',
|
|
'expander.ltr.nodes',
|
|
'expander.ltr.ui',
|
|
'expander.rtl.nodes',
|
|
'expander.rtl.ui',
|
|
'levelbar.ltr.nodes',
|
|
'levelbar.ltr.ui',
|
|
'levelbar.rtl.nodes',
|
|
'levelbar.rtl.ui',
|
|
'notebook-arrows2.nodes',
|
|
'notebook-arrows2.ui',
|
|
'notebook-arrows.nodes',
|
|
'notebook-arrows.ui',
|
|
'notebook.bottom.ltr.nodes',
|
|
'notebook.bottom.ltr.ui',
|
|
'notebook.bottom.rtl.nodes',
|
|
'notebook.bottom.rtl.ui',
|
|
'notebook.left.ltr.nodes',
|
|
'notebook.left.ltr.ui',
|
|
'notebook.left.rtl.nodes',
|
|
'notebook.left.rtl.ui',
|
|
'notebook.right.ltr.nodes',
|
|
'notebook.right.ltr.ui',
|
|
'notebook.right.rtl.nodes',
|
|
'notebook.right.rtl.ui',
|
|
'notebook.top.ltr.nodes',
|
|
'notebook.top.ltr.ui',
|
|
'notebook.top.rtl.nodes',
|
|
'notebook.top.rtl.ui',
|
|
'paned.ltr.nodes',
|
|
'paned.ltr.ui',
|
|
'paned.rtl.nodes',
|
|
'paned.rtl.ui',
|
|
'progressbar.nodes',
|
|
'progressbar.ui',
|
|
'scale.nodes',
|
|
'scale.ui',
|
|
]
|
|
|
|
if get_option('install-tests')
|
|
conf = configuration_data()
|
|
conf.set('libexecdir', gtk_libexecdir)
|
|
configure_file(input: 'nodes.test.in',
|
|
output: 'nodes.test',
|
|
configuration: conf,
|
|
install_dir: testdatadir)
|
|
|
|
install_data(test_data, install_dir: testexecdir)
|
|
endif
|