From 36d62298b20bec1f052fac04fd3011511cc29226 Mon Sep 17 00:00:00 2001 From: Paul Elder Date: Sat, 13 Jul 2019 04:34:36 +0900 Subject: 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 Reviewed-by: Laurent Pinchart --- test/log/meson.build | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/log/meson.build (limited to 'test/log/meson.build') 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 -- cgit v1.2.1