From patchwork Fri Oct 4 16:37:28 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 2096 Return-Path: Received: from relay12.mail.gandi.net (relay12.mail.gandi.net [217.70.178.232]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 0DD3A60BC6 for ; Fri, 4 Oct 2019 18:35:58 +0200 (CEST) Received: from uno.localdomain (2-224-242-101.ip172.fastwebnet.it [2.224.242.101]) (Authenticated sender: jacopo@jmondi.org) by relay12.mail.gandi.net (Postfix) with ESMTPSA id 9097F200002; Fri, 4 Oct 2019 16:35:57 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Fri, 4 Oct 2019 18:37:28 +0200 Message-Id: <20191004163734.15594-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 0/6] test: Add IPA interface test support X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Oct 2019 16:35:58 -0000 Hello, second iteration to take Laurent's comments in notable changes: - Add a src/ipa/ipa_vimc.h header to contain test support data - include the ipa header in ipa test - include Laurent's patch to use IPA manager in the test The series is based on Laurent's: "libcamera: ipa_manager: Sort IPA modules by name" Thanks j Jacopo Mondi (6): ipa: vimc: Rename ipa_dummy to ipa_vimc test: ipa: Rename the ipa_test to ipa_module_test ipa: ipa_manager: Print the loaded IPA modules path ipa: meson: Allow IPAs to include internal headers ipa: vimc: Add support for tracing operations test: ipa: Add test for the IPA Interface src/ipa/ipa_dummy.cpp | 46 ------ src/ipa/ipa_vimc.cpp | 112 +++++++++++++++ src/ipa/ipa_vimc.h | 21 +++ src/ipa/meson.build | 19 ++- src/libcamera/ipa_manager.cpp | 2 + test/ipa/ipa_interface_test.cpp | 136 ++++++++++++++++++ .../ipa/{ipa_test.cpp => ipa_module_test.cpp} | 4 +- test/ipa/meson.build | 10 +- 8 files changed, 294 insertions(+), 56 deletions(-) delete mode 100644 src/ipa/ipa_dummy.cpp create mode 100644 src/ipa/ipa_vimc.cpp create mode 100644 src/ipa/ipa_vimc.h create mode 100644 test/ipa/ipa_interface_test.cpp rename test/ipa/{ipa_test.cpp => ipa_module_test.cpp} (92%) --- 2.23.0