[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 03/14] configure: run plugin TCG tests again
From: |
Alex Bennée |
Subject: |
[PATCH v2 03/14] configure: run plugin TCG tests again |
Date: |
Wed, 7 Feb 2024 16:38:01 +0000 |
From: Paolo Bonzini <pbonzini@redhat.com>
Commit 39fb3cfc28b ("configure: clean up plugin option handling", 2023-10-18)
dropped the CONFIG_PLUGIN line from tests/tcg/config-host.mak, due to confusion
caused by the shadowing of $config_host_mak. However, TCG tests were still
expecting it. Oops.
Put it back, in the meanwhile the shadowing is gone so it's clear that it goes
in the tests/tcg configuration.
Cc: <alex.bennee@linaro.org>
Fixes: 39fb3cfc28b ("configure: clean up plugin option handling", 2023-10-18)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20240124115332.612162-1-pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
configure | 3 +++
1 file changed, 3 insertions(+)
diff --git a/configure b/configure
index 3d8e24ae011..ff058d6c486 100755
--- a/configure
+++ b/configure
@@ -1644,6 +1644,9 @@ fi
mkdir -p tests/tcg
echo "# Automatically generated by configure - do not modify" >
tests/tcg/$config_host_mak
echo "SRC_PATH=$source_path" >> tests/tcg/$config_host_mak
+if test "$plugins" = "yes" ; then
+ echo "CONFIG_PLUGIN=y" >> tests/tcg/$config_host_mak
+fi
tcg_tests_targets=
for target in $target_list; do
--
2.39.2
- [PATCH v2 00/14] maintainer updates for 9.0 pre-PR (docker, plugin tests, deprecation, elf, semihosting, gdbstub), Alex Bennée, 2024/02/07
- [PATCH v2 01/14] tests/docker: Add sqlite3 module to openSUSE Leap container, Alex Bennée, 2024/02/07
- [PATCH v2 02/14] docs: mark CRIS support as deprecated, Alex Bennée, 2024/02/07
- [PATCH v2 04/14] Revert "hw/elf_ops: Ignore loadable segments with zero size", Alex Bennée, 2024/02/07
- [PATCH v2 03/14] configure: run plugin TCG tests again,
Alex Bennée <=
- [PATCH v2 05/14] tests/vm: Set UseDNS=no in the sshd configuration, Alex Bennée, 2024/02/07
- [PATCH v2 08/14] meson: Link with libinotify on FreeBSD, Alex Bennée, 2024/02/07
- [PATCH v2 07/14] test-util-filemonitor: Adapt to the FreeBSD inotify rename semantics, Alex Bennée, 2024/02/07
- [PATCH v2 09/14] kconfig: use "select" to enable semihosting, Alex Bennée, 2024/02/07
- [PATCH v2 06/14] tests/vm/freebsd: Reload the sshd configuration, Alex Bennée, 2024/02/07
- [PATCH v2 10/14] gdbstub: Expose TARGET_SIGTRAP in a target-agnostic way, Alex Bennée, 2024/02/07