qemu-devel
[Top][All Lists]
Advanced

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

Re: [PULL 13/25] hcd-ohci: Fix inconsistency when resetting ohci root hu


From: Laurent Vivier
Subject: Re: [PULL 13/25] hcd-ohci: Fix inconsistency when resetting ohci root hubs
Date: Wed, 15 Feb 2023 17:10:56 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.0

On 2/15/23 14:45, Qiang Liu wrote:
Hi,

        This commit breaks boot-serial-test on ppc64-softmmu.

           $ ./configure --enable-tcg-interpreter
        '--target-list=aarch64-softmmu alpha-softmmu arm-softmmu hppa-softmmu
        m68k-softmmu microblaze-softmmu ppc64-softmmu s390x-softmmu
        x86_64-softmmu'
           $ make && cd build && QTEST_QEMU_BINARY=./qemu-system-ppc64
        ./tests/qtest/boot-serial-test; cd -

        (Yes, the full --target-list is needed because boot-serial-test isn't
        built when only ppc64-softmmu is selected.)


I think we need something like this :

diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build
index e97616d327c0..8203f6a71ad0 100644
--- a/tests/qtest/meson.build
+++ b/tests/qtest/meson.build
@@ -149,8 +149,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_host.has_key('CONFIG_TCG') ? ['prom-env-test'] : []) +               
       \
+  (config_host.has_key('CONFIG_TCG') ? ['boot-serial-test'] : []) +            
       \
   ['boot-order-test']

 qtests_ppc64 = \

Thanks,
Laurent




reply via email to

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