From: Damian Hobson-Garcia Date: Wed, 17 Aug 2022 16:59:41 +0000 (+0900) Subject: tests: Add missing thread library dependency X-Git-Tag: 17.90.0~2 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=88cbd73ba10a589734cf126b64e74a6f42a5d5a7;hp=f20fa3f4f0a2698db38d993e3d0b86be58c41ef2;p=src%2Fdrm-lease-manager.git 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 Change-Id: Ie0d36df57b854836bb6b77f8324fdbf3223c2fef --- 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)