From 2495f24bd755e541434cbc6ec7d9b4f4b281d49e Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Wed, 15 Nov 2023 10:15:58 +0530 Subject: [PATCH] tests/lib: Enforce ux_locales-test with CONFIG_VBOOT The ux_locales-test relies on the ability to determine supported locales for the platform. However, this information is unavailable without VBOOT config being enabled. Therefore, enforce this test for platforms with VBOOT config alone to avoid unnecessary failures. Change-Id: I2828eb062e2b601e073e7dab9aef7316fc6ba2cd Signed-off-by: Subrata Banik Reviewed-on: https://review.coreboot.org/c/coreboot/+/79056 Tested-by: build bot (Jenkins) Reviewed-by: Hsuan-ting Chen Reviewed-by: Julius Werner --- tests/lib/Makefile.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lib/Makefile.inc b/tests/lib/Makefile.inc index 3b8e93c9c2..0cab1ba266 100644 --- a/tests/lib/Makefile.inc +++ b/tests/lib/Makefile.inc @@ -250,3 +250,4 @@ ux_locales-test-mocks += _cbfs_alloc \ cbfs_unmap \ vb2api_get_locale_id \ vboot_get_context +ux_locales-test-config += CONFIG_VBOOT=1