change "test" meson option to "tests"

This commit is contained in:
John Turner
2025-11-21 23:21:15 +00:00
parent fb69d82e6f
commit 9eaf25f8c8
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ gentoo_utils = static_library(
link_with: [thiserror], link_with: [thiserror],
) )
if get_option('test').enabled() if get_option('tests').enabled()
rust.test('unittests', gentoo_utils) rust.test('unittests', gentoo_utils)
endif endif

View File

@@ -1,2 +1,2 @@
option('fuzz', type: 'feature', value: 'disabled') option('fuzz', type: 'feature', value: 'disabled')
option('test', type: 'feature', value: 'disabled') option('tests', type: 'feature', value: 'disabled')