qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 08/15] meson: test for CONFIG_TCG in config_all


From: Paolo Bonzini
Subject: [PATCH 08/15] meson: test for CONFIG_TCG in config_all
Date: Sat, 2 Sep 2023 14:59:27 +0200

CONFIG_TCG is not included in *-config-devices.h, so the test is
always failing.

Fixes: 74884cb1a6d ("qtest/meson.build: check CONFIG_TCG for boot-serial-test 
in qtests_ppc", 2022-03-14)
Fixes: 44d827ea69e ("qtest/meson.build: check CONFIG_TCG for prom-env-test in 
qtests_ppc", 2022-03-14)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 tests/qtest/meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build
index df63909ee51..c0751ef7c35 100644
--- a/tests/qtest/meson.build
+++ b/tests/qtest/meson.build
@@ -155,8 +155,8 @@ qtests_ppc = \
   qtests_filter + \
   (config_all_devices.has_key('CONFIG_ISA_TESTDEV') ? ['endianness-test'] : 
[]) +            \
   (config_all_devices.has_key('CONFIG_M48T59') ? ['m48t59-test'] : []) +       
              \
-  (config_all_devices.has_key('CONFIG_TCG') ? ['prom-env-test'] : []) +        
              \
-  (config_all_devices.has_key('CONFIG_TCG') ? ['boot-serial-test'] : []) +     
              \
+  (config_all.has_key('CONFIG_TCG') ? ['prom-env-test'] : []) +                
              \
+  (config_all.has_key('CONFIG_TCG') ? ['boot-serial-test'] : []) +             
              \
   ['boot-order-test']
 
 qtests_ppc64 = \
-- 
2.41.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]