diff mbox series

[1/1] test: move unit tests into a sub-menu

Message ID 20230403182743.13265-1-heinrich.schuchardt@canonical.com
State Accepted
Commit 005acb2a6d84912525a87b74beb9d50f000509e1
Delegated to: Tom Rini
Headers show
Series [1/1] test: move unit tests into a sub-menu | expand

Commit Message

Heinrich Schuchardt April 3, 2023, 6:27 p.m. UTC
The main configuration menu should not contain detail settings.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
---
 test/Kconfig | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

Comments

Simon Glass April 5, 2023, 6:37 p.m. UTC | #1
On Tue, 4 Apr 2023 at 06:28, Heinrich Schuchardt
<heinrich.schuchardt@canonical.com> wrote:
>
> The main configuration menu should not contain detail settings.
>
> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
> ---
>  test/Kconfig | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Tom Rini April 26, 2023, 12:30 p.m. UTC | #2
On Mon, Apr 03, 2023 at 08:27:43PM +0200, Heinrich Schuchardt wrote:

> The main configuration menu should not contain detail settings.
> 
> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/test/Kconfig b/test/Kconfig
index 465028265b..6e859fb7d0 100644
--- a/test/Kconfig
+++ b/test/Kconfig
@@ -3,7 +3,9 @@  config POST
 	help
 	  See doc/README.POST for more details
 
-menuconfig UNIT_TEST
+menu "Unit tests"
+
+config UNIT_TEST
 	bool "Unit tests"
 	help
 	  Select this to compile in unit tests for various parts of
@@ -107,3 +109,5 @@  source "test/env/Kconfig"
 source "test/lib/Kconfig"
 source "test/optee/Kconfig"
 source "test/overlay/Kconfig"
+
+endmenu