From patchwork Sun Oct 6 20:08:47 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 2116 Return-Path: Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 83D0A60E1E for ; Sun, 6 Oct 2019 22:07:12 +0200 (CEST) X-Originating-IP: 2.224.242.101 Received: from uno.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101]) (Authenticated sender: jacopo@jmondi.org) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 48A9CC0003 for ; Sun, 6 Oct 2019 20:07:12 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Sun, 6 Oct 2019 22:08:47 +0200 Message-Id: <20191006200852.11775-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 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: Sun, 06 Oct 2019 20:07:12 -0000 Included Laurent's comment on v2. Most notably, moved the ipa_vimc.h header to include/ipa/ Jacopo Mondi (5): ipa: vimc: Rename ipa_dummy to ipa_vimc test: ipa: Rename the ipa_test to ipa_module_test ipa: meson: Allow IPAs to include internal headers ipa: vimc: Add support for tracing operations test: ipa: Add test for the IPA Interface include/ipa/ipa_vimc.h | 21 +++ src/ipa/ipa_dummy.cpp | 46 ------ src/ipa/ipa_vimc.cpp | 112 ++++++++++++++ src/ipa/meson.build | 18 ++- test/ipa/ipa_interface_test.cpp | 138 ++++++++++++++++++ .../ipa/{ipa_test.cpp => ipa_module_test.cpp} | 4 +- test/ipa/meson.build | 3 +- 7 files changed, 287 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%) --- 2.23.0