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>
This commit is contained in:
parent
c09ca91ae5
commit
2ee8faf3c8
15 changed files with 57 additions and 57 deletions
|
@ -7,10 +7,10 @@ serialization_tests = [
|
|||
['ipa_data_serializer_test', 'ipa_data_serializer_test.cpp'],
|
||||
]
|
||||
|
||||
foreach t : serialization_tests
|
||||
exe = executable(t[0], [t[1], 'serialization_test.cpp'],
|
||||
foreach test : serialization_tests
|
||||
exe = executable(test[0], [test[1], 'serialization_test.cpp'],
|
||||
dependencies : libcamera_private,
|
||||
link_with : test_libraries,
|
||||
include_directories : test_includes_internal)
|
||||
test(t[0], exe, suite : 'serialization', is_parallel : false)
|
||||
test(test[0], exe, suite : 'serialization', is_parallel : false)
|
||||
endforeach
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue