1test_scripts = [ 'conftest.py', 'pytest.ini', 'test_sshfs.py',
2                 'util.py' ]
3custom_target('test_scripts', input: test_scripts,
4              output: test_scripts, build_by_default: true,
5              command: ['cp', '-fPp',
6                        '@INPUT@', meson.current_build_dir() ])
7
8# Provide something helpful when running 'ninja test'
9wrong_cmd = executable('wrong_command', 'wrong_command.c',
10                       install: false)
11test('wrong_cmd', wrong_cmd)
12