diff options
author | David Robillard <d@drobilla.net> | 2022-08-18 13:18:52 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-18 14:33:37 -0400 |
commit | f65912600fc301cbdbb613f1df0dc29820f1da35 (patch) | |
tree | 43db69627433fbb8f5acd13c6cf0ef8a3c3b829d /meson.build | |
parent | c4b8ca3dc222b06c40ebcb416d653e17e88de858 (diff) | |
download | zix-f65912600fc301cbdbb613f1df0dc29820f1da35.tar.gz zix-f65912600fc301cbdbb613f1df0dc29820f1da35.tar.bz2 zix-f65912600fc301cbdbb613f1df0dc29820f1da35.zip |
Use conventional test executable names
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/meson.build b/meson.build index 7d2ab27..45f8b88 100644 --- a/meson.build +++ b/meson.build @@ -172,18 +172,18 @@ install_headers(c_headers, subdir: versioned_name / 'zix') ######### sequential_tests = [ - 'allocator_test', - 'bitset_test', - 'btree_test', - 'digest_test', - 'hash_test', - 'strerror_test', - 'tree_test', + 'test_allocator', + 'test_bitset', + 'test_btree', + 'test_digest', + 'test_hash', + 'test_strerror', + 'test_tree', ] threaded_tests = [ - 'ring_test', - 'sem_test', + 'test_ring', + 'test_sem', ] if not get_option('tests').disabled() and not meson.is_subproject() |