From 9eaf25f8c891663a09a6ad96fa1c9c7b25c57919 Mon Sep 17 00:00:00 2001 From: John Turner Date: Fri, 21 Nov 2025 23:21:15 +0000 Subject: [PATCH] change "test" meson option to "tests" --- meson.build | 2 +- meson.options | 2 +- 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