diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-04-27 04:09:42 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-04-28 01:54:29 +0300 |
commit | 6e1cd1394e5d73dfd4c4334cbf8beee79072de21 (patch) | |
tree | afb711809804c8c0cde434ca0655f98b04ad1a19 /test | |
parent | 256d0a4098aa4c4e9f87db46cecbd66f693dd9bf (diff) |
ipa: Name IPA modules after their source directory
The IPAModuleInfo::name field is currently a free-formed string that has
little use. Tighten its usage rules to make it suitable for building
file system paths to IPA-specific resources by matching the directory
name of the IPA module.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/ipa/ipa_module_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ipa/ipa_module_test.cpp b/test/ipa/ipa_module_test.cpp index d22c302f..e3aee190 100644 --- a/test/ipa/ipa_module_test.cpp +++ b/test/ipa/ipa_module_test.cpp @@ -58,7 +58,7 @@ protected: IPA_MODULE_API_VERSION, 0, "PipelineHandlerVimc", - "Dummy IPA for Vimc", + "vimc", }; count += runTest("src/ipa/vimc/ipa_vimc.so", testInfo); |