commit | bf0552834205b54960a4f8f952a51efc5b2b884f | [log] [tgz] |
---|---|---|
author | George Liu <liuxiwei@inspur.com> | Thu Aug 03 14:51:31 2023 +0800 |
committer | George Liu <liuxiwei@inspur.com> | Mon Aug 07 11:01:17 2023 +0800 |
tree | 580f799e2ab0ad45affbf938ef703a9a526c18ad | |
parent | 1c0e4ea0925ec558c2f8b5e6eaa13d429ff65f7d [diff] [blame] |
meson: Enable tests by default The test subdirectory should no longer be compiled when `tests` disabled, So tests should be explicitly enabled by default. Also `tests` has been disabled in meta-phosphor[1]. [1] https://gerrit.openbmc.org/c/openbmc/openbmc/+/43812 Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: I80352925719d3be137f99457ff38a948413f9c17
diff --git a/meson_options.txt b/meson_options.txt index b7869f4..dda6d81 100644 --- a/meson_options.txt +++ b/meson_options.txt
@@ -1,3 +1,5 @@ option( - 'tests', type: 'feature', description: 'Build tests.', + 'tests', type: 'feature', + value: 'enabled', + description: 'Build tests.' )