4543ca1620
Meson makes it easy to define unit tests, so hook up the existing ones. https://bugzilla.gnome.org/show_bug.cgi?id=786497
19 lines
537 B
Meson
19 lines
537 B
Meson
testconf = configuration_data()
|
|
testconf.set('MUTTER_TYPELIB_DIR', mutter_typelibdir)
|
|
testconf.set('srcdir', meson.current_source_dir())
|
|
run_test = configure_file(
|
|
input: 'run-test.sh.in',
|
|
output: 'run-test.sh',
|
|
configuration: testconf
|
|
)
|
|
|
|
testenv = environment()
|
|
testenv.set('GSETTINGS_SCHEMA_DIR', join_paths(meson.build_root(), 'data'))
|
|
|
|
foreach test : ['insertSorted', 'jsParse', 'markup', 'url']
|
|
test(test, run_test,
|
|
args: 'unit/@0@.js'.format(test),
|
|
env: testenv,
|
|
workdir: meson.current_source_dir())
|
|
endforeach
|