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:
@@ -5,11 +5,11 @@ log_test = [
|
||||
['log_process', 'log_process.cpp'],
|
||||
]
|
||||
|
||||
foreach t : log_test
|
||||
exe = executable(t[0], t[1],
|
||||
foreach test : log_test
|
||||
exe = executable(test[0], test[1],
|
||||
dependencies : libcamera_private,
|
||||
link_with : test_libraries,
|
||||
include_directories : test_includes_internal)
|
||||
|
||||
test(t[0], exe, suite : 'log')
|
||||
test(test[0], exe, suite : 'log')
|
||||
endforeach
|
||||
|
||||
Reference in New Issue
Block a user