From patchwork Fri Jul 12 20:16:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 1678 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9CD936161E for ; Fri, 12 Jul 2019 22:16:35 +0200 (CEST) Received: from neptunite.amanokami.net (softbank126209254147.bbtec.net [126.209.254.147]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 2B6CF2B2; Fri, 12 Jul 2019 22:16:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1562962595; bh=OQIEQRCcPGx9pAHX9Q/6uDOX/HZxrGeWgWmcxPpp6M8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JWZmjgF6WN//m0Mi86+/rwwFFV2Y6aZnhJakdIrzUnop0kkC49ADCKeRSqffW/hZW h9jwF0g/rlGnZeO9XJYCZAroPF7MZ2W+JEXApnxf6SjA7CTKbkn34i3FolZfjvGsch TWgoHtVH7NfIoUbSpALLd0/SUy83kA/cHlF+qUcc= From: Paul Elder To: libcamera-devel@lists.libcamera.org Date: Sat, 13 Jul 2019 05:16:20 +0900 Message-Id: <20190712201620.30457-4-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190712201620.30457-1-paul.elder@ideasonboard.com> References: <20190712201620.30457-1-paul.elder@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 4/4] test: logging: move logging tests to a subdirectory X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 20:16:35 -0000 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.cpp => log/log_api.cpp} | 0 test/{ => log}/log_process.cpp | 0 test/log/meson.build | 13 +++++++++++++ test/meson.build | 3 +-- 4 files changed, 14 insertions(+), 2 deletions(-) rename test/{log.cpp => log/log_api.cpp} (100%) rename test/{ => log}/log_process.cpp (100%) create mode 100644 test/log/meson.build diff --git a/test/log.cpp b/test/log/log_api.cpp similarity index 100% rename from test/log.cpp rename to test/log/log_api.cpp diff --git a/test/log_process.cpp b/test/log/log_process.cpp similarity index 100% rename from test/log_process.cpp rename to test/log/log_process.cpp diff --git a/test/log/meson.build b/test/log/meson.build new file mode 100644 index 0000000..95f6c1a --- /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 diff --git a/test/meson.build b/test/meson.build index 658f283..b2f809e 100644 --- a/test/meson.build +++ b/test/meson.build @@ -4,6 +4,7 @@ subdir('camera') subdir('controls') subdir('ipa') subdir('ipc') +subdir('log') subdir('media_device') subdir('pipeline') subdir('process') @@ -22,8 +23,6 @@ public_tests = [ internal_tests = [ ['camera-sensor', 'camera-sensor.cpp'], - ['log', 'log.cpp'], - ['log_process', 'log_process.cpp'], ['message', 'message.cpp'], ['signal-threads', 'signal-threads.cpp'], ['threads', 'threads.cpp'],