summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-11-21 23:21:15 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-11-21 23:21:15 +0000
commit9eaf25f8c891663a09a6ad96fa1c9c7b25c57919 (patch)
tree29b2af60d7519d667ad4a9dd83c2d60c30db1e2b
parentfb69d82e6f1dce4677114e717a5954bb9ab5c0e4 (diff)
downloadgentoo-utils-9eaf25f8c891663a09a6ad96fa1c9c7b25c57919.tar.gz
change "test" meson option to "tests"
-rw-r--r--meson.build2
-rw-r--r--meson.options2
2 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index d671ba5..7bc2184 100644
--- a/meson.build
+++ b/meson.build
@@ -20,7 +20,7 @@ gentoo_utils = static_library(
link_with: [thiserror],
)
-if get_option('test').enabled()
+if get_option('tests').enabled()
rust.test('unittests', gentoo_utils)
endif
diff --git a/meson.options b/meson.options
index 02fa153..cf0463a 100644
--- a/meson.options
+++ b/meson.options
@@ -1,2 +1,2 @@
option('fuzz', type: 'feature', value: 'disabled')
-option('test', type: 'feature', value: 'disabled') \ No newline at end of file
+option('tests', type: 'feature', value: 'disabled') \ No newline at end of file