diff options
author | Tomasz Miąsko <tomasz.miasko@gmail.com> | 2018-12-09 00:00:00 +0000 |
---|---|---|
committer | Tomasz Miąsko <tomasz.miasko@gmail.com> | 2018-12-09 19:31:17 +0100 |
commit | a016945e801bbc12b7f84b5ce8e6a2ece4bfbb97 (patch) | |
tree | c434d945c7054053628b48930ddb2a8c89eb23fc /tests | |
parent | 0fdd6210e5559a1d20d832fe41051151959d8b6e (diff) | |
download | gobject-introspection-a016945e801bbc12b7f84b5ce8e6a2ece4bfbb97.tar.gz |
meson: Run annotationparser tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/scanner/annotationparser/meson.build | 20 | ||||
-rw-r--r-- | tests/scanner/meson.build | 2 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tests/scanner/annotationparser/meson.build b/tests/scanner/annotationparser/meson.build new file mode 100644 index 00000000..954dc28d --- /dev/null +++ b/tests/scanner/annotationparser/meson.build @@ -0,0 +1,20 @@ +annotationparser_test_env = environment() +annotationparser_test_env.append('PYTHONPATH', join_paths(meson.current_build_dir(), '../../../')) + +annotationparser_test_files = [ + 'test_patterns.py', +] + +# FIXME: MSVC +# from giscanner._giscanner import SourceScanner as CSourceScanner +# ImportError: DLL load failed: The specified module could not be found. +if cc.get_id() != 'msvc' + annotationparser_test_files += [ + 'test_parser.py', + ] +endif + +foreach f : annotationparser_test_files + test(f, python, args: files(f), env: annotationparser_test_env) +endforeach + diff --git a/tests/scanner/meson.build b/tests/scanner/meson.build index ea7e9e5f..525e5f09 100644 --- a/tests/scanner/meson.build +++ b/tests/scanner/meson.build @@ -19,3 +19,5 @@ endif foreach f : scanner_test_files test(f, python, args: files(f), env: scanner_test_env) endforeach + +subdir('annotationparser') |