summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/.clang-tidy1
-rw-r--r--test/meson.build23
2 files changed, 24 insertions, 0 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy
index 6f36a17..53e7864 100644
--- a/test/.clang-tidy
+++ b/test/.clang-tidy
@@ -3,6 +3,7 @@ Checks: >
-*-magic-numbers,
-*-uppercase-literal-suffix,
-altera-*,
+ -bugprone-macro-parentheses,
-bugprone-suspicious-string-compare,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
-hicpp-signed-bitwise,
diff --git a/test/meson.build b/test/meson.build
new file mode 100644
index 0000000..3cecff6
--- /dev/null
+++ b/test/meson.build
@@ -0,0 +1,23 @@
+autoship = find_program('autoship', required: false)
+
+unit_tests = [
+ 'sratom',
+]
+
+foreach unit : unit_tests
+ test(
+ unit,
+ executable(
+ 'test_@0@'.format(unit),
+ files('test_@0@.c'.format(unit)),
+ c_args: c_suppressions,
+ dependencies: [sratom_dep, serd_dep, sord_dep],
+ include_directories: include_directories('../src'),
+ ),
+ suite: 'unit',
+ )
+endforeach
+
+if autoship.found()
+ test('autoship', autoship, args: ['test', sratom_src_root], suite: 'data')
+endif