mirror of
https://github.com/openharmony/third_party_libfuse.git
synced 2026-08-26 20:47:37 -04:00
bd5ee7c317
Signed-off-by: fangzhiyi18 <fangzhiyi1@h-partners.com>
40 lines
1.6 KiB
Meson
40 lines
1.6 KiB
Meson
# Compile helper programs
|
|
td = []
|
|
foreach prog: [ 'test_write_cache', 'test_setattr', 'hello' ]
|
|
td += executable(prog, prog + '.c',
|
|
include_directories: include_dirs,
|
|
link_with: [ libfuse ],
|
|
dependencies: thread_dep,
|
|
install: false)
|
|
endforeach
|
|
td += executable('test_syscalls', 'test_syscalls.c',
|
|
include_directories: include_dirs,
|
|
install: false)
|
|
td += executable('readdir_inode', 'readdir_inode.c',
|
|
include_directories: include_dirs,
|
|
install: false)
|
|
td += executable('release_unlink_race', 'release_unlink_race.c',
|
|
dependencies: [ libfuse_dep ],
|
|
install: false)
|
|
td += executable('test_want_conversion', 'test_want_conversion.c',
|
|
dependencies: [ libfuse_dep ],
|
|
install: false)
|
|
|
|
test_scripts = [ 'conftest.py', 'pytest.ini', 'test_examples.py',
|
|
'util.py', 'test_ctests.py', 'test_custom_io.py' ]
|
|
td += custom_target('test_scripts', input: test_scripts,
|
|
output: test_scripts, build_by_default: true,
|
|
command: ['cp', '-fPp',
|
|
'@INPUT@', meson.current_build_dir() ])
|
|
|
|
# Provide something helpful when running 'ninja test'
|
|
|
|
if meson.is_subproject()
|
|
test('libfuse is a subproject, skipping tests', executable('wrong_command',
|
|
'wrong_command.c', install: false,
|
|
c_args: [ '-DMESON_IS_SUBPROJECT' ]))
|
|
else
|
|
test('wrong_command', executable('wrong_command', 'wrong_command.c',
|
|
install: false))
|
|
endif
|