Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHenrik Gramner <gramner@twoorioles.com>2020-11-28 17:33:37 +0300
committerHenrik Gramner <henrik@gramner.com>2020-11-28 17:43:37 +0300
commit7a1c1fc3149df0fbd138be4bff76d29f0fdd59a6 (patch)
tree2084ffe09ee23209a654e569110b7f1b425ea5a9 /tests
parent2ca1bfc39fe5c182d885f2750779d5b1678d8ef9 (diff)
meson: Place checkasm and header tests in named suites
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build
index e26358f..c44d0ec 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -98,7 +98,7 @@ if is_asm_enabled
],
)
- test('checkasm', checkasm, is_parallel: false)
+ test('checkasm', checkasm, suite: 'checkasm', is_parallel: false)
endif
c99_extension_flag = cc.first_supported_argument(
@@ -119,7 +119,7 @@ foreach header : dav1d_api_headers
build_by_default: true
)
- test(target, header_test_exe)
+ test(target, header_test_exe, suite: 'headers')
endforeach