From e0fcc10522e9629260e6d58008170ca432b16396 Mon Sep 17 00:00:00 2001 From: Julien Olivain Date: Sat, 10 Aug 2024 12:56:06 +0200 Subject: [PATCH] support/testing: package: mariadb: fix test configuration The mysql virtual package was removed in commit 8708f3a23a "package/mysql: drop virtual package". The mariadb runtime test was authored before this mysql virtual package removal, but was merged after it, in commit 5356754d1e "support/testing: add mariadb runtime test". Due to this, this test always failed with the error: Makefile.legacy:9: *** "You have legacy configuration in your .config! Please check your configuration.". Stop. This commit fixes the issue by removing the legacy BR2_PACKAGE_MYSQL=y configuration directive. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/7540345406 Signed-off-by: Julien Olivain Signed-off-by: Peter Korsgaard (cherry picked from commit 3da3361a1b9cafb274dac776693720fe20f6681b) Signed-off-by: Peter Korsgaard --- support/testing/tests/package/test_mariadb.py | 1 - 1 file changed, 1 deletion(-) diff --git a/support/testing/tests/package/test_mariadb.py b/support/testing/tests/package/test_mariadb.py index 523f075db1..d40ffdba96 100644 --- a/support/testing/tests/package/test_mariadb.py +++ b/support/testing/tests/package/test_mariadb.py @@ -19,7 +19,6 @@ class TestMariaDB(infra.basetest.BRTest): BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.1.78" BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/aarch64-virt/linux.config" - BR2_PACKAGE_MYSQL=y BR2_PACKAGE_MARIADB=y BR2_PACKAGE_MARIADB_SERVER=y BR2_TARGET_ROOTFS_EXT2=y