Re: [RFC PATCH RESEND 41/42] tests/functional: Add split_available() helper
On 6/20/25 10:27, Philippe Mathieu-Daudé wrote: +return 'split' in list_accel(qemu_bin) \ + and tcg_available(qemu_bin) \ + and hvf_available(qemu_bin) Do you really need 3 checks? Kconfig gates on this already. r~
[RFC PATCH RESEND 41/42] tests/functional: Add split_available() helper
Signed-off-by: Philippe Mathieu-Daudé --- python/qemu/utils/__init__.py | 3 ++- python/qemu/utils/accel.py | 10 ++ tests/functional/qemu_test/testcase.py | 4 +++- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/python/qemu/utils/__init__.py b/pyth