Commit 3f2bc325 authored by Max Kellermann's avatar Max Kellermann

test/meson.build: fix test() indent

parent 54686dfd
......@@ -41,7 +41,9 @@ executable(
],
)
test('TestRewindInputStream', executable(
test(
'TestRewindInputStream',
executable(
'TestRewindInputStream',
'TestRewindInputStream.cxx',
include_directories: inc,
......@@ -49,9 +51,12 @@ test('TestRewindInputStream', executable(
input_glue_dep,
gtest_dep,
],
))
),
)
test('test_mixramp', executable(
test(
'test_mixramp',
executable(
'test_mixramp',
'test_mixramp.cxx',
include_directories: inc,
......@@ -60,9 +65,12 @@ test('test_mixramp', executable(
util_dep,
gtest_dep,
],
))
),
)
test('test_protocol', executable(
test(
'test_protocol',
executable(
'test_protocol',
'test_protocol.cxx',
'../src/protocol/ArgParser.cxx',
......@@ -70,9 +78,12 @@ test('test_protocol', executable(
dependencies: [
gtest_dep,
],
))
),
)
test('test_queue_priority', executable(
test(
'test_queue_priority',
executable(
'test_queue_priority',
'test_queue_priority.cxx',
'../src/queue/Queue.cxx',
......@@ -81,9 +92,12 @@ test('test_queue_priority', executable(
util_dep,
gtest_dep,
],
))
),
)
test('TestFs', executable(
test(
'TestFs',
executable(
'TestFs',
'TestFs.cxx',
'TestLookupFile.cxx',
......@@ -92,9 +106,12 @@ test('TestFs', executable(
fs_dep,
gtest_dep,
],
))
),
)
test('TestIcu', executable(
test(
'TestIcu',
executable(
'TestIcu',
'TestIcu.cxx',
include_directories: inc,
......@@ -103,7 +120,8 @@ test('TestIcu', executable(
icu_dep,
gtest_dep,
],
))
),
)
if zeroconf_dep.found()
executable(
......@@ -264,7 +282,9 @@ if enable_database
],
)
test('test_translate_song', executable(
test(
'test_translate_song',
executable(
'test_translate_song',
'test_translate_song.cxx',
'../src/playlist/PlaylistSong.cxx',
......@@ -277,7 +297,8 @@ if enable_database
storage_glue_dep,
gtest_dep,
],
))
),
)
endif
#
......@@ -312,7 +333,9 @@ if curl_dep.found()
],
)
test('test_icy_parser', executable(
test(
'test_icy_parser',
executable(
'test_icy_parser',
'test_icy_parser.cxx',
include_directories: inc,
......@@ -321,7 +344,8 @@ if curl_dep.found()
tag_dep,
gtest_dep,
],
))
),
)
endif
#
......@@ -475,7 +499,9 @@ endif
# Filter
#
test('test_pcm', executable(
test(
'test_pcm',
executable(
'test_pcm',
'TestAudioFormat.cxx',
'test_pcm_dither.cxx',
......@@ -491,7 +517,8 @@ test('test_pcm', executable(
pcm_dep,
gtest_dep,
],
))
),
)
executable(
'run_filter',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment