mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-27 19:33:06 -04:00
The temporary directory will be deleted on success, but will remain intact on failure. Signed-off-by: Simon McVittie <smcv@collabora.com>
24 lines
351 B
Meson
24 lines
351 B
Meson
|
|
test_names = [
|
|
'errors',
|
|
'fdio',
|
|
'macros',
|
|
'shutil',
|
|
'xattrs',
|
|
]
|
|
|
|
foreach test_name : test_names
|
|
exe = executable(test_name,
|
|
[
|
|
'libglnx-testlib.c',
|
|
'libglnx-testlib.h',
|
|
'test-libglnx-' + test_name + '.c',
|
|
],
|
|
dependencies: [
|
|
libglnx_dep,
|
|
libglnx_deps,
|
|
],
|
|
)
|
|
test(test_name, exe)
|
|
endforeach
|