summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/scanner/annotationparser/meson.build20
-rw-r--r--tests/scanner/meson.build2
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')