summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-09-23 00:31:54 -0400
committerDavid Robillard <d@drobilla.net>2023-09-23 00:31:54 -0400
commit85ad807498ad2a9d9e83a06e86feae7c56948b9f (patch)
treede689b40dd6d58c5de1329dd2cf9be92e8506e0d /tests
parentfc821168065f1c304f54b0b84bd4d8e93388ea69 (diff)
downloadingen-85ad807498ad2a9d9e83a06e86feae7c56948b9f.tar.gz
ingen-85ad807498ad2a9d9e83a06e86feae7c56948b9f.tar.bz2
ingen-85ad807498ad2a9d9e83a06e86feae7c56948b9f.zip
Clean up meson definitions
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build29
1 files changed, 5 insertions, 24 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 50b78624..2c7f799f 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,26 +1,6 @@
# Copyright 2019-2022 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR GPL-3.0-or-later
-##############
-# Unit Tests #
-##############
-
-unit_tests = [
-]
-
-foreach test : unit_tests
- test(
- test,
- executable(
- test,
- files('tst_@0@.cpp'.format(test)),
- cpp_args: cpp_suppressions + platform_defines,
- dependencies: [ingen_dep],
- ),
- suite: 'unit',
- )
-endforeach
-
#####################
# Integration Tests #
#####################
@@ -93,10 +73,11 @@ test_env = environment(
default_value: lv2dir,
internal: 'plugindir',
pkgconfig: 'plugindir',
- )
+ ),
],
),
- })
+ },
+)
foreach test : integration_tests
test(
@@ -104,8 +85,8 @@ foreach test : integration_tests
ingen_test,
env: test_env,
args: [
- '--load', empty_manifest,
- '--execute', files(test + '.ttl'),
+ ['--load', empty_manifest],
+ ['--execute', files(test + '.ttl')],
],
)
endforeach