Hi Daniel, On Thu, Oct 17, 2024 at 12:33:37PM +0100, Daniel P. Berrangé wrote: > Date: Thu, 17 Oct 2024 12:33:37 +0100 > From: "Daniel P. Berrangé" <berra...@redhat.com> > Subject: [PATCH v2 25/31] tests: adapt to new import path for qobject data > type headers > > The qobject data type headers have moved from qapi/qmp/ to > qobject/. > > Signed-off-by: Daniel P. Berrangé <berra...@redhat.com> > --- > tests/qtest/adm1266-test.c | 4 ++-- > tests/qtest/adm1272-test.c | 4 ++-- > tests/qtest/ahci-test.c | 2 +- > tests/qtest/arm-cpu-features.c | 4 ++-- > tests/qtest/aspeed_gpio-test.c | 2 +- > tests/qtest/boot-order-test.c | 2 +- > tests/qtest/cdrom-test.c | 2 +- > tests/qtest/cpu-plug-test.c | 4 ++-- > tests/qtest/device-introspect-test.c | 6 +++--- > tests/qtest/device-plug-test.c | 4 ++-- > tests/qtest/drive_del-test.c | 4 ++-- > tests/qtest/emc141x-test.c | 2 +- > tests/qtest/fdc-test.c | 2 +- > tests/qtest/hd-geo-test.c | 2 +- > tests/qtest/ide-test.c | 2 +- > tests/qtest/isl_pmbus_vr-test.c | 4 ++-- > tests/qtest/libqmp.c | 4 ++-- > tests/qtest/libqmp.h | 2 +- > tests/qtest/libqos/generic-pcihost.c | 2 +- > tests/qtest/libqos/libqos.c | 2 +- > tests/qtest/libqos/pci-pc.c | 2 +- > tests/qtest/libqos/qos_external.c | 8 ++++---- > tests/qtest/libqtest.c | 10 +++++----- > tests/qtest/libqtest.h | 4 ++-- > tests/qtest/lsm303dlhc-mag-test.c | 2 +- > tests/qtest/machine-none-test.c | 2 +- > tests/qtest/max34451-test.c | 4 ++-- > tests/qtest/migration-helpers.c | 4 ++-- > tests/qtest/migration-test.c | 4 ++-- > tests/qtest/netdev-socket.c | 2 +- > tests/qtest/npcm7xx_adc-test.c | 2 +- > tests/qtest/npcm7xx_emc-test.c | 4 ++-- > tests/qtest/npcm7xx_pwm-test.c | 4 ++-- > tests/qtest/npcm7xx_watchdog_timer-test.c | 2 +- > tests/qtest/numa-test.c | 4 ++-- > tests/qtest/pvpanic-pci-test.c | 2 +- > tests/qtest/pvpanic-test.c | 3 ++- > tests/qtest/q35-test.c | 2 +- > tests/qtest/qmp-cmd-test.c | 2 +- > tests/qtest/qmp-test.c | 6 +++--- > tests/qtest/qom-test.c | 4 ++-- > tests/qtest/qos-test.c | 2 +- > tests/qtest/readconfig-test.c | 6 +++--- > tests/qtest/tco-test.c | 2 +- > tests/qtest/test-filter-mirror.c | 2 +- > tests/qtest/test-filter-redirector.c | 2 +- > tests/qtest/test-netfilter.c | 2 +- > tests/qtest/test-x86-cpuid-compat.c | 8 ++++---- > tests/qtest/tmp105-test.c | 2 +- > tests/qtest/tpm-emu.c | 4 ++-- > tests/qtest/tpm-util.c | 2 +- > tests/qtest/vhost-user-test.c | 2 +- > tests/qtest/virtio-net-failover.c | 6 +++--- > tests/qtest/virtio-net-test.c | 2 +- > tests/qtest/vmgenid-test.c | 2 +- > tests/qtest/wdt_ib700-test.c | 2 +- > tests/unit/check-block-qdict.c | 4 ++-- > tests/unit/check-qdict.c | 6 +++--- > tests/unit/check-qjson.c | 12 ++++++------ > tests/unit/check-qlist.c | 4 ++-- > tests/unit/check-qlit.c | 12 ++++++------ > tests/unit/check-qnull.c | 2 +- > tests/unit/check-qnum.c | 2 +- > tests/unit/check-qobject.c | 12 ++++++------ > tests/unit/check-qom-proplist.c | 4 ++-- > tests/unit/check-qstring.c | 2 +- > tests/unit/test-block-iothread.c | 2 +- > tests/unit/test-blockjob-txn.c | 2 +- > tests/unit/test-blockjob.c | 2 +- > tests/unit/test-char.c | 2 +- > tests/unit/test-forward-visitor.c | 4 ++-- > tests/unit/test-image-locking.c | 2 +- > tests/unit/test-keyval.c | 6 +++--- > tests/unit/test-qemu-opts.c | 4 ++-- > tests/unit/test-qga.c | 4 ++-- > tests/unit/test-qmp-cmds.c | 8 ++++---- > tests/unit/test-qmp-event.c | 10 +++++----- > tests/unit/test-qobject-input-visitor.c | 12 ++++++------ > tests/unit/test-qobject-output-visitor.c | 12 ++++++------ > tests/unit/test-replication.c | 2 +- > tests/unit/test-visitor-serialization.c | 4 ++-- > 81 files changed, 160 insertions(+), 159 deletions(-) > > diff --git a/tests/qtest/pvpanic-test.c b/tests/qtest/pvpanic-test.c > index d49d2ba931..c303f1fadb 100644 > --- a/tests/qtest/pvpanic-test.c > +++ b/tests/qtest/pvpanic-test.c > @@ -9,9 +9,10 @@ > > #include "qemu/osdep.h" > #include "libqtest.h" > -#include "qapi/qmp/qdict.h" > +#include "qobject/qdict.h" > #include "hw/misc/pvpanic.h" > > +
Extral blank line :). Reviewed-by: Zhao Liu <zhao1....@intel.com>