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/pipeline/ipu3/meson.build | 6 +++--- test/pipeline/rkisp1/meson.build | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'test/pipeline') diff --git a/test/pipeline/ipu3/meson.build b/test/pipeline/ipu3/meson.build index 16701080..5fcf5730 100644 --- a/test/pipeline/ipu3/meson.build +++ b/test/pipeline/ipu3/meson.build @@ -4,11 +4,11 @@ ipu3_test = [ ['ipu3_pipeline_test', 'ipu3_pipeline_test.cpp'], ] -foreach t : ipu3_test - exe = executable(t[0], t[1], +foreach test : ipu3_test + exe = executable(test[0], test[1], dependencies : libcamera_private, link_with : test_libraries, include_directories : test_includes_internal) - test(t[0], exe, suite : 'ipu3', is_parallel : false) + test(test[0], exe, suite : 'ipu3', is_parallel : false) endforeach diff --git a/test/pipeline/rkisp1/meson.build b/test/pipeline/rkisp1/meson.build index 364b5711..c82cc789 100644 --- a/test/pipeline/rkisp1/meson.build +++ b/test/pipeline/rkisp1/meson.build @@ -4,11 +4,11 @@ rkisp1_test = [ ['rkisp1_pipeline_test', 'rkisp1_pipeline_test.cpp'], ] -foreach t : rkisp1_test - exe = executable(t[0], t[1], +foreach test : rkisp1_test + exe = executable(test[0], test[1], dependencies : libcamera_private, link_with : test_libraries, include_directories : test_includes_internal) - test(t[0], exe, suite : 'rkisp1', is_parallel : false) + test(test[0], exe, suite : 'rkisp1', is_parallel : false) endforeach -- cgit v1.2.1