summaryrefslogtreecommitdiff
path: root/test/log/meson.build
diff options
context:
space:
mode:
authorPaul Elder <paul.elder@ideasonboard.com>2019-07-13 04:34:36 +0900
committerPaul Elder <paul.elder@ideasonboard.com>2019-07-17 14:36:35 +0900
commit36d62298b20bec1f052fac04fd3011511cc29226 (patch)
treefd9536e5802e317817259c338825942bbf6b830f /test/log/meson.build
parent4cdabcddc5bd5b469c55090c9e51f4e1bf386d75 (diff)
test: logging: move logging tests to a subdirectory
Since there are two logging tests now, move them to their own subdirectory. Update meson as necessary. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'test/log/meson.build')
-rw-r--r--test/log/meson.build13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/log/meson.build b/test/log/meson.build
new file mode 100644
index 00000000..95f6c1a2
--- /dev/null
+++ b/test/log/meson.build
@@ -0,0 +1,13 @@
+log_test = [
+ ['log_api', 'log_api.cpp'],
+ ['log_process', 'log_process.cpp'],
+]
+
+foreach t : log_test
+ exe = executable(t[0], t[1],
+ dependencies : libcamera_dep,
+ link_with : test_libraries,
+ include_directories : test_includes_internal)
+
+ test(t[0], exe, suite : 'log')
+endforeach