aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamian Hobson-Garcia <dhobsong@igel.co.jp>2022-08-18 01:59:41 +0900
committerDamian Hobson-Garcia <dhobsong@igel.co.jp>2022-08-18 02:27:14 +0900
commit88cbd73ba10a589734cf126b64e74a6f42a5d5a7 (patch)
treefe20afd430988c54cbcdab6298a9a10f84e0e8d9
parentf20fa3f4f0a2698db38d993e3d0b86be58c41ef2 (diff)
tests: Add missing thread library dependency
The lease manager component uses pthread calls, so the library needs to be linked for the testcases as well as the main excutable. Bug-AGL: SPEC-3848 Signed-off-by: Damian Hobson-Garcia <dhobsong@igel.co.jp> Change-Id: Ie0d36df57b854836bb6b77f8324fdbf3223c2fef
-rw-r--r--drm-lease-manager/test/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/drm-lease-manager/test/meson.build b/drm-lease-manager/test/meson.build
index 8d5c06f..0da9040 100644
--- a/drm-lease-manager/test/meson.build
+++ b/drm-lease-manager/test/meson.build
@@ -28,7 +28,7 @@ lm_test_sources = [
lm_test = executable('lease-manager-test',
sources: lm_test_sources,
objects: lm_objects,
- dependencies: [check_dep, fff_dep, dlmcommon_dep, drm_dep],
+ dependencies: [check_dep, fff_dep, dlmcommon_dep, drm_dep, thread_dep],
c_args: test_c_args,
include_directories: ls_inc)