summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2019-04-07 17:57:40 +0200
committerTom Rini <trini@konsulko.com>2019-04-24 07:27:28 -0400
commit0efe2b8f9ee2f459a2161e19ae1e66918c9f5c3b (patch)
treed23715f372fd8aa8786e98986e87fee9c7ff7399 /test
parent25c07c72fd817b084c128f84ea0862668ceb2127 (diff)
test: env: Enable env unit tests by default
If CONFIG_UNIT_TEST is enabled we should enable the individual tests by default to ensure good test coverage. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'test')
-rw-r--r--test/env/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/env/Kconfig b/test/env/Kconfig
index ff164132e9..6cb82337b3 100644
--- a/test/env/Kconfig
+++ b/test/env/Kconfig
@@ -1,6 +1,7 @@
config UT_ENV
bool "Enable env unit tests"
depends on UNIT_TEST
+ default y
help
This enables the 'ut env' command which runs a series of unit
tests on the env code.