test/TestFs: move to test/fs/

This commit is contained in:
Max Kellermann 2022-07-14 17:55:58 +02:00
parent 2670bbdcc8
commit 0514f25c61
4 changed files with 16 additions and 15 deletions

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

@ -0,0 +1,14 @@
test(
'TestFs',
executable(
'TestFs',
'TestFs.cxx',
'TestLookupFile.cxx',
include_directories: inc,
dependencies: [
fs_dep,
gtest_dep,
],
),
protocol: 'gtest',
)

View File

@ -85,21 +85,6 @@ test(
protocol: 'gtest',
)
test(
'TestFs',
executable(
'TestFs',
'TestFs.cxx',
'TestLookupFile.cxx',
include_directories: inc,
dependencies: [
fs_dep,
gtest_dep,
],
),
protocol: 'gtest',
)
test(
'TestIcu',
executable(
@ -644,3 +629,5 @@ if alsa_dep.found()
],
)
endif
subdir('fs')