test/test_mixramp: move to test/tag/

This commit is contained in:
Max Kellermann 2021-12-01 15:32:14 +01:00
parent 933a1a41e6
commit 4d3320233e
3 changed files with 15 additions and 15 deletions

View File

@ -31,6 +31,7 @@ gtest_dep = declare_dependency(
subdir('util')
subdir('net')
subdir('time')
subdir('tag')
executable(
'read_conf',
@ -55,21 +56,6 @@ test(
protocol: 'gtest',
)
test(
'test_mixramp',
executable(
'test_mixramp',
'test_mixramp.cxx',
include_directories: inc,
dependencies: [
log_dep,
util_dep,
gtest_dep,
],
),
protocol: 'gtest',
)
test(
'test_protocol',
executable(

14
test/tag/meson.build Normal file
View File

@ -0,0 +1,14 @@
test(
'TestMixRamp',
executable(
'TestMixRamp',
'TestMixRampInterpolate.cxx',
include_directories: inc,
dependencies: [
log_dep,
util_dep,
gtest_dep,
],
),
protocol: 'gtest',
)