meson: reformat with meson formatter
Apply the `meson format` results.
Change-Id: I116103d8e0994e09ecb6381f5bb7d564608826b2
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/tools/test/meson.build b/tools/test/meson.build
index 99aab7a..12f1aff 100644
--- a/tools/test/meson.build
+++ b/tools/test/meson.build
@@ -1,20 +1,23 @@
tool_tests = [
- 'tools_bt',
- 'tools_lpc',
- 'tools_pci',
- 'tools_net',
- 'tools_updater',
- 'tools_helper',
- 'io',
+ 'tools_bt',
+ 'tools_lpc',
+ 'tools_pci',
+ 'tools_net',
+ 'tools_updater',
+ 'tools_helper',
+ 'io',
]
foreach t : tool_tests
- test(
- t,
- executable(
- t.underscorify(), t + '_unittest.cpp',
- build_by_default: false,
- implicit_include_directories: false,
- include_directories: [root_inc, tools_inc],
- dependencies: [updater_dep, gtest, gmock]))
+ test(
+ t,
+ executable(
+ t.underscorify(),
+ t + '_unittest.cpp',
+ build_by_default: false,
+ implicit_include_directories: false,
+ include_directories: [root_inc, tools_inc],
+ dependencies: [updater_dep, gtest, gmock],
+ ),
+ )
endforeach