From 4ccb9816737945159289527322e759d92bf7a4d6 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 11 Dec 2017 16:13:31 -0800 Subject: meson: Use consistent style for tests Don't use intermediate variables, use consistent whitespace. Acked-by: Eric Engestrom Signed-off-by: Dylan Baker --- src/mapi/glapi/meson.build | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/mapi/glapi') diff --git a/src/mapi/glapi/meson.build b/src/mapi/glapi/meson.build index 8856a95fb66..267cfe7e7be 100644 --- a/src/mapi/glapi/meson.build +++ b/src/mapi/glapi/meson.build @@ -78,12 +78,13 @@ libglapi_static = static_library( ) if not with_shared_glapi and with_tests - glapi_static_check_table = executable( + test( 'glapi_static_check_table', - 'tests/check_table.cpp', - link_with : [libglapi_static], - dependencies : [idep_gtest], + executable( + 'glapi_static_check_table', + 'tests/check_table.cpp', + link_with : [libglapi_static], + dependencies : [idep_gtest], + ) ) - - test('glapi_static_check_table', glapi_static_check_table) endif -- cgit v1.2.3