mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2024-11-16 19:47:55 +01:00
7286146341
References: 53a7bfebc9
("Don't allocate planes for layers without a FB")
73 lines
1.5 KiB
Meson
73 lines
1.5 KiB
Meson
test_inc = include_directories('include')
|
|
|
|
# This mock library will replace libdrm
|
|
mock_drm_lib = shared_library(
|
|
'drm',
|
|
files('libdrm_mock.c'),
|
|
include_directories: [test_inc],
|
|
dependencies: drm.partial_dependency(compile_args: true),
|
|
soversion: drm.version().split('.')[0], # TODO: get it from the real dep
|
|
)
|
|
|
|
mock_liftoff = declare_dependency(
|
|
link_with: [mock_drm_lib, liftoff_lib],
|
|
include_directories: [liftoff_inc, test_inc],
|
|
dependencies: drm.partial_dependency(compile_args: true),
|
|
)
|
|
|
|
bench_exe = executable(
|
|
'bench',
|
|
files('bench.c'),
|
|
dependencies: mock_liftoff,
|
|
)
|
|
|
|
tests = {
|
|
'alloc': [
|
|
'basic',
|
|
'no-props',
|
|
'zero-fb-id',
|
|
'empty',
|
|
'simple-1x',
|
|
'simple-1x-fail',
|
|
'simple-3x',
|
|
'zpos-3x',
|
|
'zpos-3x-intersect-fail',
|
|
'zpos-3x-intersect-partial',
|
|
'zpos-3x-disjoint-partial',
|
|
'zpos-3x-disjoint',
|
|
'zpos-4x-intersect-partial',
|
|
'zpos-4x-disjoint',
|
|
'zpos-4x-disjoint-alt',
|
|
'zpos-4x-domino-fail',
|
|
'zpos-4x-domino-partial',
|
|
'composition-3x',
|
|
'composition-3x-fail',
|
|
'composition-3x-partial',
|
|
'composition-3x-force',
|
|
],
|
|
'dynamic': [
|
|
'same',
|
|
'fb',
|
|
'add-layer',
|
|
'remove-layer',
|
|
'change-composition-layer',
|
|
],
|
|
'priority': [
|
|
#'basic',
|
|
],
|
|
}
|
|
|
|
foreach test_name, subtests : tests
|
|
test_exe = executable(
|
|
'test-' + test_name,
|
|
files('test_' + test_name + '.c'),
|
|
dependencies: mock_liftoff,
|
|
)
|
|
foreach subtest_name : subtests
|
|
test(
|
|
test_name + '@' + subtest_name,
|
|
test_exe,
|
|
args: [subtest_name],
|
|
)
|
|
endforeach
|
|
endforeach
|