summaryrefslogtreecommitdiff
path: root/test/ipa
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-10-05 21:16:13 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-10-07 17:05:33 +0300
commit2ee8faf3c89e8f5f3f7d9693d3ed8cd892bcb5ec (patch)
tree0d2ff3320e3dbbd39b9f62a4337cccb06f91351c /test/ipa
parentc09ca91ae51252a77873fb2947928c0e35063c59 (diff)
test: Rename 't' to 'test' in meson.build
The 't' name is very short and not very explicit. Rename it to 'test' instead. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Diffstat (limited to 'test/ipa')
-rw-r--r--test/ipa/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ipa/meson.build b/test/ipa/meson.build
index 7938633e..295807fd 100644
--- a/test/ipa/meson.build
+++ b/test/ipa/meson.build
@@ -5,11 +5,11 @@ ipa_test = [
['ipa_interface_test', 'ipa_interface_test.cpp'],
]
-foreach t : ipa_test
- exe = executable(t[0], [t[1], libcamera_generated_ipa_headers],
+foreach test : ipa_test
+ exe = executable(test[0], [test[1], libcamera_generated_ipa_headers],
dependencies : libcamera_private,
link_with : [libipa, test_libraries],
include_directories : [libipa_includes, test_includes_internal])
- test(t[0], exe, suite : 'ipa')
+ test(test[0], exe, suite : 'ipa')
endforeach