summaryrefslogtreecommitdiff
path: root/tests/scanner/meson.build
blob: e64345a072f581260468335915366bd1f0b52243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

scanner_test_env = environment()
scanner_test_env.append('PYTHONPATH', join_paths(meson.current_build_dir(), '../../'))

scanner_test_files = [
  'test_shlibs.py',
  'test_sourcescanner.py',
]

# FIXME: Windows
if host_system != 'windows'
  scanner_test_files += ['test_transformer.py']
endif

foreach f : scanner_test_files 
  test(f, python, args: files(f), env: scanner_test_env)
endforeach