From 2ee8faf3c89e8f5f3f7d9693d3ed8cd892bcb5ec Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Wed, 5 Oct 2022 21:16:13 +0300 Subject: 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 Reviewed-by: Jacopo Mondi Reviewed-by: Umang Jain --- test/stream/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/stream') diff --git a/test/stream/meson.build b/test/stream/meson.build index 89f51c18..3a97868b 100644 --- a/test/stream/meson.build +++ b/test/stream/meson.build @@ -5,10 +5,10 @@ stream_tests = [ ['stream_formats', 'stream_formats.cpp'], ] -foreach t : stream_tests - exe = executable(t[0], t[1], +foreach test : stream_tests + exe = executable(test[0], test[1], dependencies : libcamera_public, link_with : test_libraries, include_directories : test_includes_internal) - test(t[0], exe, suite: 'stream') + test(test[0], exe, suite: 'stream') endforeach -- cgit v1.2.1