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

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

scanner_test_files = [
  'test_shlibs.py',
]

# FIXME: MSVC
if cc.get_id() != 'msvc'
  scanner_test_files += [
    'test_sourcescanner.py',
    'test_transformer.py',
    'test_xmlwriter.py',
    ]
endif

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