meson: enable tests by default
The current meson_options.txt has tests disabled, which is not desired.
The Yocto recipe in openbmc/openbmc already has tests disabled when
building under Yocto. We want tests enabled by default so that a
typical developer will see the failures their changes might have
induced.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I6a283862ac8afc43fc0fdf37829310c8ca682eff
diff --git a/meson_options.txt b/meson_options.txt
index 9655044..9205b1b 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,4 +1,4 @@
-option('tests', type: 'feature', value: 'disabled', description: 'Build tests')
+option('tests', type: 'feature', value: 'enabled', description: 'Build tests')
option('oe-sdk', type: 'feature', value: 'disabled', description: 'Enable OE SDK')
option('strict-failsafe-pwm', type: 'boolean', value: false, description: 'Set the fans strictly at the failsafe PWM when in failsafe mode')
option('systemd_target', type: 'string', value: 'multi-user.target', description: 'Target for starting this service')