From patchwork Mon Oct 7 08:58:37 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 2122 Return-Path: Received: from relay10.mail.gandi.net (relay10.mail.gandi.net [217.70.178.230]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 0F1A861565 for ; Mon, 7 Oct 2019 10:57:02 +0200 (CEST) Received: from uno.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101]) (Authenticated sender: jacopo@jmondi.org) by relay10.mail.gandi.net (Postfix) with ESMTPSA id B69D2240012 for ; Mon, 7 Oct 2019 08:57:01 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Mon, 7 Oct 2019 10:58:37 +0200 Message-Id: <20191007085842.7608-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v4 0/5] 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: Mon, 07 Oct 2019 08:57:02 -0000 With the small changes in patches 4 and 5: - Define the FIFO path as a macro in 4/5 - Adjust path printout in error paths in 5/5 I would push this version. Jacopo Mondi (5): ipa: vimc: Rename ipa_dummy to ipa_vimc test: ipa: Rename the ipa_test to ipa_module_test ipa: meson: Give IPAs access to internal libcamera APIs ipa: vimc: Add support for tracing operations test: ipa: Add test for the IPA Interface include/ipa/ipa_vimc.h | 22 +++ src/ipa/ipa_dummy.cpp | 46 ------ src/ipa/ipa_vimc.cpp | 112 ++++++++++++++ src/ipa/meson.build | 18 ++- test/ipa/ipa_interface_test.cpp | 142 ++++++++++++++++++ .../ipa/{ipa_test.cpp => ipa_module_test.cpp} | 4 +- test/ipa/meson.build | 3 +- 7 files changed, 292 insertions(+), 55 deletions(-) create mode 100644 include/ipa/ipa_vimc.h delete mode 100644 src/ipa/ipa_dummy.cpp create mode 100644 src/ipa/ipa_vimc.cpp create mode 100644 test/ipa/ipa_interface_test.cpp rename test/ipa/{ipa_test.cpp => ipa_module_test.cpp} (92%) Tested-by: Laurent Pinchart --- 2.23.0