diff options
author | Paul Elder <paul.elder@ideasonboard.com> | 2019-05-27 17:50:47 -0400 |
---|---|---|
committer | Paul Elder <paul.elder@ideasonboard.com> | 2019-06-05 10:44:52 -0400 |
commit | 87a93e17f8f86e651f2021dba37ba749a43cc363 (patch) | |
tree | 4cdf2d6bca63205b523f2c1e29ae43aa01518acd /test/ipa/ipa_test.cpp | |
parent | dd5b899c5b599bcafc01dc8a53430d53b59b2db2 (diff) |
libcamera: test: remove test IPA and use dummy IPA instead
Use the dummy IPA for testing/sample IPA instead of the earlier test
IPA. Remove the test IPA, and update tests and meson accordingly.
Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'test/ipa/ipa_test.cpp')
-rw-r--r-- | test/ipa/ipa_test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ipa/ipa_test.cpp b/test/ipa/ipa_test.cpp index 63e4243e..bbef069f 100644 --- a/test/ipa/ipa_test.cpp +++ b/test/ipa/ipa_test.cpp @@ -56,12 +56,12 @@ protected: const struct IPAModuleInfo testInfo = { IPA_MODULE_API_VERSION, - 9001, - "bleep", - "It's over nine thousand!", + 0, + "PipelineHandlerVimc", + "Dummy IPA for Vimc", }; - count += runTest("test/ipa/ipa-dummy-cpp.so", testInfo); + count += runTest("src/ipa/ipa_dummy.so", testInfo); if (count < 0) return TestFail; |